/* ===== CSS Variables & Reset ===== */
:root {
    --forest: #1B4D3E;
    --forest-dark: #143B30;
    --forest-light: #2A6B56;
    --gold: #D4A853;
    --gold-light: #E8C97A;
    --gold-dark: #B8923E;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --green: #22C55E;
    --red: #EF4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }

.highlight {
    color: var(--forest);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--forest);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-top: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.btn-primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--forest);
    background: var(--cream);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--forest);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-cta {
    background: var(--forest);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    transition: all 0.25s ease !important;
}

.nav-cta:hover {
    background: var(--forest-dark) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, #F0F7F4 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, var(--gray-200) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--forest);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 420px;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.main-card {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 0;
    padding: 0;
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.card-dot.green { background: var(--green); }

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.mini-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
}

.status-active {
    color: var(--green);
}

.mini-progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-progress .mini-label,
.mini-progress .mini-value {
    font-size: 0.8rem;
}

.mini-progress > div:first-child {
    display: flex;
    justify-content: space-between;
}

.progress-bar {
    height: 6px;
    background: var(--gray-100);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--forest), var(--forest-light));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.float-card-1 {
    position: absolute;
    bottom: 120px;
    left: -20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    animation: float 6s ease-in-out infinite;
}

.float-card-2 {
    position: absolute;
    bottom: 40px;
    right: 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Trust Bar ===== */
.trust-bar {
    padding: 32px 0;
    background: var(--forest);
    color: var(--white);
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--forest);
    background: linear-gradient(135deg, #F0F7F4 0%, var(--white) 100%);
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--forest);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card > p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--forest);
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-50);
}

.steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    min-width: 60px;
    font-family: 'Playfair Display', serif;
}

.step-content h3 {
    margin-bottom: 8px;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.step-connector {
    width: 2px;
    height: 24px;
    background: var(--gray-200);
    margin-left: 60px;
}

/* ===== Cities ===== */
.cities {
    padding: 100px 0;
    background: var(--white);
}

.cities-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.office-card {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.office-flag {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.office-card h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.office-location {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.office-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-features li {
    font-size: 0.9rem;
    padding-left: 24px;
    position: relative;
    opacity: 0.9;
}

.office-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.cities-india {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.city-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.city-card:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.city-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.city-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--cream);
    color: var(--forest);
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    box-shadow: var(--shadow-md);
}

.price-card.popular {
    border-color: var(--forest);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-header h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 28px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-600);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

.price-features {
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-features li {
    font-size: 0.88rem;
    padding-left: 28px;
    position: relative;
    color: var(--gray-600);
}

.price-features li.included::before {
    content: '✓';
    position: absolute;
    left: 4px;
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
}

.price-features li.excluded {
    opacity: 0.4;
}

.price-features li.excluded::before {
    content: '—';
    position: absolute;
    left: 4px;
    color: var(--gray-400);
}

.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-grid {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--forest);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: var(--forest);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--forest);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #F0F7F4 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-text h2 {
    color: var(--gray-900);
    margin-bottom: 16px;
}

.cta-text > p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.cta-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-800);
    background: var(--white);
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(27,77,62,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: var(--gray-500);
}

.footer-desc {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links li {
    font-size: 0.85rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== Responsive ===== */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 32px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .services, .how-it-works, .cities, .pricing,
    .testimonials, .faq, .cta-section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-visual {
        height: 220px;
        max-width: 480px;
        margin: 0 auto;
    }

    .float-card-1,
    .float-card-2 {
        display: none;
    }

    .main-card {
        top: 0;
        left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-layout {
        grid-template-columns: 1fr;
    }

    .cities-india {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid .price-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        justify-self: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
    .services, .how-it-works, .cities, .pricing,
    .testimonials, .faq, .cta-section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .logo-tagline {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-divider {
        height: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cities-india {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid .price-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .price-card.popular {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 1rem;
        min-height: 48px;
    }

    .btn-lg {
        padding: 16px 28px;
        min-height: 48px;
    }

    .cta-form {
        padding: 24px;
    }

    .step {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }

    .step-connector {
        height: 20px;
        margin-left: 28px;
    }

    .step-number {
        min-width: auto;
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .trust-items {
        gap: 16px;
    }

    .trust-item span {
        font-size: 0.8rem;
    }

    .hero-bg-pattern {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .services, .how-it-works, .cities, .pricing,
    .testimonials, .faq, .cta-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 48px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .cities-india {
        grid-template-columns: 1fr;
    }

    .cta-form {
        padding: 20px;
    }

    .step-connector {
        margin-left: 20px;
        height: 16px;
    }

    .trust-bar {
        padding: 24px 0;
    }

    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
