/* Variables - Modern & Professional Palette */
:root {
    --primary-color: #0564aa;
    --primary-dark: #044d82;
    --secondary-color: #00a8e8;
    --accent-color: #00d4ff;
    --dark-color: #1a1a1a;
    --light-color: #f8fafc;
    --white: #ffffff;
    --grey: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-blue {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--dark-color);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 32px;
}

nav ul li a {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.9375rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: url('hero_new.jpg') no-repeat center center/cover;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    z-index: 1;
}

/* Animated Blobs */
.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.3;
    animation: blobMove 20s infinite alternate;
}

.blob-1 { top: -100px; left: -100px; background: #0564aa; }
.blob-2 { bottom: -100px; right: -100px; background: #00a8e8; animation-delay: -5s; }
.blob-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); background: #3b82f6; opacity: 0.15; animation: blobPulse 15s infinite alternate; }

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes blobPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.5); }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.5rem;
    animation: float 6s infinite ease-in-out;
}

.icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 15%; animation-delay: 1.5s; }
.icon-3 { bottom: 20%; left: 20%; animation-delay: 3s; }
.icon-4 { bottom: 30%; right: 10%; animation-delay: 4.5s; }

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

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #cbd5e1;
    max-width: 540px;
}

.trust-points {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #cbd5e1;
    font-size: 0.9375rem;
}

.trust-item i {
    color: var(--success-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(5, 100, 170, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-outline-dark:hover {
    background: var(--dark-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

/* Form Card */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-card {
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.form-card:hover::before {
    left: 100%;
}

.form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--white);
}

.form-card p {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group select option {
    background: #1e293b;
    color: var(--white);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.captcha-group label {
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.captcha-group input {
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    text-align: center;
}

/* Logo Slider */
.logo-slider-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.slider-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--grey);
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.slide img {
    max-height: 90px;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--transition);
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); }
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 60px 0;
    background: #f0f7ff;
    overflow: hidden;
}

.reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
}

.google-badge-card {
    flex-shrink: 0;
    width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.google-icon-box {
    width: 60px;
    height: 60px;
    background: #4285f4;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.badge-info h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbc05;
}

.stars i {
    color: #fbbc05;
    font-size: 1rem;
}

.badge-info p {
    font-size: 0.875rem;
    color: var(--grey);
    margin-bottom: 5px;
}

.powered-by span {
    font-weight: 700;
    color: #4285f4;
}

.review-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #4285f4;
    color: var(--white) !important;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: lowercase;
}

.reviews-slider-container {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: reviewsScroll 40s linear infinite;
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.user-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--grey);
}

.google-logo-small {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285f4;
    font-size: 1.1rem;
}

.stars-small i {
    color: #fbbc05;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-340px * 5)); }
}

@media (max-width: 1024px) {
    .reviews-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }
    .google-badge-card {
        width: 100%;
    }
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-text p {
    font-size: 1.125rem;
    color: var(--grey);
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-list i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.rounded-20 {
    border-radius: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(5, 100, 170, 0.2);
    border-color: var(--primary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.benefit-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

/* Who Grid */
.who-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.who-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.who-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.who-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.who-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.who-card ul li {
    margin-bottom: 12px;
    color: var(--grey);
    position: relative;
    padding-left: 24px;
}

.who-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Docs Grid */
.docs-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.doc-box {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.doc-box h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* Premium Vertical Timeline */
.premium-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    z-index: 10;
    box-shadow: 0 0 20px rgba(5, 100, 170, 0.2);
}

.step-content {
    width: 42%;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.timeline-step:hover .step-content {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-text p {
    font-size: 0.9375rem;
    color: var(--grey);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    .timeline-step, .timeline-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 80px;
    }
    .step-number {
        left: 30px;
    }
    .step-content {
        width: 100%;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--grey);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.125rem;
    color: #cbd5e1;
}

.contact-form-container .form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
}

.contact-form-container .form-group input,
.contact-form-container .form-group select {
    background: var(--light-color);
    border-color: var(--border-color);
    color: var(--dark-color);
    padding-left: 16px;
}

.contact-form-container .captcha-group {
    background: var(--light-color);
    border-color: var(--border-color);
}

.contact-form-container .captcha-group label {
    color: var(--dark-color);
}

.contact-form-container .captcha-group input {
    border-bottom-color: var(--border-color);
    color: var(--dark-color);
}

/* Footer */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 360px;
    margin-bottom: 12px;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

/* Floating Buttons */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-btn { background: #25d366; }
.call-btn { background: var(--primary-color); }

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
/* Responsive Design - Comprehensive Audit */

/* Large Desktops (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* Laptops & Small Desktops (1025px to 1439px) */
@media (max-width: 1439px) {
    .hero-content h1 { font-size: 3.2rem; }
}

/* Tablets & Large Mobile (769px to 1024px) */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .hero-grid, .contact-grid, .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .trust-points { justify-content: center; }
    .hero-btns { justify-content: center; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid-new { grid-template-columns: repeat(2, 1fr); }
    .docs-grid-new { grid-template-columns: repeat(2, 1fr); }
    .reviews-wrapper { flex-direction: column; align-items: center; }
    .google-badge-card { width: 100%; max-width: 500px; }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .mobile-menu-icon { display: block; }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        padding: 40px 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    nav.active { left: 0; }
    nav ul { flex-direction: column; gap: 24px; align-items: flex-start; }
    nav ul li { margin-left: 0; width: 100%; }
    nav ul li a { font-size: 1.1rem; display: block; padding: 10px 0; }
    .nav-cta { justify-content: center; }

    .hero { padding: 100px 0 60px; }
    .hero-content h1 { font-size: 2.5rem; }
    .trust-points { grid-template-columns: 1fr; text-align: left; max-width: 300px; margin-left: auto; margin-right: auto; }
    
    .benefits-grid, .who-grid-new, .docs-grid-new { grid-template-columns: 1fr; }
    
    .timeline-line { left: 20px; }
    .timeline-step, .timeline-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 60px;
        margin-bottom: 40px;
    }
    .step-number { left: 20px; width: 40px; height: 40px; font-size: 1rem; }
    .step-content { width: 100%; padding: 20px; gap: 15px; }
    .step-icon { font-size: 1.5rem; }

    .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .floating-cta { bottom: 20px; right: 20px; }
    .whatsapp-btn, .call-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .form-card { padding: 25px 20px; }
    .section-header h2, .section-text h2 { font-size: 1.8rem; }
    .btn { padding: 12px 24px; width: 100%; }
    .hero-btns { flex-direction: column; gap: 15px; }
}
