/* ========================================
   BookDash - Complete E-commerce Solutions
   CSS Stylesheet - Exact DOM Values Extracted
   ======================================== */

/* CSS Custom Properties - Exact values from original */
:root {
    /* Colors - rgb(5, 150, 105) = #059669 (Emerald 600) */
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #D1FAE5;
    --primary-lighter: #ECFDF5;
    --primary-50: #F0FDF4;

    /* Text Colors */
    --text-dark: #0F172A;
    /* Slate 900 - rgb(15, 23, 42) */
    --text-body: #475569;
    /* Slate 600 - rgb(71, 85, 105) */
    --text-muted: #64748B;
    /* Slate 500 */
    --text-light: #94A3B8;
    /* Slate 400 */

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    /* Slate 50 - rgb(248, 250, 252) */
    --bg-lighter: #F1F5F9;
    /* Slate 100 - rgb(241, 245, 249) */

    /* Footer */
    --footer-bg: #0F172A;
    /* Slate 900 */
    --footer-hover: #1E293B;
    /* Slate 800 - rgb(30, 41, 59) */
    --footer-text: #94A3B8;
    /* Slate 400 */

    /* Borders */
    --border-color: #CBD5E1;
    /* Slate 300 - rgb(203, 213, 225) */
    --border-light: #F1F5F9;
    /* Slate 100 */
    --border-card: 2px solid #F1F5F9;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing - Exact from original */
    --container-width: 1280px;
    --container-padding: 32px;
    --section-padding-top: 128px;
    --section-padding-bottom: 80px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}



/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.text-primary {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.05);
}

.btn-outline {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn-lg {
    padding: 24px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    color: #000000;
}

.nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: black;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 8px 16px;
    font-size: 14px;
}

/* Mobile menu button – theme based */
.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-50);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--primary-light);
}

/* Bars */
.mobile-menu-btn .bar {
    width: 22px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
    padding-left: 32px;
    padding-right: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(236, 253, 245, 0.8) 70%, rgba(209, 250, 229, 0.6) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-lighter);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-cta .btn-primary {
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
}

.hero-cta .btn-outline {
    padding: 14px 26px;
    border-radius: 12px;
    border-color: var(--primary);
    color: var(--primary);
}

.hero-cta .btn-outline:hover {
    background: var(--primary-50);
}

.hero-steps {
    background: white;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.hero-steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    transition: all var(--transition-normal);
}

