       :root {
           color-scheme: light;
       }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes heroGlowPulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(33, 88, 255, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(33, 88, 255, 0.6);
            }
        }

        @keyframes floatGently {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        /* Animation classes */
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-in-down {
            animation: fadeInDown 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-in {
            animation: fadeIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-in-scale {
            animation: slideInScale 0.8s ease-out forwards;
            opacity: 0;
        }

        /* Staggered animation delays */
        .animate-delay-1 {
            animation-delay: 0.1s;
        }

        .animate-delay-2 {
            animation-delay: 0.2s;
        }

        .animate-delay-3 {
            animation-delay: 0.3s;
        }

        .animate-delay-4 {
            animation-delay: 0.4s;
        }

        .animate-delay-5 {
            animation-delay: 0.5s;
        }

        .hero-copy {
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

:root {
            --primary: #e0218a;
            --primary-soft: #ff6bb7;
            --accent: #2158ff;
            --accent-soft: #7db7ff;
            --header-h: 84px;
            --surface: #ffffff;
            --surface-soft: #f6f8ff;
            --text: #111829;
            --muted: #5a6a87;
            --border: rgba(13, 82, 255, 0.14);
            --radius: 24px;
            --shadow: 0 28px 80px rgba(13, 82, 255, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            visibility: visible !important;
            background-color: #F7F9FF;
        }

        section[id] {
            scroll-margin-top: 110px;
        }

        body {
            min-height: 100vh;
            font-family: 'Plus Jakarta Sans', 'Inter', Arial, sans-serif;
            color: var(--text);
            background-color: #F7F9FF;
             visibility: visible !important;
            background-image: none;
            overflow-x: hidden !important;
        }

        section,
        .section,
        .page-section,
        .content-section,
        .hero-section,
        .section__wrapper,
        .section-content {
            background-color: #F7F9FF !important;
             visibility: visible !important;
        }

        img {
            max-width: 100%;
            display: block;
        }

        body.page-new-customer {
            background-color: #F7F9FF;
            background-image: none;
        }

        body.page-new-customer section:not(.customer-hero) {
            background: #F7F9FF !important;
            background-color: #F7F9FF !important;
            background-image: none !important;
        }

        header {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 14px 32px;
            max-height: var(--header-h);
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid rgba(13, 82, 255, 0.14);
            backdrop-filter: blur(18px);
        }

        .logo {
            width: 180px;
            object-fit: contain;
        }

        .menu-toggle {
            display: none;
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 12px;
            flex-direction: column;
            gap: 6px;
            position: relative;
            z-index: 1000;
        }

        .menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            border-radius: 999px;
            background: var(--primary);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        header.open .menu-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        header.open .menu-toggle span:nth-child(2) {
            opacity: 0;
        }
        header.open .menu-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-ul {
            display: flex;
            align-items: center;
            gap: 16px;
            list-style: none;
        }

        .nav-li {
            position: relative;
        }

        .link {
            color: var(--text);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.25s ease;
            position: relative;
            padding: 8px 10px;
            border-radius: 999px;
        }

        .link:hover,
        .link:focus-visible {
            color: var(--primary);
            background: rgba(224, 33, 138, 0.08);
            transform: translateY(-1px);
        }

        .nav-select {
            min-width: 220px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(15, 35, 102, 0.16);
            background: var(--surface);
            color: var(--text);
            font-weight: 600;
            outline: none;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .nav-select option {
            color: #000000;
        }

        .main-nav .dropdown:hover > .dropdown-menu,
        .main-nav .dropdown.open > .dropdown-menu,
        .main-nav .dropdown:focus-within > .dropdown-menu,
        .main-nav .dropdown-menu:hover {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
            display: block !important;
        }

        .dropdown-menu li {
            display: block;
        }

        .dropdown-trigger {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: var(--text);
            background: transparent;
            border: none;
            padding: 8px 10px;
            margin: 0;
            cursor: pointer;
            text-decoration: none;
            font: inherit;
            transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
            border-radius: 999px;
        }

        .dropdown-trigger:hover,
        .dropdown-trigger:focus,
        .dropdown.open .dropdown-trigger {
            color: var(--primary);
            background: rgba(224, 33, 138, 0.08);
            transform: translateY(-1px);
        }

        .dropdown-trigger:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .dropdown-arrow {
            font-size: 0.85rem;
        }

        .main-nav .dropdown > .dropdown-menu {
            display: block;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(15, 35, 102, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
            padding: 10px 0;
            z-index: 1000;
            pointer-events: none;
            border: 1px solid rgba(13, 82, 255, 0.08);
            overflow: hidden;
        }

        .dropdown-menu li {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            font-size: 0.95rem;
            color: var(--text);
            text-decoration: none;
            transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
            position: relative;
        }

        .dropdown-menu a:hover,
        .dropdown-menu a:focus {
            background: rgba(13, 82, 255, 0.08);
            color: var(--primary);
            transform: translateX(4px);
        }

        .book-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            border-radius: 999px;
            color: var(--surface);
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 18px 40px rgba(224, 33, 138, 0.22);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 50px rgba(224, 33, 138, 0.22);
        }

        .hero-section {
            position: relative;
            padding: 130px 24px 110px;
            min-height: calc(100vh - var(--header-h));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: var(--header-h);
            overflow: hidden;
            position: relative;
        }

        .hero-slider { position:absolute; inset:0; z-index:0; overflow:hidden; }
        .hero-slider::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.28)); pointer-events: none; z-index:1; }
        .hero-slide { position:absolute; inset:0; opacity:0; transition:opacity 0.8s ease; }
        .hero-slide img { width:100%; height:100%; object-fit:cover; display:block; filter: saturate(0.95) brightness(0.9); }
        .hero-slide.active { opacity:1; }
        .hero-prev, .hero-next { position:absolute; top:50%; transform:translateY(-50%); z-index:2; background:rgba(0,0,0,0.35); color:#fff; border:none; width:44px; height:44px; border-radius:50%; font-size:22px; cursor:pointer; }
        .hero-prev { left:18px; }
        .hero-next { right:18px; }

        .hero-copy { z-index:3; }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(33, 88, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(224, 33, 138, 0.08) 0%, transparent 50%);
            pointer-events: none;
            animation: heroGlowPulse 8s ease-in-out infinite;
        }

        .about-hero {
            min-height: 55vh;
            padding: 100px 24px 80px;
            background: url('assets/ilupeju-branch-images/about-hero-bg.jpg') center/cover no-repeat;
        }

        .services-hero {
            background: linear-gradient(135deg, #0f1e3a 0%, #1a2f5a 50%, #0d1a36 100%);
        }

        .contact-hero {
            position: relative;
            margin-top: var(--header-h);
            padding: 100px 24px 70px;
            min-height: 50vh;
            background: url('assets/contact-hero-bg.jpeg') center/cover no-repeat;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top center, rgba(2, 14, 36, 0.45), transparent 40%),
                        linear-gradient(180deg, rgba(4, 22, 50, 0.60) 0%, rgba(4, 22, 50, 0.50) 30%, rgba(4, 22, 50, 0.68) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-copy {
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 0 auto;
        }

        .hero-intro {
            margin-bottom: 18px;
            font-size: 0.98rem;
            color: var(--primary-soft);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .heading {
            position: relative;
            z-index: 1;
            font-size: clamp(3rem, 6vw, 5.2rem);
            line-height: 1.02;
            width: 100%;
            color: #ffffff;
            text-shadow: 0 22px 55px rgba(4, 17, 40, 0.35);
        }

        .hero-section .heading {
            max-width: 38ch;
            text-wrap: balance;
        }

        .subheading {
            position: relative;
            z-index: 1;
            margin-top: 22px;
            max-width: 720px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .hero-ctas {
            position: relative;
            z-index: 1;
            margin-top: 34px;
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

           .services h2, .services, .service-intro{
                opacity: 1 !important;
                visibility: visible;
                transform: none !important;
        }

        .primary-cta,
        .secondary-cta {
            min-width: 180px;
            padding: 14px 26px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .primary-cta {
            background: linear-gradient(135deg, #2154ff 0%, #1a3cd4 100%);
            color: #ffffff;
            box-shadow: 0 8px 24px rgba(33, 84, 255, 0.3);
        }

        .primary-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(33, 84, 255, 0.5);
            background: linear-gradient(135deg, #1a3cd4 0%, #142aa3 100%);
        }

        .primary-cta:active {
            transform: translateY(-1px);
        }

        .secondary-cta {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
        }

        .secondary-cta:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 14px 36px rgba(255, 255, 255, 0.15);
        }

        .secondary-cta:active {
            transform: translateY(-1px);
        }

        .primary-cta {
            color: var(--surface);
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            border: none;
            box-shadow: 0 18px 50px rgba(224, 33, 138, 0.22);
        }

        .secondary-cta {
            color: var(--contact-primary);
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid var(--accent);
            backdrop-filter: blur(10px);
            box-shadow: 0 16px 30px rgba(33, 88, 255, 0.16);
        }

        .hero-ctas .secondary-cta {
            color: #ffffff;
        }

        .primary-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 40px rgba(224, 33, 138, 0.2);
        }

        .secondary-cta:hover {
            background: rgba(255, 255, 255, 0.28);
        }

        .about-us {
            padding: 80px 20px 48px;
        }

        .about-us-content {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 36px;
            align-items: center;
        }

        .about-img img {
            border-radius: 32px;
            min-height: 420px;
            object-fit: cover;
            box-shadow: 0 30px 80px rgba(13, 82, 255, 0.08);
        }

        .about-description {
            max-width: 640px;
            background: rgba(255, 255, 255, 0.96);
            border-radius: 32px;
            padding: 36px;
            border: 1px solid rgba(13, 82, 255, 0.08);
            box-shadow: 0 24px 80px rgba(13, 82, 255, 0.08);
        }

        .about-title {
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-description p {
            color: #4a5c7b;
            line-height: 1.9;
            font-size: 1rem;
            margin-bottom: 18px;
        }

        .about-description a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 210px;
            padding: 14px 26px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            color: var(--surface);
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .about-description a:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 40px rgba(224, 33, 138, 0.18);
        }

        .services {
            padding: 80px 20px;
            background: #f7f9ff;
        }

        .services h2,
        .choose-section h2,
        .reviews-section h2,
        .contact-section h2 {
            text-align: center;
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            color: var(--primary);
            margin-bottom: 12px;
        }

        .service-intro,
        .choose-intro,
        .reviews-intro {
            margin: 0 auto;
            max-width: 680px;
            text-align: center;
            color: #4a5c7b;
            line-height: 1.9;
            font-size: 1rem;
        }

        .service-slider {
            display: grid;
            grid-template-columns: repeat(3, minmax(260px, 1fr));
            gap: 24px;
            max-width: 1180px;
            margin: 40px auto 0;
        }

        .service-card {
            position: relative;
            background: var(--surface);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 22px 65px rgba(13, 82, 255, 0.08);
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, opacity 0.45s ease;
            will-change: transform, opacity;
            border: 1px solid rgba(13, 82, 255, 0.08);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 0 35px 98px rgba(13, 82, 255, 0.15);
        }

        .service-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .service-card div {
            padding: 28px;
        }

        .service-card h4 {
            margin: 0 0 14px;
            color: var(--accent);
            font-size: 1.25rem;
        }

        .service-card p {
            margin: 0 0 24px;
            line-height: 1.85;
            color: #5e6c86;
            min-height: 4.2rem;
        }

        .feature {
            position: absolute;
            top: 18px;
            right: 18px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            color: var(--surface);
            border-radius: 999px;
            padding: 10px 16px;
            font-size: 0.8rem;
            letter-spacing: 0.01em;
            text-transform: uppercase;
            box-shadow: 0 18px 40px rgba(224, 33, 138, 0.18);
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px 24px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            color: var(--surface);
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 18px 40px rgba(224, 33, 138, 0.18);
        }

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 48px rgba(224, 33, 138, 0.22);
        }

        /* Services page accordion and CTA styles */
        .services-hero {
            min-height: 480px;
            padding: 90px 24px 70px;
            background: url('assets/general-dentistry-service-rep.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .services-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(4, 22, 50, 0.65) 0%, rgba(4, 22, 50, 0.55) 50%, rgba(4, 22, 50, 0.70) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .services-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top center, rgba(2, 14, 36, 0.35), transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        .services-hero .hero-copy {
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 0 auto;
        }

        .services-hero .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--primary-soft);
            margin-bottom: 18px;
        }

        .services-hero .heading {
            color: #ffffff;
            line-height: 1.03;
            text-shadow: 0 8px 32px rgba(4, 17, 40, 0.40);
        }

        .services-hero .subheading {
            color: rgba(255, 255, 255, 0.85);
            max-width: 720px;
            margin: 0 auto;
        }

        .services-overview {
            padding: 60px 20px 40px;
            background: #fbfdff;
        }

        .services-overview .section-intro {
            max-width: 760px;
            margin: 0 auto 42px;
            color: #4f607e;
            line-height: 1.9;
        }

        .accordion {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            gap: 18px;
        }

        .accordion-item {
            border-radius: 28px;
            background: var(--surface);
            border: 1px solid rgba(13, 82, 255, 0.1);
            box-shadow: 0 24px 70px rgba(13, 82, 255, 0.07);
            overflow: hidden;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .accordion-item:hover {
            transform: translateY(-2px);
            border-color: rgba(13, 82, 255, 0.16);
        }

        .accordion-trigger {
            width: 100%;
            display: grid;
            grid-template-columns: auto 56px;
            align-items: center;
            gap: 0;
            padding: 18px 24px;
            border: none;
            background: transparent;
            text-align: left;
            cursor: pointer;
            color: var(--text);
            transition: background 0.25s ease;
            min-height: 120px;
        }

        .accordion-trigger:hover {
            background: rgba(13, 82, 255, 0.03);
        }

        .accordion-header-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .accordion-thumbnail {
            width: 144px;
            height: 144px;
            object-fit: cover;
            border-radius: 16px;
            border: 1px solid rgba(13, 82, 255, 0.12);
        }

        .accordion-header-text {
            display: flex;
            flex-direction: column;
            gap: 8px;
            justify-content: center;
        }

        .accordion-title {
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #e0218a;
            line-height: 1.3;
        }

        .accordion-description {
            display: block;
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .accordion-icon {
            width: 46px;
            min-width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: rgba(224, 33, 138, 0.12);
            color: var(--primary);
            font-size: 1.15rem;
        }

        .accordion-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(33, 88, 255, 0.08), rgba(224, 33, 138, 0.04));
            transition: transform 0.3s ease, background 0.3s ease;
            color: var(--accent);
            font-size: 1.2rem;
            font-weight: 700;
        }

        .accordion-trigger[aria-expanded="true"] .accordion-arrow {
            transform: rotate(180deg);
            background: linear-gradient(135deg, rgba(33, 88, 255, 0.16), rgba(224, 33, 138, 0.12));
        }

        .accordion-panel {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, opacity 0.35s ease;
        }

        .accordion-panel.active {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .accordion-trigger {
                grid-template-columns: auto 48px;
                gap: 0;
                padding: 16px 18px;
                min-height: 110px;
            }

            .accordion-thumbnail {
                width: 115px;
                height: 115px;
            }

            .accordion-title {
                font-size: 1rem;
            }

            .accordion-description {
                font-size: 0.85rem;
            }

            .accordion-arrow {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .accordion-trigger {
                grid-template-columns: auto 44px;
                gap: 0;
                padding: 14px 16px;
                min-height: 100px;
            }

            .accordion-thumbnail {
                width: 100px;
                height: 100px;
                border-radius: 12px;
            }

            .accordion-title {
                font-size: 0.95rem;
                font-weight: 700;
                text-align: center;
            }

            .accordion-description {
                font-size: 0.8rem;
                display: none;
            }

            .accordion-arrow {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }
        }

        .service-items-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(240px, 1fr));
            gap: 18px;
            padding: 24px 28px 30px;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            gap: 18px;
            padding: 24px;
            border-radius: 24px;
            background: #f7f9ff;
            border: 1px solid rgba(13, 82, 255, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .service-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 46px rgba(13, 82, 255, 0.08);
        }

        .service-item h3 {
            margin: 0;
            font-size: 1.05rem;
            color: var(--accent);
        }

        .service-item p {
            margin: 0;
            color: #4f607e;
            line-height: 1.8;
            font-size: 0.96rem;
        }

        .services-cta {
            padding: 72px 20px 80px;
            background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
        }

        .services-cta .cta-panel {
            max-width: 1080px;
            margin: 0 auto;
            padding: 44px 34px;
            border-radius: 32px;
            background: var(--surface);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

        .services-cta h2 {
            margin: 0;
            font-size: clamp(2.2rem, 3.5vw, 3.4rem);
            line-height: 1.05;
            color: var(--primary);
        }

        .services-cta p {
            margin: 20px 0 0;
            color: #5a6a87;
            line-height: 1.85;
            max-width: 640px;
        }

        .footer-placeholder {
            padding: 60px 20px 40px;
            background: #0f2a65;
            color: #f7f8ff;
        }

        .footer-placeholder .footer-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, minmax(220px, 1fr));
            gap: 32px;
        }

        .footer-placeholder h3 {
            margin-bottom: 18px;
            color: #ffffff;
        }

        .footer-placeholder p,
        .footer-placeholder a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .footer-placeholder .footer-links li {
            margin-bottom: 14px;
        }

        .footer-placeholder .footer-bottom {
            margin-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.64);
            font-size: 0.95rem;
        }

        @media (max-width: 1080px) {
            .service-items-grid {
                grid-template-columns: 1fr;
            }

            .services-cta .cta-panel {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 640px) {
            .services-hero {
                padding: 120px 18px 60px;
            }

            .services-hero .hero-copy {
                max-width: 100%;
            }

            .services-cta {
                padding: 50px 18px 60px;
            }

            .footer-placeholder .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .choose-section {
            padding: 96px 20px;
            background: #f4f8ff;
        }

        .choose-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(220px, 1fr));
            gap: 24px;
            max-width: 1180px;
            margin: 42px auto 0;
        }

        .about-intro {
            padding: 96px 20px;
            background: linear-gradient(180deg, #faf7fb 0%, #eef5ff 100%);
        }

        .intro-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1180px;
            margin: 42px auto 0;
        }

        .intro-card {
            background: var(--surface);
            border: 1px solid rgba(13, 82, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(13, 82, 255, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .intro-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 34px 100px rgba(13, 82, 255, 0.12);
        }

        .intro-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .intro-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .intro-card h3 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--text);
            padding: 16px 16px 0;
        }

        .intro-card p {
            margin: 0;
            color: #5e6c86;
            line-height: 1.6;
            font-size: 0.95rem;
            padding: 8px 16px 16px;
            flex-grow: 1;
        }

        @media (max-width: 1024px) {
            .intro-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .intro-grid {
                grid-template-columns: 1fr;
            }
        }

        .mission-section {
            padding: 96px 20px;
            background: #ffffff;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1180px;
            margin: 40px auto 0;
        }

        .mission-card {
            background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
            border: 1px solid rgba(13, 82, 255, 0.1);
            border-radius: 28px;
            padding: 34px 30px;
            box-shadow: 0 28px 90px rgba(13, 82, 255, 0.08);
            display: grid;
            gap: 18px;
        }

        .mission-icon {
            width: 64px;
            height: 64px;
            display: grid;
            place-items: center;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(224, 33, 138, 0.12), rgba(224, 33, 138, 0.02));
            color: var(--primary);
            font-size: 1.35rem;
        }

        .mission-card h3 {
            margin: 0;
            color: var(--accent);
            font-size: 1.3rem;
        }

        .mission-card p {
            margin: 0;
            color: #5e6c86;
            line-height: 1.85;
        }

        .team-section {
            padding: 96px 20px;
            background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
        }

        .team-carousel {
            position: relative;
            max-width: 1180px;
            margin: 40px auto 0;
        }

        .team-carousel-window {
            overflow: hidden;
            position: relative;
            min-height: 480px;
            touch-action: pan-y;
        }

        .team-carousel-track {
            display: flex;
            transition: transform 0.55s ease-in-out;
            will-change: transform;
        }

        .team-carousel-slide {
            flex: 0 0 100%;
            width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .team-card {
            height: 480px;
            border-radius: 18px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 24px 60px rgba(15, 35, 102, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 80px rgba(15, 35, 102, 0.12);
        }

        .team-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .team-carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            color: var(--text);
            backdrop-filter: blur(12px);
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
            z-index: 2;
        }

        .team-carousel-control:hover {
            background: rgba(255, 255, 255, 0.95);
            color: var(--accent);
            transform: translateY(-50%) scale(1.05);
        }

        .team-carousel-control.prev-btn {
            left: 10px;
        }

        .team-carousel-control.next-btn {
            right: 10px;
        }

        @media (min-width: 780px) {
            .team-carousel {
                max-width: 1475px;
            }

            .team-carousel-slide {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .team-carousel-control.prev-btn {
                left: -28px;
            }

            .team-carousel-control.next-btn {
                right: -28px;
            }
        }

        @media (max-width: 640px) {
            .team-carousel-window {
                min-height: 360px;
            }

            .team-card {
                height: 360px;
            }

            .team-carousel-control {
                width: 44px;
                height: 44px;
            }
        }

        .team-photo-card {
            max-width: 1080px;
            margin: 40px auto 0;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 28px 80px rgba(13, 82, 255, 0.08);
        }

        .team-photo-visual {
            min-height: 0;
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #f3f7ff;
            position: relative;
        }

        .team-photo-visual img.team-photo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .team-photo-overlay {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 28px;
            padding: 32px 28px;
            text-align: center;
            max-width: 520px;
            box-shadow: 0 24px 50px rgba(24, 47, 97, 0.12);
        }

        .team-photo-overlay span {
            display: block;
            font-size: 1.35rem;
            line-height: 1.4;
            color: #1d2f5a;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 36px 110px rgba(13, 82, 255, 0.12);
        }

        .team-image {
            min-height: 300px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .team-body {
            padding: 28px;
            display: grid;
            gap: 14px;
        }

        .team-body h3 {
            margin: 0;
            font-size: 1.25rem;
            color: var(--accent);
        }

        .team-body p {
            margin: 0;
            color: #5e6c86;
            line-height: 1.9;
        }

        .team-body p:first-of-type {
            color: var(--primary);
            font-weight: 700;
        }

        .team-social {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 14px;
        }

        .team-social a {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--accent);
            background: rgba(33, 88, 255, 0.08);
            transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

        .team-social a:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, rgba(224, 33, 138, 0.15), rgba(33, 88, 255, 0.16));
            color: #ffffff;
        }

        .gallery-section {
            padding: 96px 20px;
            background: #f4f8ff;
        }

        .gallery-shell {
            max-width: 1180px;
            margin: 40px auto 0;
            display: grid;
            gap: 24px;
        }

        .gallery-frame {
            overflow: hidden;
            border-radius: 32px;
            border: 1px solid rgba(13, 82, 255, 0.1);
            box-shadow: 0 30px 90px rgba(13, 82, 255, 0.08);
            background: #f4f8ff;
            min-height: 546px;
            display: flex;
            align-items: stretch;
            box-sizing: border-box;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.6s ease;
            flex: 1;
            width: 100%;
            box-sizing: border-box;
            gap: 16px;
        }

        .gallery-slide {
            flex: 0 0 100%;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            box-sizing: border-box;
            overflow: hidden;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        @media (max-width: 779px) {
            .gallery-track {
                gap: 0;
            }

              .gallery-slide {
                display: block;
                max-width: 100%;
                height: 100%;
            }
        }

        .gallery-actions {
            display: flex;
            justify-content: center;
            gap: 18px;
        }

        .gallery-pagination {
            display: none;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(13, 82, 255, 0.18);
            cursor: pointer;
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }

        @media (min-width: 780px) {
            .gallery-slide {
                flex: 0 0 calc(50% - 8px);
                max-width: calc(50% - 8px);
            }
        }

        .gallery-dot.active {
            background: var(--accent);
            box-shadow: 0 6px 14px rgba(33, 88, 255, 0.22);
            transform: scale(1.1);
        }

        .gallery-prev,
        .gallery-next {
            width: 54px;
            height: 54px;
            border: none;
            border-radius: 50%;
            background: var(--surface);
            color: var(--accent);
            box-shadow: 0 22px 60px rgba(13, 82, 255, 0.12);
            cursor: pointer;
            transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
            display: grid;
            place-items: center;
            font-size: 1rem;
        }

        .gallery-prev:hover,
        .gallery-next:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, rgba(224, 33, 138, 0.12), rgba(33, 88, 255, 0.12));
            color: #ffffff;
        }

        .hero-section .hero-accent {
            display: block;
        }

        .hero-accent {
            animation: fadeIn 1.2s ease forwards;
        }

        .nervous-care-section {
            padding: 90px 20px;
            background: linear-gradient(180deg, #fffafb 0%, #eef4ff 100%);
        }

        .nervous-care-shell {
            max-width: 1180px;
            margin: 40px auto 0;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 36px;
            align-items: center;
        }

        .nervous-care-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 420px;
        }

        .nervous-care-image-wrap {
            position: relative;
            width: 100%;
            border-radius: 32px;
            overflow: hidden;
            min-height: 420px;
            border: 1px solid rgba(13, 82, 255, 0.08);
            box-shadow: 0 32px 90px rgba(13, 82, 255, 0.12);
            background: radial-gradient(circle at top left, rgba(255, 107, 183, 0.18), transparent 30%), radial-gradient(circle at bottom right, rgba(76, 200, 255, 0.18), transparent 30%);
        }

        .nervous-care-copy {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 32px;
            padding: 44px 42px;
            border: 1px solid rgba(13, 82, 255, 0.08);
            box-shadow: 0 28px 80px rgba(13, 82, 255, 0.08);
            overflow: hidden;
        }

        .nervous-care-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .nervous-care-image-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45), transparent 28%), radial-gradient(circle at 80% 80%, rgba(76, 200, 255, 0.16), transparent 25%);
            pointer-events: none;
        }

        .nervous-care-copy {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 32px;
            padding: 44px 42px;
            border: 1px solid rgba(13, 82, 255, 0.08);
            box-shadow: 0 28px 80px rgba(13, 82, 255, 0.08);
            overflow: hidden;
        }

        .nervous-care-copy::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(255, 107, 183, 0.18), transparent 55%);
            border-radius: 50%;
            pointer-events: none;
        }

        .nervous-care-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            color: var(--accent);
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .nervous-care-label::before {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
        }

        .nervous-care-copy h2 {
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            line-height: 1.05;
            margin-bottom: 24px;
        }

        .nervous-care-copy p {
            color: #4a5c7b;
            line-height: 1.85;
            font-size: 1rem;
            margin-bottom: 34px;
            max-width: 680px;
        }

        .nervous-care-features {
            display: grid;
            gap: 18px;
            margin-bottom: 34px;
        }

        .nervous-care-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 20px 22px;
            border-radius: 24px;
            background: #f7f9ff;
            border: 1px solid rgba(13, 82, 255, 0.08);
            box-shadow: 0 18px 50px rgba(13, 82, 255, 0.06);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .nervous-care-item:hover {
            transform: translateY(-3px);
            border-color: rgba(76, 200, 255, 0.18);
            box-shadow: 0 22px 60px rgba(13, 82, 255, 0.08);
            background: #ffffff;
        }

        .nervous-care-item-icon {
            width: 48px;
            min-width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(224, 33, 138, 0.18), rgba(76, 200, 255, 0.18));
            color: var(--accent);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .nervous-care-item p {
            margin: 0;
            color: #20325a;
            font-weight: 600;
            line-height: 1.65;
        }

        .nervous-care-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 320px;
            padding: 16px 28px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            color: var(--surface);
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 18px 40px rgba(224, 33, 138, 0.22);
        }

        .nervous-care-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 48px rgba(224, 33, 138, 0.24);
        }

        .choose-card {
            background: var(--surface);
            border-radius: 28px;
            padding: 36px 28px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgba(13, 82, 255, 0.08);
        }

        .choose-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 80px rgba(13, 82, 255, 0.12);
            border-color: rgba(224, 33, 138, 0.15);
        }

        .choose-icon {
            width: 70px;
            height: 70px;
            display: grid;
            place-items: center;
            margin: 0 auto 20px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(224, 33, 138, 0.18), rgba(33, 88, 255, 0.18));
            color: var(--primary);
            font-size: 1.8rem;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
        }

        .choose-card h3 {
            margin-bottom: 12px;
            font-size: 1.15rem;
            color: var(--accent);
        }

        .choose-card p {
            color: #5e6c86;
            line-height: 1.8;
            font-size: 0.97rem;
        }

        .reviews-section {
            margin-top: 40px;
            padding: 60px 24px;
            background: #F8FAFC;
            border-radius: 24px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .review-section-heading {
            max-width: 920px;
            margin: 0 auto 36px auto;
            text-align: center;
        }

        .reviews-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 18px;
            height: 44px;
            margin: 0 auto 18px auto;
            border-radius: 999px;
            background: rgba(224, 33, 138, 0.12);
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .review-section-heading h2 {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            line-height: 1.08;
            color: #16213B;
            margin: 0 0 26px 0;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .review-section-heading .reviews-intro {
            margin: 0 auto;
            max-width: 760px;
            color: #4A5568;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .review-carousel {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            background: transparent;
            box-shadow: none;
        }

        .review-carousel-track {
            display: flex;
            gap: 24px;
            transition: transform 0.7s ease;
            will-change: transform;
        }

        .review-slide {
            flex: 0 0 85%;
            min-width: 280px;
        }

        .review-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 18px;
            min-height: 260px;
            padding: 34px;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 24px 70px rgba(16, 24, 64, 0.08);
            position: relative;
            border: 1px solid rgba(224, 33, 138, 0.1);
        }

        .review-card::before {
            content: '“';
            position: absolute;
            top: 22px;
            left: 22px;
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(224, 33, 138, 0.12);
            color: var(--primary);
            font-size: 18px;
        }

        .review-card-quote {
            margin: 0;
            font-size: 1.45rem;
            line-height: 1.9;
            color: #1E293B;
            font-style: italic;
            font-weight: 500;
            letter-spacing: 0.01em;
            flex-grow: 1;
        }

        .review-card-author {
            margin: 0;
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
        }

        .review-card-meta {
            margin: 2px 0 0 0;
            font-size: 0.95rem;
            color: #718096;
        }

        .review-carousel-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin: 24px auto 0 auto;
            padding-bottom: 4px;
        }

        .review-carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 999px;
            border: none;
            background: rgba(224, 33, 138, 0.18);
            transition: transform 0.25s ease, background-color 0.25s ease;
            cursor: pointer;
        }

        .review-carousel-dot:hover,
        .review-carousel-dot.active {
            background: var(--primary);
            transform: scale(1.08);
        }

        .review-actions {
            display: flex;
            justify-content: center;
            margin: 32px auto 0 auto;
        }

        .view-reviews-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 36px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            box-shadow: 0 20px 50px rgba(224, 33, 138, 0.18);
        }

        .view-reviews-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 24px 56px rgba(224, 33, 138, 0.24);
            background: linear-gradient(135deg, #d11e84, #ff7ab2);
        }

        @media (min-width: 760px) {
            .review-slide {
                flex: 0 0 calc((100% - 24px) / 2);
                min-width: 420px;
            }
        }

        @media (min-width: 992px) {
            .review-slide {
                flex: 0 0 calc((100% - 48px) / 3);
                min-width: 300px;
            }
        }

        @media (max-width: 780px) {
            .review-section-heading h2 {
                font-size: clamp(2.2rem, 7vw, 2.6rem);
            }

            .review-section-heading .reviews-intro {
                font-size: 0.98rem;
            }

            .review-carousel {
                border-radius: 24px;
            }

            .review-card {
                padding: 28px 24px;
            }

            .review-actions {
                margin-top: 18px;
            }
        }

        .reviews-section .experience-texts p {
            max-width: 600px;
            color: #4a5c7b;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .reviews-section .reviews-cta {
            margin-top: 24px;
        }

        .review-widget {
            max-width: 920px;
            margin: 40px auto 0;
            border-radius: 32px;
            overflow: visible;
            background: var(--surface);
            box-shadow: 0 30px 80px rgba(13, 82, 255, 0.1);
            min-height: 380px;
            display: grid;
            place-items: center;
            padding: 24px;
        }

        /* Elfsight review widget overrides - attempt to blend widget with site styling.
           Note: if Elfsight renders content inside a cross-origin iframe, some selectors
           may not apply. In that case change colors via the Elfsight dashboard (Appearance -> Colors). */
        .review-widget .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 {
            width: 100%;
            max-width: 920px;
            margin: 0 auto;
            background: transparent;
            border-radius: 20px;
            overflow: hidden;
            color: inherit;
        }

        /* Target common heading selectors inside the injected widget */
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 h1,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 h2,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 h3,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .ew-widget-title,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-widget__title {
            color: var(--primary) !important;
        }

        /* Force iframe to fill container where possible */
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 iframe {
            width: 100% !important;
            min-height: 260px;
            border: none !important;
        }

        :root {
            --contact-primary: #1E88E5;
            --contact-primary-soft: #42A5F5;
            --contact-secondary: #FF4FA3;
            --contact-secondary-soft: #FF80BF;
            --contact-surface: #ffffff;
            --contact-surface-soft: rgba(255, 255, 255, 0.84);
        }

        .contact-hero {
            position: relative;
            margin-top: var(--header-h);
            padding: 100px 24px 70px;
            min-height: 50vh;
            background: url('assets/contact-hero-bg.jpeg') center/cover no-repeat;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(4, 22, 50, 0.70) 0%, rgba(4, 22, 50, 0.60) 50%, rgba(4, 22, 50, 0.75) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .contact-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(2, 14, 36, 0.25), transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .contact-hero .hero-copy {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-compact {
            min-height: 50vh;
            padding: 100px 24px 70px;
        }

        .hero-accent {
            position: absolute;
            border-radius: 50%;
            opacity: 0;
            filter: blur(24px);
            pointer-events: none;
            display: none;
        }

        .hero-accent.accent-one {
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(30, 136, 229, 0.22), transparent 60%);
            top: 30px;
            right: 10%;
        }

        .hero-accent.accent-two {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(255, 79, 163, 0.18), transparent 55%);
            bottom: 60px;
            left: 8%;
        }

        .hero-accent.accent-three {
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(66, 165, 245, 0.2), transparent 55%);
            top: 180px;
            left: 14%;
        }

        .contact-hero .hero-intro {
            color: var(--primary-soft);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-hero .heading {
            color: #ffffff;
            font-size: clamp(2.8rem, 6vw, 4.6rem);
            line-height: 1.02;
            margin-bottom: 22px;
            text-shadow: 0 8px 32px rgba(4, 17, 40, 0.40);
        }

        .contact-hero .subheading {
            max-width: 720px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.85;
            font-size: 1.05rem;
        }

        .contact-hero .hero-ctas {
            margin-top: 38px;
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .quick-contact-strip,
        .branch-section,
        .booking-section,
        .socials-section,
        .faq-section,
        .final-cta-section {
            padding: 88px 20px;
        }

        .section-head {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }

        .section-head .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--contact-primary);
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-head h2 {
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            margin-bottom: 16px;
            color: var(--text);
        }

        .section-copy {
            max-width: 720px;
            margin: 0 auto;
            color: #5e6c86;
            line-height: 1.9;
            font-size: 1rem;
        }

        /* Alternating color pattern for contact page sections */
        /* Section 1: quick-contact-strip - Blue eyebrow, Pink heading */
        .quick-contact-strip .section-head .eyebrow {
            color: var(--accent);
        }

        .quick-contact-strip .section-head h2 {
            color: var(--primary);
        }

        /* Section 2: branch-section - Pink eyebrow, Blue heading */
        .branch-section .section-head .eyebrow {
            color: var(--primary);
        }

        .branch-section .section-head h2 {
            color: var(--accent);
        }

        /* Section 3: booking-section - Blue eyebrow, Pink heading */
        .booking-section .section-head .eyebrow {
            color: var(--accent);
        }

        .booking-section .section-head h2 {
            color: var(--primary);
        }

        /* Section 4: socials-section - Pink eyebrow, Blue heading */
        .socials-section .section-head .eyebrow {
            color: var(--primary);
        }

        .socials-section .section-head h2 {
            color: var(--accent);
        }

        /* Section 5: faq-section - Blue eyebrow, Pink heading */
        .faq-section .section-head .eyebrow {
            color: var(--accent);
        }

        .faq-section .section-head h2 {
            color: var(--primary);
        }

        /* About page alternating section heading colors */
        .about-intro .section-head .eyebrow {
            color: var(--accent);
        }

        .about-intro .section-head h2 {
            color: var(--primary);
        }

        .mission-section .section-head .eyebrow {
            color: var(--primary);
        }

        .mission-section .section-head h2 {
            color: var(--accent);
        }

        .choose-section h2 {
            color: var(--primary);
        }

        .team-section .section-head .eyebrow {
            color: var(--accent);
        }

        .team-section .section-head h2 {
            color: var(--primary);
        }

        .gallery-section .section-head .eyebrow {
            color: var(--primary);
        }

        .gallery-section .section-head h2 {
            color: var(--accent);
        }

        .final-cta-section .section-head .eyebrow {
            color: var(--accent);
        }

        .final-cta-section .section-head h2 {
            color: var(--primary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(220px, 1fr));
            gap: 24px;
            max-width: 1180px;
            margin: 48px auto 0;
        }

        .info-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 32px;
            min-height: 220px;
            border-radius: 28px;
            border: 1px solid rgba(30, 136, 229, 0.12);
            background: var(--surface);
            box-shadow: 0 28px 70px rgba(30, 136, 229, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .info-card:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 34px 90px rgba(30, 136, 229, 0.1);
        }

        .card-icon {
            width: 76px;
            height: 76px;
            display: grid;
            place-items: center;
            border-radius: 999px;
            color: #ffffff;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-detail {
            margin: 0;
            font-size: 1rem;
            color: var(--text);
            font-weight: 700;
            line-height: 1.7;
            word-break: break-word;
        }

        .blue-icon {
            background: linear-gradient(135deg, var(--contact-primary), var(--contact-primary-soft));
        }

        .pink-icon {
            background: linear-gradient(135deg, var(--contact-secondary), var(--contact-secondary-soft));
        }

        .info-card h3 {
            margin-bottom: 10px;
            color: var(--text);
        }

        .info-card p {
            color: #5e6c86;
            line-height: 1.75;
            margin-bottom: 10px;
        }

        .info-detail {
            color: var(--text);
            font-weight: 700;
            line-height: 1.6;
        }

        .branch-section {
            background: #f7f9ff;
        }

        .branch-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 26px;
            max-width: 1180px;
            margin: 48px auto 0;
        }

        .branch-card {
            display: grid;
            grid-template-rows: auto 1fr;
            border-radius: 32px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(30, 136, 229, 0.12);
            box-shadow: 0 28px 80px rgba(30, 136, 229, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .branch-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 36px 95px rgba(30, 136, 229, 0.12);
        }

        .branch-card-header {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 30px 32px 24px;
        }

        .branch-icon {
            width: 56px;
            height: 56px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--contact-primary), var(--contact-primary-soft));
            color: #ffffff;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .branch-card-header h3 {
            margin: 0 0 8px;
            color: var(--text);
        }

        .branch-card-header p {
            margin: 0;
            color: #5e6c86;
            line-height: 1.75;
        }

        .branch-card-body {
            padding: 0 32px 32px;
            display: grid;
            gap: 18px;
        }

        .branch-card-body p {
            color: #4f5f7e;
            line-height: 1.8;
            margin: 0;
        }

        .branch-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 8px;
        }

        .map-placeholder {
            min-height: 220px;
            border-radius: 28px;
            border: 1px solid rgba(30, 136, 229, 0.1);
            background: linear-gradient(180deg, rgba(30, 136, 229, 0.06), rgba(255, 255, 255, 0.96));
            display: grid;
            place-items: center;
            color: #5c6b88;
            font-weight: 600;
            text-align: center;
            padding: 0;
            overflow: hidden;
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 28px;
        }

        .booking-section {
            background: var(--surface);
            padding: 72px 0 80px;
        }

        .booking-section .section-head {
            max-width: 760px;
            margin: 0 auto 30px;
            text-align: center;
        }

        .booking-section .section-head h2 {
            font-size: clamp(2rem, 3vw, 3rem);
            margin: 14px 0 12px;
            line-height: 1.05;
        }

        .booking-section .section-head .section-copy {
            margin: 0 auto;
            max-width: 620px;
            color: #5a647d;
        }

        .booking-layout {
            display: grid;
            place-items: center;
            max-width: 760px;
            margin: 32px auto 0;
            padding: 0 16px;
        }

        .booking-copy {
            display: none;
        }

        .booking-feature span {
            display: inline-flex;
            padding: 12px 18px;
            border-radius: 999px;
            background: rgba(30, 136, 229, 0.1);
            color: var(--contact-primary);
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            font-size: 0.82rem;
        }

        .booking-feature p,
        .booking-highlight p {
            color: #4f607e;
            line-height: 1.85;
        }

        .booking-highlight h3 {
            font-size: 2rem;
            margin: 0;
            color: var(--text);
            line-height: 1.06;
        }

        .booking-panel {
            width: 100%;
            background: #ffffff;
            border-radius: 16px;
            padding: 28px;
            border: 2px solid rgba(230, 0, 126, 0.3);
            box-shadow: 0 8px 24px rgba(230, 0, 126, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .booking-panel:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(230, 0, 126, 0.12);
        }

        .name-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .multi-step-card {
            display: grid;
            gap: 20px;
        }

        .step-banner {
            border-radius: 16px;
            padding: 20px 22px;
            background: rgba(224, 33, 138, 0.08);
            color: #4f3c5d;
            font-size: 0.98rem;
            line-height: 1.7;
            border: 1px solid rgba(224, 33, 138, 0.16);
        }

        .multi-step-form {
            display: grid;
            gap: 18px;
        }

        .step {
            display: none;
            gap: 16px;
        }

        .step.active {
            display: grid;
        }

        .field-group {
            display: grid;
            gap: 8px;
        }

        .field-group label {
            color: #4a5670;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .input-shell {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 16px;
            min-height: 60px;
            border-radius: 16px;
            border: 1px solid rgba(137, 161, 199, 0.25);
            background: rgba(235, 245, 255, 0.8);
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .input-shell:hover {
            background: rgba(225, 238, 255, 0.92);
        }

        .input-shell:focus-within {
            border-color: rgba(224, 33, 138, 0.5);
            background: rgba(235, 245, 255, 1);
            box-shadow: 0 0 0 6px rgba(224, 33, 138, 0.1);
        }

        .input-shell svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            fill: #6f7c97;
        }

        .input-shell .form-control {
            width: 100%;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--text);
            font-family: inherit;
            font-size: 1rem;
            padding: 0;
            min-height: 54px;
        }

        .input-shell select.form-control {
            appearance: none;
            background-image: none;
        }

        .input-shell .form-control::placeholder {
            color: #9aa5b8;
        }

        .clear-btn {
            border: 0;
            background: transparent;
            color: #5c6b88;
            font-size: 1.15rem;
            cursor: pointer;
            padding: 4px 6px;
            line-height: 1;
            display: none;
        }

        .input-shell.active .clear-btn {
            display: inline-flex;
        }

        .search-shell {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(100% + 6px);
            z-index: 5;
            display: none;
            background: #fff;
            border-radius: 14px;
            border: 1px solid rgba(30,136,229,0.15);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .dropdown-menu.show {
            display: block;
        }

        .dropdown-option {
            width: 100%;
            border: 0;
            background: #fff;
            text-align: left;
            padding: 12px 14px;
            cursor: pointer;
            color: #334155;
        }

        .dropdown-option:hover {
            background: rgba(33,88,255,0.06);
        }

        .step-stepper {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .step-pill {
            width: 34px;
            height: 34px;
            display: inline-grid;
            place-items: center;
            border-radius: 999px;
            background: #f2f6ff;
            color: #5b6b82;
            font-size: 0.88rem;
            font-weight: 700;
            border: 1px solid rgba(137, 161, 199, 0.3);
        }

        .step-pill.active {
            background: var(--contact-primary);
            color: white;
        }

        .form-nav {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            margin-top: 2px;
        }

        .nav-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            text-decoration: none;
            min-height: 48px;
            min-width: 0;
            font-weight: 600;
        }

        .nav-prev {
            border: 1px solid #E0E0E0;
            background: #F4F6F8;
            color: #555555;
            padding: 10px 20px;
            font-weight: 500;
        }

        .nav-next {
            background: #0F52BA;
            color: #ffffff;
            border: none;
            padding: 12px 28px;
            box-shadow: 0 4px 14px rgba(15, 82, 186, 0.3);
        }

        .nav-btn:hover {
            transform: translateY(-1px);
        }

        .hidden {
            display: none;
        }

        .form-actions {
            margin-top: 18px;
            display: flex;
            justify-content: center;
        }

        .booking-section .form-actions .primary-cta {
            width: 100%;
            text-align: center;
            min-width: 0;
            background: #e0218a;
            color: #ffffff;
            border: none;
            box-shadow: 0 14px 30px rgba(224, 33, 138, 0.2);
            padding: 16px 20px;
            border-radius: 999px;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .booking-section .form-actions .primary-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(224, 33, 138, 0.28);
            background: #d11278;
        }

        .form-status {
            margin-top: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            font-size: 0.95rem;
            line-height: 1.5;
            color: #1f2e4a;
            background: #f7f9ff;
            border: 1px solid transparent;
        }

        .form-status.sending {
            color: #0f4273;
            background: rgba(30, 136, 229, 0.12);
            border-color: rgba(30, 136, 229, 0.3);
        }

        .form-status.success {
            color: #1b5e20;
            background: rgba(46, 125, 50, 0.1);
            border-color: rgba(46, 125, 50, 0.2);
        }

        .form-status.error {
            color: #8b1f1f;
            background: rgba(183, 28, 28, 0.1);
            border-color: rgba(183, 28, 28, 0.2);
        }

        .first-visit-hero {
            background-image: none;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .welcome-section {
            padding: 80px 20px 40px;
        }

        .welcome-section .about-us-content {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 36px;
            align-items: center;
            max-width: 1180px;
            margin: 0 auto;
        }

        .welcome-section .about-description {
            display: grid;
            gap: 24px;
        }

        .welcome-section .about-img img {
            border-radius: 32px;
            box-shadow: var(--shadow);
        }

        .save-time-section .booking-layout {
            display: grid;
            grid-template-columns: 1fr 0.95fr;
            gap: 32px;
            max-width: 1180px;
            margin: 48px auto 0;
        }

        .save-time-section .booking-copy {
            display: grid;
            gap: 24px;
            justify-content: center;
        }

        .save-time-section .booking-panel {
            background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
            border: 1px solid rgba(13, 82, 255, 0.12);
            box-shadow: 0 28px 80px rgba(13, 82, 255, 0.08);
            border-radius: 32px;
            padding: 36px;
        }

        .preview-card {
            display: grid;
            gap: 18px;
            padding: 28px;
            border-radius: 28px;
            border: 1px solid rgba(13, 82, 255, 0.10);
            background: #f7f9ff;
        }

        .preview-card-icon {
            width: 56px;
            height: 56px;
            display: grid;
            place-items: center;
            border-radius: 20px;
            background: rgba(33, 88, 255, 0.12);
            color: var(--accent);
            font-size: 1.35rem;
        }

        .preview-card-title {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--text);
        }

        .preview-card-text,
        .document-note {
            color: #5e6c86;
            line-height: 1.8;
            font-size: 0.98rem;
        }

        .anxious-section .nervous-care-image-wrap img {
            width: 100%;
            height: 100%;
            min-height: 320px;
            object-fit: cover;
            display: block;
        }

        .nervous-care-image-wrap {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 22px 60px rgba(13,82,255,0.06);
            background: #ffffff;
        }

        .anxious-caption {
            margin-top: 18px;
            color: #5e6c86;
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 640px;
        }

        .anxious-section .accordion {
            margin-top: 32px;
        }

        .final-cta-section {
            background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
        }

        .socials-section {
            background: #f7f9ff;
        }

        /* Welcome section color tweaks for heading and eyebrow only */
        .welcome-section .section-head .eyebrow {
            color: var(--accent);
        }

        .welcome-section .section-head h2 {
            color: var(--primary);
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            max-width: 980px;
            margin: 48px auto 0;
        }

        .social-card {
            padding: 32px 28px;
            border-radius: 28px;
            background: var(--surface);
            border: 1px solid rgba(30, 136, 229, 0.12);
            box-shadow: 0 24px 70px rgba(30, 136, 229, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .social-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 85px rgba(30, 136, 229, 0.12);
        }

        .social-card-icon {
            width: 68px;
            height: 68px;
            display: grid;
            place-items: center;
            margin-bottom: 22px;
            border-radius: 24px;
            color: #ffffff;
            font-size: 1.6rem;
            background: linear-gradient(135deg, var(--contact-primary), var(--contact-primary-soft));
        }

        .instagram-card .social-card-icon {
            background: linear-gradient(135deg, var(--contact-secondary), var(--contact-secondary-soft));
        }

        .facebook-card .social-card-icon {
            background: linear-gradient(135deg, #1877f2, #4a86ff);
        }

        .social-card h3 {
            margin: 0 0 14px;
            color: var(--text);
        }

        .social-card p {
            margin: 0 0 18px;
            color: #5e6c86;
            line-height: 1.85;
        }

        .social-card a {
            color: var(--contact-primary);
            font-weight: 700;
            text-decoration: none;
        }

        .faq-section {
            background: var(--surface);
        }

        .accordion {
            max-width: 980px;
            margin: 48px auto 0;
            display: grid;
            gap: 18px;
        }

        .accordion-item {
            border-radius: 28px;
            background: var(--surface);
            border: 1px solid rgba(30, 136, 229, 0.12);
            box-shadow: 0 24px 70px rgba(30, 136, 229, 0.07);
            overflow: hidden;
        }

        .accordion-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 24px 28px;
            border: none;
            background: transparent;
            cursor: pointer;
            color: var(--text);
            text-align: left;
            transition: background 0.25s ease;
        }

        .accordion-trigger:hover {
            background: rgba(30, 136, 229, 0.04);
        }

        .accordion-title {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
        }

        .accordion-icon {
            width: 46px;
            min-width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: rgba(30, 136, 229, 0.12);
            color: var(--contact-primary);
            font-size: 1.1rem;
        }

        .accordion-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(30, 136, 229, 0.08);
            color: var(--contact-primary);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .accordion-trigger[aria-expanded="true"] .accordion-arrow {
            transform: rotate(180deg);
            background: rgba(30, 136, 229, 0.16);
        }

        .accordion-panel {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.35s ease, opacity 0.35s ease;
        }

        /* Service page specific override to ensure thumbnails and header text sit side-by-side */
        .services-overview .accordion-trigger {
            display: grid !important;
            grid-template-columns: auto 56px !important;
            gap: 0 !important;
            align-items: center !important;
            text-align: left !important;
        }

        .services-overview .accordion-header-row {
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
        }

        .services-overview .accordion-title {
            color: var(--accent) !important;
        }

        .services-overview .accordion-header-text {
            justify-content: center !important;
            align-items: flex-start !important;
            text-align: left !important;
        }

        .accordion-panel.active {
            opacity: 1;
        }

        .panel-content {
            padding: 0 28px 26px;
            color: #5e6c86;
            line-height: 1.9;
        }

        .final-cta-section {
            background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
        }

        .final-cta-panel {
            max-width: 1080px;
            margin: 48px auto 0;
            padding: 54px 40px;
            border-radius: 32px;
            background: var(--surface);
            border: 1px solid rgba(30, 136, 229, 0.12);
            box-shadow: 0 32px 100px rgba(30, 136, 229, 0.08);
            display: grid;
            gap: 24px;
            text-align: center;
        }

        .final-cta-panel h2 {
            margin: 0;
            color: var(--contact-primary);
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            line-height: 1.05;
        }

        .final-cta-panel p {
            margin: 0 auto;
            max-width: 760px;
            color: #4f607e;
            line-height: 1.9;
        }

        .final-cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .footer-placeholder {
            padding: 72px 20px 40px;
            background: #0f2a65;
            color: #f7f8ff;
        }

        .footer-placeholder .footer-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, minmax(220px, 1fr));
            gap: 32px;
        }

        .footer-placeholder h3 {
            margin-bottom: 18px;
            color: #ffffff;
        }

        .footer-placeholder p,
        .footer-placeholder a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.85;
        }

        .footer-placeholder .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-placeholder .footer-links li {
            margin-bottom: 14px;
        }

        .whatsapp-float {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 999;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            border-radius: 999px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 26px 70px rgba(9, 53, 94, 0.18);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .whatsapp-float:hover {
            transform: translateY(-2px);
            box-shadow: 0 30px 80px rgba(9, 53, 94, 0.24);
        }

        .whatsapp-float .fab {
            font-size: 1.2rem;
        }

        @media (max-width: 1080px) {
            .contact-grid,
            .branch-grid,
            .booking-layout,
            .social-grid {
                grid-template-columns: 1fr;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .booking-panel {
                padding: 28px;
            }

            .contact-hero {
                padding-top: 120px;
            }
        }

        @media (max-width: 780px) {
            header {
                padding: 14px 22px;
            }

            .contact-hero {
                padding: 110px 18px 60px;
            }

            .contact-hero .heading {
                font-size: clamp(2.5rem, 8vw, 3.4rem);
            }

            .branch-card-header,
            .branch-card-body,
            .info-card,
            .booking-panel,
            .social-card {
                padding: 24px;
            }

            .section-head {
                padding: 0 8px;
            }

            .footer-placeholder .footer-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                right: 16px;
                bottom: 16px;
            }
        }

        @media (max-width: 600px) {
            .booking-panel {
                padding: 16px;
            }

            .name-row {
                grid-template-columns: 1fr;
            }

            .input-shell {
                padding: 0 12px;
                min-height: 48px;
            }

            .form-actions {
                flex-direction: column;
                gap: 12px;
            }

            .form-nav {
                flex-direction: row;
                justify-content: space-between;
                gap: 12px;
            }

            .form-actions .primary-cta {
                width: 100%;
                min-width: auto;
            }

            .nav-btn {
                width: 48px;
                min-width: 48px;
                height: 48px;
                padding: 0;
                font-size: 0;
                line-height: 0;
                overflow: hidden;
                position: relative;
                border-radius: 50%;
            }

            .nav-prev::before,
            .nav-next::after {
                position: absolute;
                inset: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                line-height: 1;
                text-indent: 0;
            }

            .nav-prev::before {
                content: '←';
            }

            .nav-next::after {
                content: '→';
            }
        }

        /* Tweak rating color where available */
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-rating,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-widget__rating {
            color: var(--primary) !important;
            filter: drop-shadow(0 6px 16px rgba(224,33,138,0.08));
        }

        /* Ensure prev/next controls remain visible and on-brand */
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-carousel__prev,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-carousel__next,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .ew-button--prev,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .ew-button--next,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-arrow,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 button.elfsight-nav {
            position: absolute !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            z-index: 9999 !important;
            width: 44px !important;
            height: 44px !important;
            border-radius: 50% !important;
        }

        /* Gallery hero: reduced overlay so background image is more visible and floating badge */
        .gallery-hero {
            position: relative;
            padding: 100px 20px;
            color: #ffffff;
            background: linear-gradient(rgba(3,10,24,0.12), rgba(3,10,24,0.04)), url('assets/gallery-hero-unsplash.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 420px;
            box-sizing: border-box;
        }

        .gallery-hero::before {
            /* subtle vignette to keep text readable without hiding image */
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.06), transparent 40%);
            pointer-events: none;
        }

        .gallery-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1180px;
            text-align: center;
        }

        .gallery-hero p,
        .gallery-hero .gallery-hero-eyebrow {
            color: rgba(255,255,255,0.95);
        }

        .gallery-hero-badge {
            position: absolute;
            top: 22px;
            right: 22px;
            z-index: 6;
            background: rgba(255,255,255,0.98);
            color: #0F52BA;
            padding: 8px 14px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 0.95rem;
            box-shadow: 0 8px 24px rgba(15,82,186,0.12);
            transform-origin: center;
            animation: badgeFloat 4s ease-in-out infinite, badgeFadeIn 0.6s ease both;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .gallery-hero-badge::before {
            content: '\f0c0'; /* FontAwesome user-friends icon */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 6px;
            color: #ff4fa3;
            font-size: 0.95rem;
        }

        @keyframes badgeFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0); }
        }

        @keyframes badgeFadeIn {
            from { opacity: 0; transform: translateY(8px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @media (max-width: 780px) {
            .gallery-hero {
                padding: 80px 18px;
                min-height: 360px;
                background: linear-gradient(rgba(3,10,24,0.16), rgba(3,10,24,0.06)), url('assets/gallery-hero-unsplash.jpg') center/cover no-repeat;
            }

            .gallery-hero-badge {
                top: 14px;
                right: 14px;
                font-size: 0.9rem;
                padding: 8px 12px;
            }
        }

        @media (max-width: 420px) {
            .gallery-hero-badge {
                top: 12px;
                right: 12px;
                font-size: 0.85rem;
                padding: 7px 10px;
            }
        }
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-carousel__prev,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .ew-button--prev {
            left: 12px !important;
        }

        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-carousel__next,
        .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .ew-button--next {
            right: 12px !important;
        }

        @media (max-width: 880px) {
            .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-carousel__prev,
            .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .es-carousel__next,
            .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .ew-button--prev,
            .elfsight-app-62bc702d-8211-47ab-afaf-319d25600f49 .ew-button--next {
                width: 40px !important;
                height: 40px !important;
                left: 8px !important;
                right: 8px !important;
            }
        }

/* Mobile navigation: show hamburger, collapse nav into dropdown overlay */
@media (max-width: 880px) {
    .menu-toggle {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 12px;
        padding: 8px;
        min-width: 48px;
        min-height: 48px;
        justify-content: center;
        align-items: center;
    }

    /* Collapse main nav into a vertical panel when closed, and reveal when header.open */
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid rgba(13,82,255,0.06);
        transform: translateY(-6px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
        z-index: 1002;
        flex-direction: column;
        gap: 12px;
        padding: 18px;
        display: flex;
        align-items: stretch;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }

    header.open .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 1002;
    }

    .main-nav .nav-ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 8px 0;
    }

    .nav-ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-nav .book-btn {
        align-self: stretch;
        text-align: center;
        width: 100%;
        padding: 12px 16px;
        margin-top: 6px;
    }

    /* Make dropdown menus act like accordion panels on mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none !important;
        padding-left: 12px;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .dropdown.open > .dropdown-menu,
    .dropdown-trigger[aria-expanded="true"] + .dropdown-menu {
        display: block !important;
    }

    header {
        padding: 12px 18px;
    }

    .logo {
        width: 140px;
    }

    .hero-section {
        /* ensure hero content doesn't hide under fixed nav when opened */
        padding-top: calc(var(--header-h) + 20px);
        margin-top: 0;
    }

    /* When menu open, prevent body scrolling so overlay feels native */
    body.header-open-lock {
        overflow: hidden;
    }
}

        .contact-section {
            padding: 90px 20px 50px;
            background: #f4f8ff;
        }

        .contact-section .section-content {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 34px;
            align-items: stretch;
        }

        .contact-info,
        .contact-form {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 28px;
            padding: 42px 34px;
            border: 1px solid rgba(13, 82, 255, 0.08);
            box-shadow: var(--shadow);
        }

        .contact-info h2 {
            color: var(--primary);
            margin-bottom: 16px;
        }

        .contact-info p {
            color: #4a5c7b;
            margin-bottom: 28px;
        }

        .contact-details {
            display: grid;
            gap: 18px;
        }

        .contact-card {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 18px 20px;
            border-radius: 24px;
            border: 1px solid rgba(13, 82, 255, 0.14);
            background: #f6f8ff;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            text-decoration: none; /* remove link underline */
            color: inherit; /* ensure children inherit readable colors */
        }

        .contact-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 55px rgba(13, 82, 255, 0.16);
            border-color: rgba(13, 82, 255, 0.22);
        }

        .contact-icon {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--accent), var(--accent-soft));
            color: #ffffff;
            font-size: 1.15rem;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(33, 88, 255, 0.12);
        }

        .contact-card h3 {
            margin: 0 0 6px;
            font-size: 0.96rem;
            color: var(--accent);
        }

        .contact-card p {
            margin: 0;
            color: #20325a;
            line-height: 1.75;
            font-size: 0.96rem;
        }

        .contact-form .field-group {
            margin-bottom: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 10px;
            color: #4a5c7b;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            border: 1px solid rgba(13, 82, 255, 0.12);
            background: #f3f6ff;
            border-radius: 20px;
            padding: 16px 18px;
            font-size: 0.975rem;
            color: var(--text);
            transition: all 0.25s ease;
            resize: vertical;
        }

        
        input[type="date"],
        input[type="time"]{
                width: 100%;
                max-width: 100%;
                box-sizing:border-box;
                -webkit-appearance: none;
                appearance: none;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: rgba(224, 33, 138, 0.5);
            box-shadow: 0 0 0 4px rgba(224, 33, 138, 0.1);
            background: #ffffff;
        }

        .contact-form textarea {
            min-height: 180px;
        }

        .contact-form button {
            margin-top: 10px;
            width: 100%;
            border: none;
            color: var(--surface);
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            padding: 16px 0;
            border-radius: 999px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 40px rgba(13, 82, 255, 0.18);
        }

        .footer {
            background: var(--accent);
            color: #ffffff;
            padding: 60px 20px 32px;
        }

        .footer-grid {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            justify-items: center;
            gap: 26px;
            text-align: center;
        }

        .footer h3 {
            margin-bottom: 20px;
            color: var(--surface);
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .footer-links,
        .social-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            align-items: center;
            margin: 0;
        }

        .footer-links li {
            margin: 0;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.18s ease;
            opacity: 0.95;
        }

        .footer-links a:hover {
            color: var(--primary);
            opacity: 1;
        }

        .social-list {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .social-link {
            display: grid;
            place-items: center;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            transform: translateY(-2px);
            color: #ffffff;
        }

        .social-label {
            position: absolute;
            bottom: -34px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            visibility: hidden;
            padding: 6px 12px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.85);
            color: #fff;
            font-size: 0.82rem;
            white-space: nowrap;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .social-list li:hover .social-label {
            opacity: 1;
            visibility: visible;
        }

        .footer-bottom {
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.95rem;
        }

        @media (max-width: 1080px) {
            .about-us-content {
                grid-template-columns: 1fr;
            }

            .service-slider {
                grid-template-columns: repeat(2, minmax(260px, 1fr));
            }

            .choose-grid {
                grid-template-columns: repeat(2, minmax(220px, 1fr));
            }

            .intro-grid,
            .mission-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .gallery-frame {
                min-height: 364px;
                width: 100%;
            }

            .gallery-shell {
                width: 100%;
                max-width: 100%;
                padding-inline: 0;
                margin-inline: auto;
                box-sizing: border-box;
            }

            .gallery-track {
                width: 100%;
                min-width: 100%;
            }

            .gallery-slide {
                min-width: 100%;
            }

            .gallery-actions {
                justify-content: center;
            }

            .nervous-care-shell {
                grid-template-columns: 1fr;
            }

            .nervous-care-image-wrap {
                min-height: 340px;
            }

            .contact-section .section-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 880px) {
            header {
                padding: 18px 22px;
            }

            .menu-toggle {
                display: flex;
                background: rgba(255, 255, 255, 0.85);
                border-radius: 12px;
                padding: 8px;
                min-width: 48px;
                min-height: 48px;
                justify-content: center;
                align-items: center;
            }

            .main-nav {
                position: absolute;
                top: calc(100% + 10px);
                left: 18px;
                right: 18px;
                display: flex;
                flex-direction: column;
                gap: 18px;
                padding: 24px;
                background: #ffffff;
                border-radius: 24px;
                transform: translateY(-10px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                box-shadow: 0 30px 90px rgba(13, 82, 255, 0.16);
                transition: all 0.25s ease;
                z-index: 9999;
            }

            header.open .main-nav {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .nav-ul {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
            }

            .main-nav .dropdown > .dropdown-menu {
                display: block;
                position: static;
                transform: none;
                box-shadow: none;
                min-width: auto;
                width: 100%;
                padding: 0;
                margin-top: 0;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
                border: 0;
                background: rgba(255, 255, 255, 0.98);
            }

            .main-nav .dropdown.open > .dropdown-menu {
                max-height: 1000px;
                padding: 8px 6px;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                background: rgba(255, 255, 255, 0.98);
                width: 100%;
                border-radius: 12px;
            }

            /* Arrow rotation for open state */
            .dropdown-trigger .dropdown-arrow {
                transition: transform 0.25s ease;
                display: inline-block;
            }

            .dropdown.open .dropdown-trigger .dropdown-arrow {
                transform: rotate(180deg);
            }

            .dropdown-menu a {
                padding-left: 24px;
            }

            .book-btn {
                width: 100%;
            }

            .hero-section {
                padding-top: 120px;
            }

            .hero-ctas {
                width: 100%;
                flex-direction: column;
                align-items: center;
            }

            .hero-ctas .primary-cta,
            .hero-ctas .secondary-cta {
                width: 100%;
                max-width: 100%;
            }

            .hero-ctas .primary-cta {
                justify-content: center;
            }

            .hero-ctas .secondary-cta {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            header {
                padding: 16px 18px;
            }

            .logo {
                width: 150px;
            }

            .hero-section {
                padding: 120px 18px 60px;
            }

            .heading {
                font-size: clamp(2.6rem, 10vw, 3.8rem);
                line-height: 1.08;
            }

            .subheading {
                font-size: 1rem;
                line-height: 1.85;
            }

            .about-us {
                padding: 60px 18px;
            }

            .about-img img {
                min-height: 320px;
            }

            .service-slider {
                grid-template-columns: 1fr;
            }

            .choose-grid {
                grid-template-columns: 1fr;
            }

            .gallery-frame {
                min-height: 358px;
                width: 100%;
            }

            .gallery-shell {
                width: 100%;
                max-width: 100%;
                padding-inline: 0;
                margin-inline: auto;
                box-sizing: border-box;
            }

            .gallery-track {
                width: 100%;
                min-width: 100%;
            }

            .gallery-slide {
                min-width: 100%;
            }

            .gallery-section .section-head {
                padding-inline: 16px;
            }

            .gallery-section .section-head h2 {
                font-size: clamp(2rem, 6vw, 2.6rem);
                line-height: 1.3;
                margin-bottom: 24px;
            }

            .gallery-prev,
            .gallery-next {
                width: 48px;
                height: 48px;
                font-size: 0.9rem;
            }

            .reviews-section {
                padding: 70px 18px;
            }

            .contact-section {
                padding: 20px;
            }

            .contact-section .section-content {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .contact-info,
            .contact-form {
                width: 100%;
                padding: 28px 20px;
            }

            .contact-card {
                width: 100% !important;
                overflow-x: hidden;
            }

            .nervous-care-section {
                padding: 60px 18px;
            }

            .nervous-care-copy {
                padding: 32px 24px;
            }

            .nervous-care-features {
                gap: 14px;
            }

            .nervous-care-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 18px 18px;
            }

            .nervous-care-item-icon {
                width: 42px;
                height: 42px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .customer-hero{
            display: flex;
            flex-direction: column;
            min-height: calc(70vh - var(--header-h));
            align-items: center;
            justify-content: center;
            gap: 32px;
            padding: 80px 24px;
            margin-top: var(--header-h);
            text-align: center;
            position: relative;
            overflow: hidden;
            background: url('assets/ilupeju-branch-images/branch-img4.jpg') center/cover no-repeat;
        }

        .contact-hero.hero-compact {
            background: url('assets/ilupeju-branch-images/branch-img4.jpg') center/cover no-repeat;
            min-height: calc(70vh - var(--header-h));
        }

        
        .customer-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            pointer-events: none;
            z-index: 0;
        }

        .customer-hero > * {
            position: relative;
            z-index: 1;
        }


        .customer-hero > * {
            position: relative;
            z-index: 1;
        }

        .customer-eyebrow{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--primary-soft);
            margin-bottom: 12px;
        }

        .customer-heading{
            font-size: clamp(2rem, 6vw, 3.6rem);
            line-height: 1.15;
            text-align: center;
            color: var(--primary);
            font-weight: 700;
        }

        .customer-hero-cta{
            display: flex;
            gap: 16px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .customer-hero-cta a{
            min-width: 200px;
            padding: 14px 28px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .customer-hero {
                min-height: auto;
                padding: 60px 20px;
                gap: 24px;
            }

            .customer-heading {
                font-size: clamp(1.5rem, 5vw, 2.5rem);
            }

            .customer-hero-cta a {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .customer-hero {
                padding: 48px 16px;
                gap: 20px;
            }

            .customer-heading {
                font-size: 1.4rem;
            }

            .customer-eyebrow {
                font-size: 0.75rem;
            }
        }

        .expectation {
            padding: 80px 20px;
            background: linear-gradient(135deg, #fff6fb 0%, #eef5ff 100%);
        }

        .expectation-section-head {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .expectation-eyebrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--primary-soft);
            margin-bottom: 18px;
        }

        .expectation h2 {
            text-align: center;
            font-size: clamp(2rem, 5vw, 2.8rem);
            color: var(--primary);
            margin-bottom: 18px;
            line-height: 1.2;
            font-weight: 700;
        }

        .expectation-intro {
            text-align: center;
            line-height: 1.8;
            margin: 0;
            color: var(--muted);
            font-size: 1rem;
        }

        .expectation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .expectation-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 28px 80px rgba(13, 82, 255, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .expectation-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 40px 100px rgba(13, 82, 255, 0.12);
            border-color: var(--accent-soft);
        }

        .expectation-card > img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            object-position: center;
            background: #edf3ff;
        }

        .expectation-card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            background: linear-gradient(135deg, rgba(33, 88, 255, 0.08), rgba(224, 33, 138, 0.06));
            padding: 20px;
            transition: all 0.3s ease;
        }

        .expectation-card:hover .expectation-card-icon {
            background: linear-gradient(135deg, rgba(33, 88, 255, 0.12), rgba(224, 33, 138, 0.1));
        }

        .expectation-card-icon i {
            font-size: 48px;
            color: var(--accent);
        }

        .expectation-texts {
            padding: 28px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .expectation-texts h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .expectation-texts p {
            line-height: 1.8;
            color: var(--muted);
            font-size: 0.95rem;
            margin: 0;
            flex: 1;
        }

        /* Mobile Responsive for Expectation Section */
        @media (max-width: 768px) {
            .expectation {
                padding: 60px 20px;
            }

            .expectation-section-head {
                margin-bottom: 40px;
            }

            .expectation h2 {
                font-size: clamp(1.5rem, 5vw, 2.2rem);
            }

            .expectation-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .expectation {
                padding: 48px 16px;
            }

            .expectation-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .expectation-texts {
                padding: 20px 16px;
            }

            .expectation-texts h3 {
                font-size: 1.1rem;
            }
        }

        /* New Patient Registration Section */
        .new-patient-registration {
            padding: 80px 20px;
            background: #F7F9FF !important;
            background-color: #F7F9FF !important;
            background-image: none !important;
        }


        .new-patient-registration-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: stretch;
        }

        /* Left Column */
        .new-patient-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .new-patient-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--primary-soft);
            margin-bottom: 18px;
            width: fit-content;
        }

        .new-patient-heading {
            font-size: clamp(2rem, 4vw, 2.8rem);
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 24px;
            font-weight: 700;
        }

        .new-patient-description {
            color: var(--muted);
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 520px;
        }

        .new-patient-steps {
            list-style: none;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .new-patient-steps li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            color: var(--text);
            font-size: 1rem;
            line-height: 1.6;
        }

        .new-patient-steps li::before {
            content: attr(data-number);
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            color: var(--surface);
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .new-patient-steps li:nth-child(1)::before {
            content: '1';
        }

        .new-patient-steps li:nth-child(2)::before {
            content: '2';
        }

        .new-patient-steps li:nth-child(3)::before {
            content: '3';
        }

        .new-patient-cta-btn {
            align-self: flex-start;
            min-width: 220px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            color: var(--surface);
            border: none;
            border-radius: 999px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 18px 50px rgba(224, 33, 138, 0.22);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
        }

        .new-patient-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 60px rgba(224, 33, 138, 0.3);
            background: linear-gradient(135deg, #d61a79, #f55aaa);
        }

        .new-patient-cta-btn:active {
            transform: translateY(-1px);
        }

        .new-patient-cta-btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Right Column - PDF Card */
        .new-patient-pdf-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 28px 80px rgba(13, 82, 255, 0.12);
            transition: all 0.3s ease;
            height: 100%;
            min-height: 450px;
        }

        .new-patient-pdf-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 40px 100px rgba(13, 82, 255, 0.16);
            border-color: var(--accent-soft);
        }

        .new-patient-pdf-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(33, 88, 255, 0.1), rgba(224, 33, 138, 0.08));
            border-radius: 20px;
            margin-bottom: 32px;
            transition: all 0.3s ease;
        }

        .new-patient-pdf-card:hover .new-patient-pdf-icon-wrapper {
            background: linear-gradient(135deg, rgba(33, 88, 255, 0.15), rgba(224, 33, 138, 0.12));
            transform: scale(1.08);
        }

        .new-patient-pdf-icon {
            font-size: 56px;
            color: var(--accent);
        }

        .new-patient-pdf-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .new-patient-pdf-description {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 28px;
            max-width: 380px;
        }

        .new-patient-pdf-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(33, 88, 255, 0.1);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 32px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .new-patient-pdf-badge::before {
            content: '📄';
            font-size: 1rem;
        }

        .new-patient-pdf-download-btn {
            width: 100%;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--accent), var(--accent-soft));
            color: var(--surface);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 12px 36px rgba(33, 88, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
        }

        .new-patient-pdf-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 48px rgba(33, 88, 255, 0.3);
            background: linear-gradient(135deg, #1a4dcc, #6aabff);
        }

        .new-patient-pdf-download-btn:active {
            transform: translateY(0);
        }

        .new-patient-pdf-download-btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .new-patient-registration {
                padding: 60px 20px;
            }

            .new-patient-registration-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .new-patient-left {
                order: 1;
            }

            .new-patient-pdf-card {
                order: 2;
                min-height: 400px;
            }

            .new-patient-heading {
                font-size: clamp(1.6rem, 5vw, 2.2rem);
            }

            .new-patient-cta-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .new-patient-registration {
                padding: 48px 16px;
            }

            .new-patient-registration-container {
                gap: 32px;
            }

            .new-patient-heading {
                font-size: 1.5rem;
            }

            .new-patient-pdf-card {
                padding: 28px 20px;
                min-height: 360px;
            }

            .new-patient-pdf-icon-wrapper {
                width: 100px;
                height: 100px;
                margin-bottom: 24px;
            }

            .new-patient-pdf-icon {
                font-size: 48px;
            }

            .new-patient-pdf-title {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }

            .new-patient-steps {
                margin-bottom: 28px;
                gap: 12px;
            }

            .new-patient-steps li {
                font-size: 0.95rem;
                gap: 12px;
            }

            .new-patient-steps li::before {
                min-width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
        }


        .gallery-hero {
            min-height: 78vh;
            padding: 120px 24px 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(13, 82, 255, 0.92), rgba(224, 33, 138, 0.88)),
                url('assets/gallery-hero-unsplash.jpg') center/cover no-repeat;
            color: #fff;
        }

        .gallery-hero-content {
            max-width: 760px;
            text-align: center;
        }

        .gallery-hero-eyebrow {
            font-size: 0.84rem;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 20px;
        }

        .gallery-hero-title {
            font-size: clamp(2.3rem, 5vw, 4rem);
            line-height: 1.05;
            margin-bottom: 18px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .gallery-hero-word {
            display: none;
        }

        .gallery-hero-word.active {
            display: block;
            animation: fadeIn 0.6s ease both;
        }

        .gallery-hero p {
            font-size: 1.02rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            margin: 0 auto;
            max-width: 640px;
        }

        .gallery-hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
        }

        .gallery-hero .primary-cta,
        .gallery-hero .secondary-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: 700;
            padding: 13px 24px;
            border-radius: 999px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .gallery-hero .primary-cta {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            box-shadow: 0 16px 40px rgba(13, 82, 255, 0.24);
        }

        .gallery-hero .secondary-cta {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(8px);
        }

        .gallery-hero .primary-cta:hover,
        .gallery-hero .secondary-cta:hover {
            transform: translateY(-2px);
        }

        .gallery-collection {
            padding: 72px 24px 64px;
            background: linear-gradient(180deg, #f8fbff 0%, #f3f6ff 100%);
        }

        .gallery-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .gallery-filter {
            border: 1px solid rgba(13, 82, 255, 0.16);
            background: #fff;
            color: var(--text);
            padding: 10px 16px;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .gallery-filter:hover,
        .gallery-filter:focus-visible {
            border-color: var(--primary);
            color: var(--primary);
            outline: none;
        }

        .gallery-filter.active {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 12px 32px rgba(13, 82, 255, 0.16);
        }

        .practice-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-card {
            position: relative;
            min-height: 320px;
            overflow: hidden;
            border-radius: 24px;
            background: #fff;
            box-shadow: 0 22px 54px rgba(13, 82, 255, 0.08);
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .gallery-card:hover,
        .gallery-card:focus-within {
            transform: translateY(-4px);
            box-shadow: 0 26px 70px rgba(13, 82, 255, 0.14);
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .gallery-card:hover img,
        .gallery-card:focus-within img {
            transform: scale(1.04);
        }

        .gallery-card-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.92);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .gallery-card-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            background: linear-gradient(180deg, rgba(8, 20, 50, 0.05) 0%, rgba(8, 20, 50, 0.7) 100%);
            color: #fff;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .gallery-card:hover .gallery-card-overlay,
        .gallery-card:focus-within .gallery-card-overlay {
            opacity: 1;
        }

        .gallery-card-detail {
            max-width: 100%;
        }

        .gallery-card-detail h3 {
            font-size: 1.05rem;
            margin: 0 0 8px;
        }

        .gallery-card-detail p {
            margin: 0;
            font-size: 0.92rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
        }

        .gallery-card-icon {
            position: absolute;
            right: 18px;
            bottom: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(6px);
            color: #fff;
        }

        .gallery-card-icon svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .gallery-card.is-hidden {
            display: none;
        }

        .whatsapp-gallery-strip {
            padding: 64px 24px 80px;
            background: #fff;
        }

        .whatsapp-gallery-strip__header {
            max-width: 1160px;
            margin: 0 auto 28px;
        }

        .whatsapp-gallery-strip h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            margin: 0;
            color: var(--primary);
        }

        .whatsapp-gallery-scroll {
            overflow-x: hidden;
            padding-bottom: 8px;
        }

        .whatsapp-gallery-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(220px, 1fr);
            gap: 16px;
            max-width: 1160px;
            margin: 0 auto;
        }

        .whatsapp-gallery-track img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: 0 18px 42px rgba(13, 82, 255, 0.12);
        }

        .gallery-lightbox {
            position: fixed;
            inset: 0;
            display: grid;
            place-items: center;
            padding: 24px;
            background: rgba(8, 20, 50, 0.84);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .gallery-lightbox.open {
            opacity: 1;
            pointer-events: auto;
        }

        .gallery-lightbox-inner {
            width: min(100%, 900px);
            display: grid;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.96);
            border-radius: 28px;
            box-shadow: 0 30px 90px rgba(8, 20, 50, 0.3);
        }

        .gallery-lightbox-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .gallery-lightbox-nav,
        .gallery-lightbox-close {
            border: none;
            background: var(--primary);
            color: #fff;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .gallery-lightbox-counter {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary);
        }

        .gallery-lightbox img {
            width: 100%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 18px;
            background: #f7f9ff;
        }

        .gallery-lightbox-caption {
            font-weight: 600;
            color: var(--text);
        }

        @media (max-width: 768px) {
            .gallery-hero {
                min-height: auto;
                padding: 100px 20px 72px;
            }

            .gallery-hero .primary-cta,
            .gallery-hero .secondary-cta {
                width: 100%;
            }

            .gallery-collection {
                padding: 56px 20px 48px;
            }

            .practice-gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 18px;
            }

            .whatsapp-gallery-strip {
                padding: 48px 20px 60px;
            }
        }

        /* Google review marquee */
        .reviews-section {
            position: relative;
            max-width: none;
            margin: 72px 0 0;
            padding: 82px 0 76px;
            overflow: hidden;
            border-radius: 0;
            background:
                radial-gradient(circle at 10% 0%, rgba(33, 88, 255, 0.09), transparent 31rem),
                radial-gradient(circle at 90% 100%, rgba(224, 33, 138, 0.10), transparent 30rem),
                #f8faff;
        }

        .review-section-heading {
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 0 auto 42px;
            padding: 0 24px;
        }

        .reviews-label {
            height: 38px;
            margin-bottom: 14px;
            padding: 0 15px;
            background: rgba(33, 88, 255, 0.1);
            color: var(--accent);
            font-size: 0.76rem;
        }

        .review-section-heading h2 {
            margin-bottom: 16px;
            color: var(--text);
        }

        .review-section-heading .reviews-intro {
            font-size: 1rem;
        }

        .reviews-statement {
            display: grid;
            justify-items: center;
            gap: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.08 !important;
        }

        .reviews-statement > span {
            color: var(--accent);
            font-size: clamp(0.78rem, 1.45vw, 1.05rem);
            font-weight: 500;
            letter-spacing: 0.3em;
            line-height: 1.25;
            text-transform: uppercase;
        }

        .reviews-statement strong {
            display: inline-block;
            padding: 0;
            border: 0;
            background: none;
            color: var(--text);
            font-size: clamp(2rem, 4.2vw, 4rem);
            font-weight: 700;
            letter-spacing: -0.045em;
        }

        .review-carousel {
            display: grid;
            width: 100%;
            max-width: none;
            gap: 18px;
            margin: 0;
            overflow: hidden;
            border-radius: 0;
        }

        .review-carousel::before,
        .review-carousel::after {
            position: absolute;
            z-index: 2;
            top: 0;
            bottom: 0;
            width: min(11vw, 150px);
            content: '';
            pointer-events: none;
        }

        .review-carousel::before {
            left: 0;
            background: linear-gradient(90deg, #f8faff 8%, rgba(248, 250, 255, 0));
        }

        .review-carousel::after {
            right: 0;
            background: linear-gradient(270deg, #f8faff 8%, rgba(248, 250, 255, 0));
        }

        .review-marquee-row {
            width: 100%;
            overflow: hidden;
        }

        .review-marquee-track {
            display: flex;
            width: max-content;
            gap: 18px;
            padding: 2px 0 8px;
            animation: reviews-scroll-left 52s linear infinite;
            will-change: transform;
        }

        .review-marquee-row--reverse .review-marquee-track {
            animation-name: reviews-scroll-right;
            animation-duration: 60s;
        }

        .review-carousel:hover .review-marquee-track {
            animation-play-state: paused;
        }

        @keyframes reviews-scroll-left {
            from { transform: translate3d(0, 0, 0); }
            to { transform: translate3d(calc(-50% - 9px), 0, 0); }
        }

        @keyframes reviews-scroll-right {
            from { transform: translate3d(calc(-50% - 9px), 0, 0); }
            to { transform: translate3d(0, 0, 0); }
        }

        .review-card {
            display: flex;
            flex: 0 0 360px;
            flex-direction: column;
            min-height: 250px;
            box-sizing: border-box;
            gap: 12px;
            padding: 28px 28px 24px;
            overflow: hidden;
            border: 1px solid rgba(33, 88, 255, 0.12);
            border-radius: 16px;
            background: rgba(248, 250, 255, 0.94);
            box-shadow: 0 10px 26px rgba(18, 45, 99, 0.055);
        }

        .review-card::before {
            display: block !important;
            content: '“';
            height: 35px;
            color: var(--accent);
            font-family: Georgia, serif;
            font-size: 4.8rem;
            font-weight: 700;
            line-height: 0.75;
        }

        .review-card:nth-child(even)::before {
            color: var(--primary);
        }

        .review-card-header {
            align-items: center;
            justify-content: space-between;
            min-height: 30px;
        }

        .review-quote-icon {
            display: block;
            color: var(--primary);
            font-size: 0;
            line-height: 1;
            opacity: 1;
        }

        .review-quote-icon::after {
            content: '“';
            font-family: Georgia, serif;
            font-size: 4.3rem;
            font-weight: 700;
            line-height: 0.55;
        }

        .review-card:nth-child(even) .review-quote-icon {
            color: var(--accent);
        }

        .review-stars {
            color: var(--primary);
            font-size: 0.8rem;
            letter-spacing: 1.5px;
        }

        .review-card-quote {
            display: -webkit-box;
            margin: 0;
            overflow: hidden;
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.58;
            letter-spacing: 0;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
        }

        .review-card-footer {
            margin-top: auto;
            padding-top: 0;
            border-top: 0;
        }

        .review-avatar {
            width: 42px;
            height: 42px;
            box-shadow: none;
        }

        .review-card:nth-child(odd) .review-avatar {
            background: linear-gradient(135deg, var(--accent), var(--accent-soft)) !important;
        }

        .review-card:nth-child(even) .review-avatar {
            background: linear-gradient(135deg, var(--primary), var(--primary-soft)) !important;
        }

        .review-card-author {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
            font-size: 0.94rem;
            font-weight: 800;
        }

        .review-card-author::before {
            display: inline-flex;
            width: 34px;
            height: 34px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, #b9d9ff, #f7b6d8);
            color: #1b376f;
            content: '✦';
            font-size: 0.85rem;
        }

        .review-card-meta {
            margin-top: -10px;
            padding-left: 44px;
            color: var(--muted);
            font-size: 0.78rem;
        }

        .review-actions {
            position: relative;
            z-index: 1;
            margin: 36px auto 0;
        }

        .view-reviews-btn {
            padding: 13px 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            box-shadow: 0 16px 38px rgba(224, 33, 138, 0.18);
        }

        .view-reviews-btn:hover {
            background: linear-gradient(135deg, #cf1d7f, var(--primary));
            box-shadow: 0 18px 42px rgba(224, 33, 138, 0.27);
        }

        @media (max-width: 760px) {
            .reviews-section {
                margin-top: 54px;
                padding: 62px 0 58px;
            }

            .review-section-heading {
                margin-bottom: 32px;
                padding: 0 20px;
            }

            .review-section-heading h2 {
                font-size: clamp(2.15rem, 9vw, 2.65rem);
            }

            .reviews-statement {
                gap: 8px;
            }

            .reviews-statement strong {
                font-size: clamp(2rem, 8.5vw, 2.8rem);
            }

            .reviews-statement > span {
                font-size: 0.72rem;
                letter-spacing: 0.2em;
            }

            .review-carousel {
                gap: 14px;
            }

            .review-marquee-track {
                gap: 14px;
            }

            .review-card {
                flex-basis: min(82vw, 320px);
                min-height: 225px;
                gap: 16px;
                padding: 25px 24px 22px;
                border-radius: 16px;
            }

            .review-carousel::before,
            .review-carousel::after {
                width: 28px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .review-marquee-row {
                overflow-x: hidden;
            }

            .review-marquee-track {
                animation: none !important;
            }

            .review-marquee-track .review-card[aria-hidden='true'] {
                display: none;
            }
        }

        /* Review card identity footer */
        .review-card::before {
            display: none !important;
        }

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

        .review-card-footer {
            display: flex;
            align-items: center;
            gap: 11px;
            margin-top: auto;
        }

        .review-avatar {
            display: inline-flex;
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.04em;
        }

        .review-card-author {
            display: block;
            margin: 0;
        }

        .review-card-author::before {
            display: none;
        }

        .review-card-meta {
            margin: 3px 0 0;
            padding-left: 0;
        }

        /* Scroll-led hero experience */
        .scroll-story {
            display: block;
            height: 100svh;
            min-height: 0;
            margin-top: 0;
            padding: 0;
            overflow: hidden;
            background: #0b1f4d !important;
        }

        .scroll-story-sticky {
            position: relative;
            top: 0;
            display: grid;
            width: 100%;
            height: 100svh;
            min-height: 0;
            padding: var(--header-h) 24px 24px;
            place-items: center;
            overflow: hidden;
            isolation: isolate;
        }

        .scroll-story .hero-slider {
            z-index: 0;
        }

        .scroll-story .hero-slider::after {
            background:
                linear-gradient(90deg, rgba(4, 16, 40, 0.82) 0%, rgba(4, 16, 40, 0.61) 43%, rgba(4, 16, 40, 0.14) 100%),
                linear-gradient(180deg, rgba(4, 16, 40, 0.08) 45%, rgba(4, 16, 40, 0.48) 100%);
        }

        .scroll-story .hero-slide {
            z-index: 0;
            opacity: 0;
            transition: opacity 360ms ease, transform 900ms cubic-bezier(0.65, 0, 0.35, 1);
            transform: scale(1.025);
        }

        .scroll-story .hero-slide.active {
            z-index: 1;
            opacity: 1;
            transform: scale(1);
        }

        .scroll-story .hero-slide img {
            transform: translate3d(0, var(--story-parallax, 0), 0) scale(1.1);
            transition: transform 180ms linear;
            will-change: transform;
        }

        .scroll-story .hero-slide[data-story-image='0'] img {
            object-position: center 47%;
        }

        .scroll-story .hero-slide[data-story-image='1'] img {
            object-position: center 44%;
        }

        .scroll-story .hero-slide[data-story-image='2'] img {
            object-position: center 52%;
        }

        .scroll-story::before {
            display: none;
        }

        .scroll-story::after {
            display: none;
        }

        .scroll-story-curtain {
            position: absolute;
            z-index: 8;
            inset: 0;
            pointer-events: none;
            visibility: hidden;
            transform: translate3d(-101%, 0, 0);
            background:
                radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.5px),
                linear-gradient(110deg, #0d245d 0%, var(--accent) 52%, var(--primary) 100%);
            background-size: 15px 15px, auto;
            will-change: transform;
        }

        .scroll-story .hero-copy {
            position: relative;
            z-index: 5;
            width: min(100% - 12vw, 1120px);
            min-height: min(620px, calc(100svh - var(--header-h) - 24px));
            margin: 0;
            opacity: 1;
            animation: none;
        }

        .hero-copy-scene {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(28px);
            transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 620ms;
        }

        .hero-copy-scene.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
            transition-delay: 120ms, 120ms, 0s;
        }

        .scroll-story .hero-intro {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            margin-bottom: 20px;
            padding: 7px 13px;
            border: 1px solid rgba(255, 255, 255, 0.36);
            border-radius: 999px;
            background: rgba(8, 22, 56, 0.38);
            box-shadow: 0 12px 34px rgba(5, 13, 35, 0.16);
            color: #ffffff;
            font-size: 0.75rem;
            letter-spacing: 0.14em;
            backdrop-filter: blur(9px);
        }

        .scroll-story .heading {
            max-width: 12ch;
            margin: 0;
            color: #ffffff;
            font-size: clamp(3rem, 5.2vw, 5.9rem);
            font-weight: 700;
            letter-spacing: -0.045em;
            line-height: 1.01;
            text-shadow: 0 18px 44px rgba(4, 12, 32, 0.34);
        }

        .scroll-story .subheading {
            max-width: 570px;
            margin-top: 22px;
            color: rgba(255, 255, 255, 0.92);
            font-size: clamp(1rem, 1.55vw, 1.14rem);
            font-weight: 500;
            line-height: 1.7;
            text-shadow: 0 8px 22px rgba(4, 12, 32, 0.4);
        }

        .scroll-story .hero-ctas {
            margin-top: 30px;
        }

        .scroll-story .primary-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-soft));
            box-shadow: 0 14px 34px rgba(224, 33, 138, 0.28);
        }

        .scroll-story .primary-cta:hover {
            background: linear-gradient(135deg, #c71578, var(--primary));
        }

        .scroll-story .secondary-cta {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.54);
        }

        .hero-copy-scene.active .hero-intro,
        .hero-copy-scene.active .heading,
        .hero-copy-scene.active .subheading,
        .hero-copy-scene.active .hero-ctas {
            animation: scroll-story-text-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        .hero-copy-scene.active .heading { animation-delay: 55ms; }
        .hero-copy-scene.active .subheading { animation-delay: 115ms; }
        .hero-copy-scene.active .hero-ctas { animation-delay: 180ms; }

        @keyframes scroll-story-text-reveal {
            from { opacity: 0; transform: translateY(22px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .scroll-story-ui {
            position: absolute;
            z-index: 5;
            right: clamp(20px, 4vw, 54px);
            bottom: 34px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .scroll-story-line {
            display: block;
            width: 52px;
            height: 1px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.36);
        }

        .scroll-story-line span {
            display: block;
            width: 52%;
            height: 100%;
            background: #ffffff;
            animation: scroll-story-pulse 1.8s ease-in-out infinite;
        }

        @keyframes scroll-story-pulse {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(185%); }
        }

        .scroll-story-steps {
            display: inline-flex;
            gap: 6px;
        }

        .scroll-story-steps i {
            display: block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.38);
            transition: transform 300ms ease, background-color 300ms ease;
        }

        .scroll-story-steps i.active {
            background: #ffffff;
            transform: scale(1.35);
        }

        @media (max-width: 760px) {
            .scroll-story {
                height: 100svh;
            }

            .scroll-story-sticky {
                height: 100svh;
                min-height: 0;
                padding: 76px 20px 20px;
            }

            .scroll-story .hero-copy {
                width: min(100% - 40px, 620px);
                min-height: calc(100svh - 96px);
                padding: 0;
            }

            .scroll-story .heading {
                max-width: 10.5ch;
                font-size: clamp(2.55rem, 11.5vw, 4.15rem);
                line-height: 1.02;
            }

            .scroll-story .subheading {
                margin-top: 20px;
                line-height: 1.62;
            }

            .scroll-story .hero-ctas {
                width: 100%;
                margin-top: 24px;
            }

        }

        @media (prefers-reduced-motion: reduce) {
            .scroll-story {
                height: 100svh;
            }

            .scroll-story-sticky {
                position: relative;
                min-height: 0;
            }

            .scroll-story .hero-slide,
            .scroll-story .hero-copy-scene {
                transition: none;
            }

            .scroll-story .hero-slide:not(.active),
            .scroll-story .hero-copy-scene:not(.active) {
                display: none;
            }

            .scroll-story .hero-slide img,
            .scroll-story-line span,
            .hero-copy-scene.active .hero-intro,
            .hero-copy-scene.active .heading,
            .hero-copy-scene.active .subheading,
            .hero-copy-scene.active .hero-ctas {
                animation: none;
                transform: none;
            }
        }
