        :root {
            /* Primary: Deep trustworthy blue */
            --primary: #1a56db;
            --primary-container: #2563eb;
            --on-primary: #ffffff;

            /* Secondary: Fresh clean green (eco/freshness) */
            --secondary: #059669;
            --secondary-container: #34d399;
            --on-secondary-container: #064e3b;

            /* Tertiary: Warm accent for CTAs */
            --tertiary: #0891b2;
            --on-tertiary: #ffffff;

            /* Backgrounds: Clean, crisp whites */
            --background: #f8fafc;
            --on-background: #0f172a;
            --surface: #f8fafc;
            --on-surface: #0f172a;
            --surface-variant: #e2e8f0;
            --on-surface-variant: #475569;

            /* Outlines */
            --outline: #94a3b8;
            --outline-variant: #cbd5e1;

            /* Surface containers */
            --surface-container-lowest: #ffffff;
            --surface-container-low: #f1f5f9;
            --surface-container: #e2e8f0;
            --surface-container-high: #dbeafe;

            /* Error */
            --error: #dc2626;
            --on-error: #ffffff;

            /* Border radius */
            --radius-default: 0.25rem;
            --radius-lg: 0.5rem;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-3xl: 1.5rem;
            --radius-full: 9999px;
            --max-width: 1280px;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--background);
            color: var(--on-surface);
            line-height: 1.5;
        }

        h1, h2, h3, h4, .font-headline {
            font-family: 'Manrope', sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            display: inline-block;
            line-height: 1;
        }

        /* Animations */
        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .shine-effect {
            position: relative;
            overflow: hidden;
        }

        .shine-effect::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            animation: shimmer 4s infinite;
        }

        /* Navigation */
        .nav-bar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            background-color: rgba(255, 255, 255, 0.7);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            box-shadow: 0px 20px 40px rgba(2, 31, 41, 0.06);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: #1e3a8a;
            letter-spacing: -0.05em;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 600;
            color: #475569;
            position: relative;
            padding-bottom: 4px;
            transition: color 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link.active {
            color: var(--primary);
        }

        .nav-link.active::after {
            width: 100%;
            background: var(--primary);
        }

        .btn-primary-sm {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, var(--primary), var(--primary-container));
            color: var(--on-primary);
            padding: 0.625rem 1.5rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 0.875rem;
            transition: all 0.3s;
        }

        .btn-primary-sm:hover {
            opacity: 0.8;
            transform: scale(0.95);
        }

        .btn-primary-sm:active {
            transform: scale(1);
        }

        /* Hero Section */
        .hero {
            padding: 8rem 0 5rem 0;
            overflow: hidden;
            background: linear-gradient(180deg, var(--surface-container-low) 0%, var(--background) 100%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .badge {
            display: inline-block;
            padding: 0.375rem 1rem;
            border-radius: var(--radius-full);
            background-color: var(--surface-container);
            color: var(--secondary);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.025em;
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        .hero-text {
            font-size: 1.125rem;
            color: var(--on-surface-variant);
            margin-bottom: 2.5rem;
            max-width: 36rem;
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
.service-icon {
  width: 40px;
  height: 40px;
  stroke: #0040a1; /* your brand color */
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
        .btn-primary-lg {
            background: linear-gradient(to right, var(--primary), var(--primary-container));
            color: var(--on-primary);
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1.125rem;
            box-shadow: 0 10px 15px -3px rgba(0, 64, 161, 0.2);
            transition: all 0.3s;
        }

        .btn-primary-lg:hover {
            box-shadow: 0 16px 24px -4px rgba(0, 64, 161, 0.35);
            transform: translateY(-2px);
        }

        .btn-secondary-lg {
            background-color: var(--surface-container-lowest);
            color: var(--primary);
            border: 1px solid rgba(195, 198, 214, 0.2);
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1.125rem;
            transition: all 0.3s;
        }

        .btn-secondary-lg:hover {
            background-color: var(--surface-container);
            transform: translateY(-2px);
        }

        .hero-image-container {
            position: relative;
        }

        .hero-image-bg {
            position: absolute;
            inset: -1rem;
            background-color: rgba(0, 64, 161, 0.05);
            border-radius: 2.5rem;
            filter: blur(24px);
        }

        .hero-img {
            position: relative;
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            border-radius: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .floating-badge {
            position: absolute;
            bottom: -2rem;
            left: -2rem;
            background-color: var(--surface-container-lowest);
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            max-width: 20rem;
        }

        /* Services Bento Grid */
        .services {
            padding: 6rem 0;
            background-color: var(--surface-container-low);
        }

        /* Trust Bar */
        .trust-bar {
            padding: 3rem 0;
            background-color: var(--surface-container-lowest);
            border-top: 1px solid rgba(195, 198, 214, 0.15);
            border-bottom: 1px solid rgba(195, 198, 214, 0.15);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .trust-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .trust-number {
            font-family: 'Manrope', sans-serif;
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.03em;
        }

        .trust-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--on-surface-variant);
        }

        .section-header {
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: var(--secondary);
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 800;
            letter-spacing: -0.025em;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .service-card {
            background-color: var(--surface-container-lowest);
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid rgba(195, 198, 214, 0.1);
            transition: all 0.5s;
        }

        .service-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .service-card.large {
            grid-column: span 1;
        }

        @media (min-width: 768px) {
            .service-card.large {
                grid-column: span 2;
            }
        }

        .service-icon {
            font-size: 2.25rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-card.large h3 {
            font-size: 1.5rem;
        }

        .service-description {
            color: var(--on-surface-variant);
            font-size: 0.875rem;
        }

        .service-card.large .service-description {
            font-size: 1rem;
        }

        /* Why Choose Us */
        .features {
            padding: 6rem 0;
            background-color: var(--surface);
        }

        .features-flex {
            display: flex;
            flex-direction: column;
            gap: 5rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .features-flex {
                flex-direction: row;
            }
        }

        .features-image-wrapper {
            flex: 1;
        }

        .features-image-wrapper img {
            width: 100%;
            border-radius: 2.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .features-content {
            flex: 1;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-icon-box {
            width: 3rem;
            height: 3rem;
            background-color: var(--surface-container);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon-box .material-symbols-outlined {
            color: var(--primary);
        }

        .feature-item h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .feature-item p {
            color: var(--on-surface-variant);
        }

        /* Gallery */
        .gallery {
            padding: 6rem 0;
            background-color: var(--surface);
        }

        .gallery-text-center {
            text-align: center;
            margin-bottom: 4rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .transformation-card {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .transformation-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(195, 198, 214, 0.1);
        }

        .img-label {
            position: absolute;
            top: 1rem;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .label-before {
            left: 1rem;
            background-color: rgba(186, 26, 26, 0.9);
            color: var(--on-error);
        }

        .label-after {
            right: 1rem;
            background-color: rgba(0, 81, 69, 0.9);
            color: var(--on-tertiary);
        }

        .transformation-images img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .transformation-images .before-img {
            filter: grayscale(30%);
        }

        .transformation-details {
            padding: 0 0.5rem;
        }

        .transformation-details h4 {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .transformation-details p {
            font-size: 0.875rem;
            color: var(--on-surface-variant);
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
            background-color: var(--surface-container-low);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            background-color: var(--surface-container-lowest);
            padding: 2.5rem;
            border-radius: 1rem;
            position: relative;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        .quote-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 3.75rem;
            color: rgba(0, 64, 161, 0.1);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
            color: #f59e0b;
        }

        .stars .material-symbols-outlined {
            font-variation-settings: 'FILL' 1;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--on-surface-variant);
            margin-bottom: 1.5rem;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .client-avatar {
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--surface-dim);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--secondary);
        }

        /* Contact CTA */
        .cta {
            padding: 6rem 0;
        }

        .cta-box {
            background-color: var(--primary);
            border-radius: 2.5rem;
            padding: 3rem 2rem;
            text-align: center;
            color: var(--on-primary);
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            max-width: 56rem;
            margin: 0 auto;
        }

        @media (min-width: 1024px) {
            .cta-box {
                padding: 5rem;
            }
        }

        .cta-bg-circle {
            position: absolute;
            border-radius: var(--radius-full);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .cta-bg-1 {
            top: 0;
            right: 0;
            width: 16rem;
            height: 16rem;
            margin-right: -8rem;
            margin-top: -8rem;
        }

        .cta-bg-2 {
            bottom: 0;
            left: 0;
            width: 8rem;
            height: 8rem;
            margin-left: -4rem;
            margin-bottom: -4rem;
        }

        .cta-title {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
            position: relative;
        }

        @media (min-width: 1024px) {
            .cta-title {
                font-size: 3rem;
            }
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
            position: relative;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        .btn-cta-phone {
            background-color: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-cta-email {
            background-color: var(--primary-container);
            color: white;
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        /* Footer */
        .footer {
            background-color: #0f172a;
            border-top: none;
            color: #94a3b8;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            padding: 4rem 2rem;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .footer-logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .footer-about-text {
            color: #94a3b8;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius-full);
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--primary);
            color: var(--on-primary);
        }

        .footer-title {
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            font-size: 0.875rem;
            color: #94a3b8;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-contact-item span {
            color: var(--secondary-container);
        }

        .footer-quick-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-link:hover {
            color: #ffffff;
        }

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


        /* Desktop links */
.nav-links-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links-desktop {
    display: flex;
    gap: 2rem;
  }
}


  /* Hamburger Button */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            border-radius: var(--radius-default);
            background: var(--surface-container);
            z-index: 110;
            cursor: pointer;
            transition: background 0.2s;
        }

        .menu-toggle:hover {
            background: var(--surface-container-high);
        }

        .menu-toggle span {
            width: 24px;
            height: 2.5px;
            background-color: var(--primary);
            margin: 3px 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        @media (min-width: 1024px) {
            .menu-toggle {
                display: none;
            }
            .nav-actions .btn-primary-sm {
                display: block;
            }
        }

        @media (max-width: 1023px) {
            .nav-actions .btn-primary-sm {
                display: none; /* Hide top bar CTA on mobile, moved to drawer */
            }
        }


        /* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 100;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--on-surface);
}

.mobile-menu.active {
    right: 0;
}

/* Hide desktop nav on mobile */
@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }
}

/* Show hamburger on mobile */
@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

/* ===== Scroll Reveal Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Improved Service Card ===== */
.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

/* ===== Improved Testimonial Card ===== */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* ===== CTA Button Hover ===== */
.btn-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-cta-email:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15);
}

/* ===== Social Icon Pulse ===== */
.social-icon:hover {
    transform: scale(1.1);
}

/* ===== iPhone / Small Mobile (up to 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Nav CTA button */
    .nav-content .btn-primary-sm {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 6rem 0 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-img {
        aspect-ratio: 3/4;
        border-radius: 1.25rem;
    }

    .floating-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        max-width: 100%;
        padding: 1rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: 1rem;
    }

    /* Buttons */
    .btn-group {
        flex-direction: column;
    }

    .btn-primary-lg,
    .btn-secondary-lg {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .mobile-menu .btn-primary-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .services,
    .features,
    .gallery,
    .testimonials,
    .cta {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.large {
        grid-column: span 1;
    }

    /* Features */
    .features-flex {
        gap: 2.5rem;
    }

    .features-image-wrapper img {
        border-radius: 1.25rem;
    }

    .feature-item {
        gap: 1rem;
    }

    /* Gallery */
    .gallery-grid {
        gap: 2rem;
    }

    .transformation-images {
        grid-template-columns: 1fr;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    /* CTA */
    .cta-box {
        padding: 2rem 1.25rem;
        border-radius: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }
}

/* ===== Tablet (481px to 1023px) ===== */
@media (min-width: 481px) and (max-width: 1023px) {
    .hero {
        padding: 7rem 0 3rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-grid {
        gap: 3rem;
    }

    .hero-img {
        aspect-ratio: 1/1;
        border-radius: 1.5rem;
    }

    .floating-badge {
        bottom: -1rem;
        left: -1rem;
        padding: 1rem;
    }

    .btn-primary-lg,
    .btn-secondary-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services,
    .features,
    .gallery,
    .testimonials,
    .cta {
        padding: 4rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

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

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

/* ===== PAGE HERO WITH BACKGROUND IMAGE ===== */
.page-hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 6rem;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero-tall {
    min-height: 600px;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(26, 86, 219, 0.55) 100%);
    z-index: 1;
}

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

.page-hero .hero-tagline,
.page-hero .badge {
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 1rem;
}

.page-hero .hero-title,
.page-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 800px;
    color: #ffffff;
}

.page-hero .hero-title span,
.page-hero h1 span {
    color: #93c5fd;
}

.page-hero .hero-description,
.page-hero .hero-text,
.page-hero .subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    max-width: 42rem;
}

.page-hero .btn-group {
    margin-top: 2rem;
}

.page-hero .btn-primary-lg {
    background: var(--primary);
    color: #ffffff;
}

.page-hero .btn-primary-lg:hover {
    background: var(--primary-container);
}

.page-hero .btn-secondary-lg {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.page-hero .btn-secondary-lg:hover {
    background: rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
    .page-hero {
        padding-top: 8rem;
        padding-bottom: 3.5rem;
    }
}

@media (min-width: 481px) and (max-width: 1023px) {
    .page-hero {
        padding-top: 10rem;
        padding-bottom: 4.5rem;
    }
}