.step-item:hover {
    background: var(--primary-lighter);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-number.step-2 {
    background: #F59E0B;
}

.step-number.step-3 {
    background: #3B82F6;
}

.step-number.step-4 {
    background: #8B5CF6;
}

/* Individual step item backgrounds - SOLID pastels */
.step-item:nth-child(1) {
    background: #f0fdf4;
    border: 1px solid #D1FAE5;
}

.step-item:nth-child(2) {
    background: #fff7ed;
    border: 1px solid #FDE68A;
}

.step-item:nth-child(3) {
    background: #f0fdf4;
    border: 1px solid #BFDBFE;
}

.step-item:nth-child(4) {
    background: #fff7ed;
    border: 1px solid #DDD6FE;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: black;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.proof-number {
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.proof-text {
    font-size: 20px;
    font-weight: 500;
    color: white;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 24px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
}
/* Service icon colors – matching screenshot */
.service-card:nth-child(1) .service-icon {
    background: #DCFCE7;
    color: #16A34A;
}

.service-card:nth-child(2) .service-icon {
    background: #DBEAFE;
    color: #2563EB;
}

.service-card:nth-child(3) .service-icon {
    background: #FEF3C7;
    color: #EA580C;
}

.service-card:nth-child(4) .service-icon {
    background: #EDE9FE;
    color: #7C3AED;
}

.service-card:nth-child(5) .service-icon {
    background: #FCE7F3;
    color: #DB2777;
}

.service-card:nth-child(6) .service-icon {
    background: #D1FAE5;
    color: #059669;
}


/* How It Works Section */
.how-it-works {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: left;
    position: relative;
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}
/* Benefit icon colors – */
.benefit-card:nth-child(1) .benefit-icon {
    background: #DCFCE7;
    color: #16A34A;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: #DBEAFE;
    color: #2563EB;
}

.benefit-card:nth-child(3) .benefit-icon {
    background: #FEF3C7;
    color: #D97706;
}

.benefit-card:nth-child(4) .benefit-icon {
    background: #EDE9FE;
    color: #7C3AED;
}

.benefit-card:nth-child(5) .benefit-icon {
    background: #FCE7F3;
    color: #DB2777;
}

.benefit-card:nth-child(6) .benefit-icon {
    background: #D1FAE5;
    color: #059669;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
}

/* CTA SECTION */
.cta-section {
    padding: 120px 20px;
    background: #ECFDF5;
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 72px 64px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 28px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(5, 150, 105, 0.35);
    overflow: hidden;
}

/* Decorative blur shapes */
.cta-blur {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.cta-blur-top {
    top: -120px;
    left: -120px;
    background: #ffffff;
}

.cta-blur-bottom {
    bottom: -120px;
    right: -120px;
    background: #000000;
}

/* Heading */
.cta-box h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

/* Prevent "Online" from breaking */
.keep-line {
    white-space: nowrap;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .cta-box h2 {
        font-size: 32px;
        line-height: 1.2;
    }
}

/* Description */
.cta-box p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 36px;
    color: #D1FAE5;
}

/* Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-stat-box {
    background: #ffffff;
    padding: 24px 60px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cta-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #059669;
    margin-bottom: 4px;
}

.cta-stat-text {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #059669;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.cta-btn:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-box {
        padding: 56px 24px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .cta-stat-box {
        padding: 20px 28px;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;   /* ⭐ IMPORTANT */
}
.dash-green {
    color: var(--primary); /* BookDash green theme */
}
.contact-form-container h3 {
    font-weight: 800;
    letter-spacing: -0.2px;
}

.contact-form-container {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.contact-form-container {
    height: 100%;
}

.contact-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-container>p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.75;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: var(--primary-light);
    color: var(--primary-dark);
}

.form-message.error {
    display: block;
    background: #FEE2E2;
    color: #DC2626;
}
/* Contact form submit button – flat style like screenshot */
.contact-form-container .btn.btn-primary.btn-lg.btn-full {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: #059669;
    box-shadow: none;
    transform: none;
}

/* Hover state – subtle only */
.contact-form-container .btn.btn-primary.btn-lg.btn-full:hover {
    background: #047857;
    transform: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-info>p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    box-shadow: var(--shadow-md);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    color: white;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.method-content a {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    padding: 48px 32px;
    color: var(--footer-text);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.footer-brand p {
    font-size: 15px;
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--footer-hover);
    border-radius: 50%;
    color: var(--footer-text);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: var(--footer-text);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li:not(:has(a)) {
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--footer-text);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }

    .nav-cta.active {
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 40px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .proof-number {
        font-size: 36px;
    }

    .proof-text {
        font-size: 18px;
    }

    .contact-form-container {
        padding: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
}
/* ================================
   Privacy Policy Pages – BookDash
================================ */

.privacy-page {
    padding: 160px 0 100px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #F0FDF4 100%
    );
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 56px 56px 64px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.privacy-header {
    margin-bottom: 40px;
}

.privacy-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.privacy-header p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Content */
.privacy-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 8px;
}
/* ================================
   Terms of Service – BookDash
================================ */

.terms-page {
    padding: 160px 0 100px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #F0FDF4 100%
    );
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 56px 56px 64px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.terms-header {
    margin-bottom: 40px;
}

.terms-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.terms-header p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Content */
.terms-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-content ul li {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Footer note */
.terms-footer {
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        padding: 36px 24px;
    }

    .terms-header h1 {
        font-size: 30px;
    }
}

/* ================================
   Cookie Policy – BookDash
================================ */

.cookie-page {
    padding: 160px 0 100px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #F0FDF4 100%
    );
}

.cookie-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 56px 56px 64px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.cookie-header {
    margin-bottom: 40px;
}

.cookie-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cookie-header p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Content */
.cookie-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.cookie-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.cookie-content ul li {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Footer note */
.cookie-footer {
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-container {
        padding: 36px 24px;
    }

    .cookie-header h1 {
        font-size: 30px;
    }
}
