        :root {
            --primary-blue: #00add8;
            --primary-pink: #ec7db2;
            --accent-gold: #c5a059;
            --dark-navy: #0f172a;
            --soft-gray: #f1f5f9;
            --soft-bg: #f8fafc;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-navy);
            background-color: #fff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body.loading {
            overflow: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        h1, h2, h3, .playfair {
            font-family: 'Playfair Display', serif;
        }

        .montserrat {
            font-family: 'Montserrat', sans-serif;
        }

        .hero-section {
            position: relative;
            height: 95vh;
            min-height: 700px;
            background: #f8fafc;
            overflow: hidden;
        }

        .contact-section {
            position: relative;
            background:
                radial-gradient(circle at left top, rgba(0, 173, 216, 0.12), transparent 28%),
                radial-gradient(circle at right bottom, rgba(236, 125, 178, 0.14), transparent 30%),
                linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }

        .contact-shell {
            position: relative;
            overflow: hidden;
            border-radius: 34px;
            padding: 1.5rem 1.75rem;
        }

        .contact-shell::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 12% 18%, rgba(0, 173, 216, 0.08), transparent 20%),
                radial-gradient(circle at 88% 82%, rgba(236, 125, 178, 0.08), transparent 22%);
            pointer-events: none;
        }

        .contact-shell > * {
            position: relative;
            z-index: 1;
        }

        .contact-section-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.5rem;
            align-items: center;
        }

        .contact-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-right: 1rem;
        }

        .contact-copy-kicker {
            display: inline-flex;
            align-self: flex-start;
            margin-bottom: 1rem;
            padding: 0.5rem 0.9rem;
            border-radius: 999px;
            background: rgba(0, 173, 216, 0.1);
            color: var(--primary-blue);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .contact-copy-text {
            margin-top: 0.85rem;
            color: #64748b;
            font-size: 1rem;
            line-height: 1.8;
            max-width: 32rem;
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .contact-card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .contact-card-grid .swiper-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .contact-card-grid .swiper-slide {
            height: auto;
        }

        .contact-tile {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
            min-height: 96px;
            padding: 1rem 1.1rem;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .contact-tile:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 173, 216, 0.2);
            box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
        }

        .contact-tile-icon {
            width: 2.85rem;
            height: 2.85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: #eff6ff;
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        .contact-tile-label {
            display: block;
            margin-bottom: 0.35rem;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #94a3b8;
        }

        .contact-tile-link {
            color: var(--dark-navy);
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.5;
            word-break: break-word;
        }

        .contact-tile-link:hover {
            color: var(--primary-blue);
        }

        .btn-whatsapp-primary {
            background: linear-gradient(135deg, #22c55e 0%, #179b47 100%)!important;
            color: white;
            border: 1px solid rgba(37, 211, 102, 0.18);
            box-shadow: 0 18px 36px rgba(37, 211, 102, 0.22);
        }

        .btn-whatsapp-primary:hover {
            background: linear-gradient(135deg, #1fb655 0%, #14833c 100%);
            box-shadow: 0 22px 46px rgba(37, 211, 102, 0.28);
            filter: none;
        }

        .page-loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f8fafc 0%, #eef6fb 52%, #fff7fb 100%);
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-card {
            width: min(92vw, 680px);
            padding: 2rem;
            text-align: center;
        }

        .loader-logo {
            width: 140px;
            margin: 0 auto 1.5rem;
            animation: loaderLogoIn 0.8s ease both;
        }

        .loader-slogan {
            width: min(90vw, 540px);
            margin: 0 auto 1rem;
            animation: loaderSloganIn 1s ease 0.2s both, loaderSloganFloat 2.8s ease-in-out 1.2s infinite;
        }

        .loader-text {
            max-width: 520px;
            margin: 0 auto 1.5rem;
            font-size: 1rem;
            color: #475569;
            animation: loaderTextIn 0.9s ease 0.35s both;
        }

        .loader-spinner {
            width: 56px;
            height: 56px;
            margin: 0 auto;
            border-radius: 50%;
            border: 3px solid rgba(15, 23, 42, 0.08);
            border-top-color: var(--primary-blue);
            border-right-color: var(--primary-pink);
            animation: loaderSpin 1s linear infinite;
        }

        @keyframes loaderSpin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes loaderLogoIn {
            from {
                opacity: 0;
                transform: translateY(12px) scale(0.96);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes loaderSloganIn {
            from {
                opacity: 0;
                transform: translateY(18px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

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

        @keyframes loaderTextIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-in-out;
            transform: scale(1.05);
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 10;
        }

        .slide img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(15, 23, 42, 0.08) 100%);
            z-index: 5;
        }

        .slide-content {
            position: relative;
            z-index: 20;
            max-width: 800px;
            padding: 0 5%;
        }

        .hero-indicators {
            position: absolute;
            bottom: 2.75rem;
            left: 2rem;
            z-index: 40;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.32));
            backdrop-filter: blur(8px);
            overflow: hidden;
        }

        .hero-indicators > * {
            position: relative;
            z-index: 1;
        }

        .btn-premium {
            background: linear-gradient(135deg, var(--primary-pink) 0%, #d6649b 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 4px;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all 0.4s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }

        .btn-premium:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(236, 125, 178, 0.3);
            filter: brightness(1.1);
        }

        .btn-outline-white {
            border: 1px solid rgba(255,255,255,0.35);
            color: white;
            padding: 16px 40px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.85rem;
            backdrop-filter: blur(5px);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

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

        .btn-blue-outline {
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
        }

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

        .floating-whatsapp {
            position: fixed;
            right: 1.5rem;
            bottom: 1.5rem;
            z-index: 1200;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #25d366 0%, #1faa52 100%);
            color: white;
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
        }

        .floating-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 26px 52px rgba(37, 211, 102, 0.34);
            filter: brightness(1.03);
        }

        .floating-whatsapp i {
            font-size: 1.7rem;
        }

        .indicator-bar {
            width: 40px;
            height: 2px;
            background: rgba(255,255,255,0.35);
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator-bar.active {
            background: var(--primary-blue);
            width: 80px;
        }

        .stat-item {
            position: relative;
            border-right: 1px solid #e2e8f0;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stats-section {
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('../img/pattern_lg.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            opacity: 0.3;
            pointer-events: none;
        }

        .stats-section .container {
            position: relative;
            z-index: 1;
        }

        .category-card {
            position: relative;
            height: 400px;
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            text-align: center;
        }

        .services-section {
            background:
                radial-gradient(circle at top left, rgba(0, 173, 216, 0.12), transparent 34%),
                radial-gradient(circle at bottom right, rgba(236, 125, 178, 0.12), transparent 28%),
                #f8fafc;
        }

        .service-showcase {
            position: relative;
            min-height: 620px;
            border-radius: 34px;
            overflow: hidden;
            box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
            cursor: pointer;
        }

        .service-showcase-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .service-showcase:hover .service-showcase-image {
            transform: scale(1.08);
        }

        .service-showcase.is-open .service-showcase-image {
            transform: scale(1.08);
        }

        .service-showcase-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgb(15 23 42 / 3%) 0%, rgb(15 23 42 / 1%) 32%, rgb(15 23 42 / 77%) 100%)
        }

        .service-showcase-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
        }

        .service-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
            margin-bottom: 1rem;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.14);
            color: white;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
        }

        .service-summary {
            color: rgba(255,255,255,0.82);
            font-size: 1.02rem;
            line-height: 1.8;
            max-width: 30rem;
            margin-top: 0.85rem;
        }

        .service-details {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transform: translateY(14px);
            transition: max-height 0.5s ease, opacity 0.35s ease, transform 0.35s ease, margin-top 0.35s ease;
        }

        .service-showcase.is-open .service-details {
            max-height: 540px;
            opacity: 1;
            transform: translateY(0);
            margin-top: 1.25rem;
        }

        .service-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.7rem;
        }

        .service-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: rgba(255,255,255,0.9);
            font-size: 0.96rem;
            line-height: 1.6;
        }

        .service-feature i {
            color: var(--primary-blue);
            margin-top: 0.25rem;
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            align-self: flex-start;
            padding: 0.9rem 1.3rem;
            border-radius: 999px;
            background: white;
            color: var(--dark-navy);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
        }

        .service-cta:hover {
            transform: translateY(-2px);
            background: var(--primary-pink);
            color: white;
        }

        .trust-section {
            background: #fcfcfc;
        }

        .trust-tag {
            display: block;
            margin-bottom: 0.9rem;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #94a3b8;
        }

        .trust-swiper {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 80px;
        }

        .trust-swiper .swiper-slide {
            width: 380px;
            height: 480px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 35px;
            background: white;
            border-radius: 40px;
            border: 1px solid #eef2f7;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
            transition: all 0.4s ease;
        }

        .trust-swiper .swiper-slide-active {
            transform: scale(1.05);
            border-color: rgba(0, 173, 216, 0.16);
            box-shadow: 0 40px 80px rgba(0, 173, 216, 0.12);
        }

        .trust-circle {
            width: 110px;
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            border-radius: 999px;
            background: linear-gradient(180deg, #f8fbfd 0%, #f5f8fb 100%);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
        }

        .trust-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            line-height: 1;
            color: var(--dark-navy);
            letter-spacing: -0.05em;
        }

        .trust-stat-suffix {
            font-size: 1.3rem;
            color: var(--primary-pink);
        }

        .trust-stat-title {
            margin-bottom: 0.8rem;
            color: var(--dark-navy);
            font-size: 1.55rem;
            font-weight: 700;
        }

        .trust-stat-text {
            color: #64748b;
            line-height: 1.75;
            font-size: 0.96rem;
        }

        .trust-meta {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #eef2f7;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--primary-blue);
        }

        .trust-swiper .swiper-button-next,
        .trust-swiper .swiper-button-prev {
            color: var(--primary-blue) !important;
            background: white;
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
        }

        .trust-swiper .swiper-button-next:after,
        .trust-swiper .swiper-button-prev:after {
            font-size: 20px !important;
            font-weight: 700;
        }

        .trust-swiper .swiper-pagination-bullet-active {
            background: var(--primary-blue) !important;
        }

        .team-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .team-card-featured {
            transition: all 0.3s ease;
            background: white;
            border-radius: 28px;
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
        }

        .team-card-featured:hover {
            transform: translateY(-10px);
            box-shadow: 0 26px 45px rgba(15, 23, 42, 0.1);
        }

        .team-image-shell {
            position: relative;
            height: 25rem;
            overflow: hidden;
        }

        .team-image-shell::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 50%;
            opacity: 1;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.82), transparent);
        }

        .team-hover-badge {
            position: absolute;
            right: 1rem;
            bottom: 1rem;
            z-index: 2;
            color: white;
        }

        .team-accent-blue {
            color: var(--primary-blue);
        }

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

        .team-accent-pink {
            color: var(--primary-pink);
        }

        .team-accent-pink-bg {
            background-color: var(--primary-pink);
        }

        .team-card-body {
            padding: 2rem;
        }

        .team-divider {
            height: 4px;
            width: 56px;
            margin-bottom: 1.25rem;
            border-radius: 999px;
        }

        .team-bio {
            color: #64748b;
            line-height: 1.9;
            font-size: 0.95rem;
        }

        .team-mobile-swiper .swiper-wrapper {
            display: grid;
            gap: 2rem;
            align-items: stretch;
        }

        .team-mobile-swiper .swiper-wrapper {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }

        .team-mobile-swiper .swiper-slide {
            height: 100%;
            display: flex;
        }

        .team-mobile-swiper .team-card-featured {
            width: 100%;
            height: 100%;
        }

        .blogs-section {
            background:
                radial-gradient(circle at top left, rgba(0, 173, 216, 0.1), transparent 30%),
                radial-gradient(circle at bottom right, rgba(236, 125, 178, 0.1), transparent 26%),
                #f8fafc;
        }

        .blog-card {
            overflow: hidden;
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 26px;
            background: white;
            box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 50px rgba(15, 23, 42, 0.09);
            border-color: rgba(0, 173, 216, 0.22);
        }

        .blog-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.06);
        }

        .blog-card-body {
            padding: 1.5rem;
        }

        .blog-kicker {
            display: inline-block;
            margin-bottom: 0.85rem;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--primary-blue);
        }

        .blog-preview {
            color: #64748b;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-top: 0.85rem;
        }

        .blog-link {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            margin-top: 1.25rem;
            color: var(--dark-navy);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .blog-link:hover {
            color: var(--primary-pink);
            transform: translateX(3px);
        }

        .blogs-swiper {
            width: 100%;
            padding-top: 20px;
            padding-bottom: 70px;
        }

        .blogs-swiper .swiper-slide {
            height: auto;
        }

        .blogs-swiper .swiper-button-next,
        .blogs-swiper .swiper-button-prev {
            color: var(--primary-blue) !important;
            background: white;
            width: 48px !important;
            height: 48px !important;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
        }

        .blogs-swiper .swiper-button-next:after,
        .blogs-swiper .swiper-button-prev:after {
            font-size: 18px !important;
            font-weight: 700;
        }

        .blogs-swiper .swiper-pagination-bullet-active {
            background: var(--primary-pink) !important;
        }

        .testimonials-section {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            position: relative;
            background: white;
            border-radius: 22px;
            padding: 1.5rem;
            border: 1px solid #eef2f7;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
            border-color: rgba(0, 173, 216, 0.2);
        }

        .video-placeholder {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #e2e8f0;
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 1.15rem;
            cursor: pointer;
        }

        .video-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.82);
            transition: transform 0.5s ease;
        }

        .video-placeholder:hover img {
            transform: scale(1.05);
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 52px;
            height: 52px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-pink);
            font-size: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            z-index: 2;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover .play-btn {
            background: var(--primary-pink);
            color: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .testimonial-image-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.75rem;
            margin-bottom: 1.15rem;
        }

        .testimonial-image-tile {
            height: 96px;
            overflow: hidden;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
        }

        .testimonial-image-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .testimonial-card:hover .testimonial-image-tile img {
            transform: scale(1.04);
        }

        .testimonial-stars {
            display: flex;
            gap: 0.22rem;
            margin-bottom: 1rem;
            color: #fbbf24;
        }

        .quote-icon {
            color: var(--primary-blue);
            opacity: 0.15;
            font-size: 2.2rem;
            position: absolute;
            top: 1.15rem;
            right: 1.25rem;
        }

        .journey-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(236, 125, 178, 0.1);
            color: var(--primary-pink);
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .patient-origin {
            font-size: 0.8rem;
            color: #94a3b8;
            font-weight: 500;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.1rem;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }

        .testimonials-swiper {
            width: 100%;
            padding-top: 24px;
            padding-bottom: 80px;
        }

        .testimonials-swiper .swiper-wrapper {
            align-items: flex-start;
        }

        .testimonials-swiper .swiper-slide {
            height: auto;
        }

        @media (min-width: 769px) {
            .testimonials-swiper .swiper-slide {
                width: 360px;
            }
        }

        @media (max-width: 768px) {
            .testimonials-swiper .swiper-slide {
                width: 100%;
            }
        }

        .testimonials-swiper .swiper-slide {
            height: auto;
            opacity: 1;
            transition: transform 0.4s ease;
        }

        .testimonials-swiper .swiper-button-next,
        .testimonials-swiper .swiper-button-prev {
            color: var(--primary-blue) !important;
            background: white;
            width: 48px !important;
            height: 48px !important;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
        }

        .testimonials-swiper .swiper-button-next:after,
        .testimonials-swiper .swiper-button-prev:after {
            font-size: 18px !important;
            font-weight: 700;
        }

        .testimonials-swiper .swiper-pagination-bullet-active {
            background: var(--primary-blue) !important;
        }

        .faq-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .faq-list {
            display: grid;
            gap: 1rem;
            max-width: 960px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 24px;
            background: white;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .faq-item.is-open {
            border-color: rgba(0, 173, 216, 0.22);
            box-shadow: 0 20px 42px rgba(15, 23, 42, 0.07);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.35rem 1.5rem;
            text-align: left;
            color: var(--dark-navy);
            font-size: 1.05rem;
            font-weight: 700;
        }

        .faq-question-icon {
            width: 2.3rem;
            height: 2.3rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: #eff6ff;
            color: var(--primary-blue);
            flex-shrink: 0;
            transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
        }

        .faq-item.is-open .faq-question-icon {
            transform: rotate(45deg);
            background: rgba(236, 125, 178, 0.12);
            color: var(--primary-pink);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.35s ease, opacity 0.25s ease;
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.4rem;
            color: #64748b;
            line-height: 1.9;
            font-size: 0.98rem;
        }

        .faq-item.is-open .faq-answer {
            max-height: 220px;
            opacity: 1;
        }

        .certificates-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .certificates-swiper {
            width: 100%;
            padding-top: 1rem;
            padding-bottom: 0.5rem;
        }

        .certificates-swiper .swiper-wrapper {
            transition-timing-function: linear !important;
        }

        .certificates-swiper .swiper-slide {
            width: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .certificate-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 110px;
            padding: 1rem 1.25rem;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(226, 232, 240, 0.65);
        }

        .certificate-item:hover {
            border-color: rgba(0, 173, 216, 0.2);
        }

        .certificate-item img {
            max-width: 100%;
            max-height: 58px;
            object-fit: contain;
            filter: saturate(1.02);
        }

        .site-footer {
            position: relative;
            background:
           linear-gradient(180deg, rgb(255 255 255 / 90%) 0%, rgba(248, 250, 252, 0.98) 100%), url(../img/pattern_lg.svg);

            background-repeat: no-repeat, no-repeat;
            background-position: center, center;
            background-size: cover, cover;
            color: #64748b;
            border-top: 1px solid rgba(226, 232, 240, 0.9);
        }

        .footer-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            padding: 0 0 1rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.9);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.9rem;
        }

        .footer-brand img {
            height: 3.7rem;
            width: auto;
            object-fit: contain;
        }

        .footer-main {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.1fr);
            gap: 1.35rem;
            padding: 1.2rem 0;
        }

        .footer-block-title {
            margin-bottom: 0.75rem;
            color: var(--dark-navy);
            font-size: 1.2rem;
            font-weight: 800;
        }

        .footer-contact-list,
        .footer-links-list {
            display: grid;
            gap: 0.6rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
        }

        .footer-contact-icon,
        .footer-social-link {
            width: 2.5rem;
            height: 2.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: #f8fafc;
            color: var(--primary-blue);
            flex-shrink: 0;
            border: 1px solid rgba(226, 232, 240, 0.9);
        }

        .footer-contact-text,
        .footer-links-list a,
        .footer-connect-text {
            color: #64748b;
        }

        .footer-contact-text a,
        .footer-links-list a {
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .footer-contact-text a:hover,
        .footer-links-list a:hover {
            color: var(--dark-navy);
        }

        .footer-map-frame {
            width: 100%;
            height: 170px;
            border: 0;
            border-radius: 24px;
            background: #f8fafc;
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
        }

        .footer-socials {
            display: flex;
            gap: 0.85rem;
            margin-top: 0.75rem;
        }

        .footer-social-link:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
        }

        .footer-social-link svg {
            width: 1rem;
            height: 1rem;
            fill: currentColor;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.1rem;
            padding: 1.1rem 0;
            border-top: 1px solid rgba(226, 232, 240, 0.9);
            border-bottom: 1px solid rgba(226, 232, 240, 0.9);
        }

        .footer-links h4 {
            margin-bottom: 0.9rem;
            color: var(--dark-navy);
            font-size: 1rem;
            font-weight: 700;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-top: 0.7rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .footer-meta-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-meta-links a {
            color: #94a3b8;
            transition: color 0.2s ease;
        }

        .footer-meta-links a:hover {
            color: var(--dark-navy);
        }

        .service-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            align-self: flex-start;
            margin-top: 1.35rem;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(255,255,255,0.26);
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            color: white;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
            transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .service-toggle:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.16);
            border-color: rgba(255,255,255,0.4);
        }

        .service-toggle i {
            transition: transform 0.3s ease;
        }

        .service-showcase.is-open .service-toggle i {
            transform: rotate(45deg);
        }

        .text-primary-blue { color: var(--primary-blue); }
        .text-primary-pink { color: var(--primary-pink); }
        .bg-primary-blue { background-color: var(--primary-blue); }
        .bg-primary-pink { background-color: var(--primary-pink); }
        .border-primary-blue { border-color: var(--primary-blue); }

        [data-reveal] {
            opacity: 0;
            transform: translateY(42px) scale(0.98);
            transition:
                opacity 0.8s ease,
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, transform;
        }

        [data-reveal].is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .hero-section [data-reveal] {
            transform: translateY(28px);
        }

        @media (max-width: 768px) {
            .container.mx-auto.px-8 {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .slide-overlay {
                background: rgba(15, 23, 42, 0.78);
            }

            .hero-indicators {
                left: 1rem;
                right: 1rem;
                bottom: 1.5rem;
                padding: 0.9rem 1rem;
                border-radius: 24px;
                justify-content: flex-start;
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
                padding-bottom: 1rem;
            }

            .slide-content {
                padding: 0 24px;
                max-width: 100%;
            }

            .hero-section {
                min-height: 620px;
            }

            .btn-premium,
            .btn-outline-white {
                width: 100%;
                text-align: center;
            }

            .service-showcase {
                min-height: 560px;
            }

            .service-showcase-content {
                padding: 1.5rem;
            }

            .contact-section-grid {
                grid-template-columns: 1fr;
            }

            .contact-copy {
                padding-right: 0;
            }

            .contact-shell {
                padding: 1.4rem;
                border-radius: 26px;
            }

            .contact-card-grid {
                display: block;
            }

            .contact-card-grid .swiper-wrapper {
                display: flex;
                gap: 0;
            }

            .contact-card-grid .swiper-slide {
                width: 100%;
            }

            .footer-cta,
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

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

            .testimonial-card {
                padding: 1.2rem;
            }

            .team-mobile-swiper,
            .contact-card-grid {
                overflow: visible;
                padding-bottom: 2.5rem;
            }

            .team-mobile-swiper .swiper-wrapper {
                display: flex;
                gap: 0;
            }

            .team-mobile-swiper .swiper-slide {
                width: 100%;
                height: auto;
            }

            .team-mobile-swiper .team-card-featured {
                margin-bottom: 0.25rem;
            }

            .certificates-swiper .swiper-slide {
                width: 180px;
            }

            .certificate-item {
                min-height: 96px;
                padding: 0.9rem 1rem;
            }

            .certificate-item img {
                max-height: 44px;
            }

            .floating-whatsapp {
                right: 1rem;
                bottom: 1rem;
                width: 3.5rem;
                height: 3.5rem;
            }
        }

        /* Testimonials images unified size */
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-placeholder,
.testimonial-image-grid {
    width: 100%;
    height: 220px; /* نفس الارتفاع لكل الصور */
    overflow: hidden;
    border-radius: 18px;
    background: #f1f5f9;
    flex-shrink: 0;
}

.video-placeholder img,
.testimonial-image-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* grid الصور الثنائية */
.testimonial-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.testimonial-image-tile {
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #f1f5f9;
}

/* default image styling */
.testimonial-default-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    background: #f1f5f9;
    display: block;
}
