        :root {
            --primary: #2c3e7e;
            --primary-dark: #1d2c5c;
            --secondary: #4998ce;
            --accent: #f74b30;
            --accent-dark: #d8381f;
            --ink: #1b2333;
            --muted: #6b7280;
            --bg-soft: #f5f7fb;
            --border: #e6eaf2;
            --radius: 14px;
            --shadow: 0 10px 30px rgba(44, 62, 126, 0.10);
            --shadow-lg: 0 20px 50px rgba(20, 30, 70, 0.18);
            font-size: 16px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--ink);
            line-height: 1.65;
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.25;
        }

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

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

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

        section {
            padding: 70px 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-size: 13px;
            margin-bottom: 12px;
        }

        .eyebrow::before,
        .eyebrow::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--accent);
            display: inline-block;
            flex-shrink: 0;
        }

        .eyebrow::after {
            display: none;
        }

        /* For centered eyebrows, show line on both sides */
        .center .eyebrow,
        .eyebrow.center-eyebrow {
            display: flex;
            justify-content: center;
        }

        .center .eyebrow::after {
            display: inline-block;
        }

        .section-title {
            font-size: clamp(26px, 4vw, 38px);
            margin-bottom: 16px;
        }

        .section-sub {
            color: var(--muted);
            max-width: 760px;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .center {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: .25s ease;
            text-align: center;
            font-family: 'Inter', sans-serif;
        }

        .btn-accent {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 10px 25px rgba(247, 75, 48, 0.35);
        }

        .btn-accent:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(247, 75, 48, 0.45);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--primary);
        }

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

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

        .btn-whatsapp {
            background: #25D366;
            color: #fff;
        }

        .btn-whatsapp:hover {
            background: #1da851;
            transform: translateY(-2px);
        }

        header.site-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            box-shadow: none;
            transition: background .3s, box-shadow .3s;
        }

        header.site-header.scrolled {
            position: fixed;
            background: #fff;
            box-shadow: 0 2px 14px rgba(20, 30, 70, 0.07);
        }

        header.site-header .nav-call {
            color: #fff;
        }

        header.site-header .nav-call i {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        header.site-header.scrolled .nav-call {
            color: var(--primary);
        }

        header.site-header.scrolled .nav-call i {
            background: var(--bg-soft);
            color: var(--primary);
        }

        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo img {
            height: 46px;
            width: auto;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .mobile-call-btn {
            display: none;
            background: var(--accent);
            color: #fff;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            padding: 11px 19px;
            align-items: center;
            justify-content: center;
        }

        @media (max-width:768px) {
            .nav-actions .btn.btn-accent {
                display: none;
            }

            .mobile-call-btn {
                display: flex;
            }
        }

        .nav-call {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--primary);
            font-size: 15px;
        }

        .nav-call i {
            background: var(--bg-soft);
            color: var(--primary);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        @media (max-width:600px) {
            .nav-call span {
                display: none;
            }
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(20, 28, 64, 0.92) 0%, rgba(28, 42, 96, 0.4) 45%, rgba(44, 62, 126, 0.55) 100%),
                url('../images/corporate-service-provider-dubai-uae.webp') center/cover no-repeat;
            padding: 110px 0 40px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        @media screen and (max-width:768px) {
            .hero {
                padding: 100px 0 60px;
                background: linear-gradient(120deg, rgba(20, 28, 64, 0.92) 0%, rgba(28, 42, 96, 0.77) 85%, rgba(44, 62, 126, 0.77) 100%),
                    url('../images/corporate-service-provider-dubai-uae-mobile.webp') center/cover no-repeat;
            }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            color: #fff;
            font-size: clamp(28px, 4.4vw, 44px);
            margin-bottom: 12px;
        }

        .hero-content p.lead {
            color: #dbe2f5;
            font-size: 16px;
            max-width: 560px;
            margin-bottom: 18px;
        }

        .hero-eyebrow {
            display: inline-block;
            background: rgba(247, 75, 48, 0.16);
            border: 1px solid rgba(247, 75, 48, 0.4);
            color: #ffb3a3;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        /* ===== HERO TRUST ROW ===== */
        .hero-trust-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .rating-divider {
            width: 1px;
            height: 36px;
            background: rgba(255, 255, 255, 0.25);
            flex-shrink: 0;
        }

        .rating-badge-trust .trust-logo {
            display: flex;
            align-items: center;
        }

        /* Eyebrow center fix */
        .eyebrow.center,
        .center>.eyebrow,
        .center.eyebrow {
            display: flex;
            justify-content: center;
            width: 100%;
            text-align: center;
        }

        /* google rating badge */
        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(6px);
            padding: 10px 18px;
            border-radius: 50px;
            margin-bottom: 26px;
        }

        .rating-badge .stars {
            color: #ffc107;
            font-size: 15px;
            letter-spacing: 2px;
        }

        .rating-badge .score {
            font-weight: 800;
            font-size: 18px;
            color: #fff;
        }

        .rating-badge .glabel {
            display: flex;
            flex-direction: column;
        }

        .rating-badge .glabel small {
            color: #cdd6f4;
            font-size: 11.5px;
        }

        .rating-badge .gicon {
            font-weight: 800;
            font-size: 17px;
        }

        .rating-badge .gicon .g1 {
            color: #4285F4;
        }

        .rating-badge .gicon .g2 {
            color: #EA4335;
        }

        .rating-badge .gicon .g3 {
            color: #FBBC05;
        }

        .rating-badge .gicon .g4 {
            color: #4285F4;
        }

        .rating-badge .gicon .g5 {
            color: #34A853;
        }

        .rating-badge .gicon .g6 {
            color: #EA4335;
        }

        .hero-points {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px 16px;
            margin-bottom: 24px;
            max-width: 600px;
        }

        .btn.btn-accent.free-consultation {
            padding: 10px 24px;
        }

        .hero-points li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14.5px;
            font-weight: 600;
            color: #eef1fb;
        }

        .hero-points li i {
            color: var(--secondary);
            margin-top: 3px;
            font-size: 15px;
            flex-shrink: 0;
        }

        .hero-visual {
            position: relative;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 28px;
            backdrop-filter: blur(8px);
        }

        .hero-visual h3 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 6px;
        }

        .hero-visual p {
            color: #cdd6f4;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .hero-stat {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }

        .hero-stat .num {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 26px;
            color: #fff;
        }

        .hero-stat .lab {
            font-size: 12.5px;
            color: #cdd6f4;
            margin-top: 4px;
        }

        .hero-visual .hv-cta {
            margin-top: 20px;
            width: 100%;
        }

        @media (max-width:980px) {
            .hero .container {
                grid-template-columns: 1fr;
            }

            .hero-points {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width:600px) {
            .hero {
                padding: 120px 0 60px;
                min-height: 100svh;
            }

            .hero-points {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .hero-content p.lead {
                font-size: 15.5px;
            }
        }

        /* ===== WHAT IS CSP ===== */
        .about-csp .container {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
            align-items: center;
        }

        .about-csp img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .about-csp p {
            color: var(--muted);
            margin-bottom: 14px;
            font-size: 15.5px;
        }

        @media (max-width:900px) {
            .about-csp .container {
                grid-template-columns: 1fr;
            }

            .about-csp .img-col {
                order: -1;
            }
        }

        /* ===== WHY NEED CSP - TABS ===== */
        .why-need {
            background: var(--bg-soft);
        }

        .tabs-wrap {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 30px;
            margin-top: 10px;
        }

        .tab-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .tab-btn {
            display: flex;
            align-items: center;
            gap: 14px;
            text-align: left;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px 18px;
            cursor: pointer;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 15px;
            transition: .2s;
            font-family: 'Inter', sans-serif;
        }

        .tab-btn .tnum {
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--bg-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            transition: .2s;
        }

        .tab-btn.active {
            background: var(--primary);
            color: #fff;
            box-shadow: var(--shadow);
        }

        .tab-btn.active .tnum {
            background: var(--accent);
            color: #fff;
        }

        .tab-panels {
            position: relative;
        }

        .tab-panel {
            display: none;
            background: #fff;
            border-radius: var(--radius);
            padding: 34px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            height: 100%;
        }

        .tab-panel.active {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            animation: fadeIn .4s ease;
        }

        .tab-panel h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .tab-panel p {
            color: var(--muted);
            font-size: 15.5px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width:850px) {
            .tabs-wrap {
                grid-template-columns: 1fr;
            }

            .tab-list {
                flex-direction: column;
                gap: 10px;
            }

            .tab-panel {
                padding: 24px;
            }
        }

        /* ===== SERVICES ===== */
        .services {
            background: #fff;
        }

        .services-swiper {
            margin-top: 10px;
        }

        .service-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: .25s;
            box-shadow: 0 4px 16px rgba(20, 30, 70, 0.04);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .service-card .sicon {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
        }

        .service-card h4 {
            font-size: 17px;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }

        .service-card p {
            color: var(--muted);
            font-size: 14px;
        }



        /* ===== WHY CHOOSE ===== */
        .why-choose {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
        }

        .why-choose .section-title,
        .why-choose .eyebrow {
            color: #fff;
        }

        .why-choose .eyebrow {
            color: #ffb3a3;
        }

        .why-choose .eyebrow::before {
            background: #ffb3a3;
        }

        .why-choose .section-sub {
            color: #cdd6f4;
        }

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

        .wc-text p {
            color: #dbe2f5;
            margin-bottom: 14px;
            font-size: 15.5px;
        }

        .wc-list {
            list-style: none;
            margin: 20px 0 26px;
        }

        .wc-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 15.5px;
        }

        .wc-list li i {
            color: #ffc107;
            margin-top: 3px;
        }

        .wc-cards {
            display: grid;
            gap: 18px;
        }

        .wc-card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 14px;
            padding: 22px;
        }

        .wc-card i {
            font-size: 24px;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .wc-card h4 {
            color: #fff;
            font-size: 17px;
            margin-bottom: 6px;
        }

        .wc-card p {
            color: #cdd6f4;
            font-size: 14px;
            margin: 0;
        }

        @media (max-width:900px) {
            .wc-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== SPECIALISTS CAROUSEL ===== */
        .specialists {
            background: var(--bg-soft);
        }

        .spec-carousel {
            position: relative;
            overflow: hidden;
        }

        .spec-carousel-track {
            display: flex;
            transition: transform .45s cubic-bezier(.4, 0, .2, 1);
            gap: 0;
        }

        .spec-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .spec-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 18px;
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: 0 4px 14px rgba(20, 30, 70, 0.05);
            transition: transform .2s, box-shadow .2s;
        }

        .spec-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .spec-avatar {
            width: 100%;
            max-width: 273px;
            height: auto;
            aspect-ratio: 1/1;
            border-radius: 50%;
            margin: 0 auto 14px;
            object-fit: cover;
            display: block;
        }

        .spec-card h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .spec-card p {
            color: var(--accent);
            font-weight: 700;
            font-size: 12.5px;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .carousel-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: .2s;
            border: none;
        }

        .carousel-dot.active {
            background: var(--primary);
            width: 24px;
            border-radius: 4px;
        }

        .arrow-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: .2s;
            font-size: 15px;
        }

        .arrow-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        @media (max-width:900px) {
            .spec-slide {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:500px) {
            .spec-slide {
                grid-template-columns: repeat(1, 1fr);
            }

            .spec-avatar {
                max-width: 273px;
            }
        }

        /* ===== REVIEWS CAROUSEL ===== */
        .reviews-badges {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 48px;
        }

        .review-badge {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: var(--shadow);
            transition: transform .2s;
        }

        .review-badge:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .review-badge .rb-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #fff;
            flex-shrink: 0;
        }

        .rb-google {
            background: linear-gradient(135deg, #4285F4, #34A853);
        }

        .rb-trust {
            background: linear-gradient(135deg, #00b67a, #00855a);
        }

        .review-badge h4 {
            font-size: 17px;
            margin-bottom: 4px;
        }

        .review-badge .stars {
            color: #ffc107;
            font-size: 13px;
        }

        .review-badge .rcount {
            color: var(--muted);
            font-size: 13px;
        }

        @media (max-width:768px) {
            .reviews-badges {
                grid-template-columns: 1fr;
            }
        }

        /* Review autoplay carousel */
        .review-carousel {
            position: relative;
            overflow: hidden;
        }

        .review-carousel-track {
            display: flex;
            transition: transform .6s cubic-bezier(.4, 0, .2, 1);
        }

        .review-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .review-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 26px;
            box-shadow: 0 4px 14px rgba(20, 30, 70, 0.05);
            transition: transform .2s;
        }

        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .review-card .rtop {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .review-card h4 {
            font-size: 15.5px;
        }

        .review-card .stars {
            color: #ffc107;
            font-size: 13px;
        }

        .review-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .review-card .r-platform {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11.5px;
            font-weight: 700;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }

        .review-carousel-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 28px;
        }

        @media (max-width:900px) {
            .review-slide {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:600px) {
            .review-slide {
                grid-template-columns: 1fr;
            }
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4a8a 100%);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(73, 152, 206, 0.12);
            pointer-events: none;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .cta-banner .container {
            position: relative;
            z-index: 1;
        }

        .cta-banner .pillrow {
            display: flex;
            gap: 14px;
            justify-content: center;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .cta-banner .pill {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .cta-banner h2 {
            color: #fff;
            font-size: clamp(24px, 4vw, 36px);
            max-width: 800px;
            margin: 0 auto 14px;
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 680px;
            margin: 0 auto 28px;
            font-size: 15.5px;
        }

        .cta-banner .cta-row {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-banner .btn-outline {
            border-color: rgba(255, 255, 255, 0.5);
        }

        .cta-banner .btn-outline:hover {
            background: #fff;
            color: var(--primary);
        }

        /* ===== CONTACT ===== */
        .contact {
            background: var(--bg-soft);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 40px;
            align-items: flex-start;
        }

        .contact-visual {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: sticky;
            top: 100px;
        }

        .contact-visual img {
            height: 100%;
            object-fit: cover;
        }

        .contact-form {
            background: #fff;
            border-radius: var(--radius);
            padding: 36px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

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

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

        .form-group.full {
            grid-column: 1/-1;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 13px 14px;
            font-size: 14.5px;
            font-family: 'Inter', sans-serif;
            background: var(--bg-soft);
            color: var(--ink);
            outline: none;
            transition: .2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--secondary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(73, 152, 206, 0.15);
        }

        .phone-row {
            display: flex;
            gap: 8px;
        }

        .phone-row select {
            flex: 0 0 100px;
        }

        .phone-row input {
            flex: 1;
        }

        .form-terms {
            font-size: 12.5px;
            color: var(--muted);
            margin: 14px 0 18px;
        }

        .form-terms a {
            color: var(--secondary);
            font-weight: 600;
        }

        .form-submit {
            width: 100%;
        }

        .form-msg {
            margin-top: 12px;
            font-size: 13.5px;
            font-weight: 600;
            min-height: 18px;
        }

        .privacy-note {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            margin-top: 14px;
            color: var(--muted);
            font-size: 13px;
        }

        @media (max-width:900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-visual {
                position: static;
                height: 260px;
            }

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

            .contact-form {
                padding: 24px 20px;
            }
        }

        @media (max-width:480px) {
            .contact-form {
                padding: 20px 16px;
                border-radius: 12px;
            }
        }

        /* ===== REVIEWER AVATAR (reviews carousel) ===== */
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .reviewer-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Override rtop for new reviewer-info layout */
        .review-card .rtop {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            gap: 8px;
        }

        /* ===== SWIPER CAROUSEL OVERRIDES ===== */
        .spec-swiper,
        .review-swiper,
        .services-swiper {
            padding-bottom: 50px !important;
            padding-left: 4px !important;
            padding-right: 4px !important;
        }

        .spec-swiper .swiper-wrapper,
        .review-swiper .swiper-wrapper,
        .services-swiper .swiper-wrapper {
            align-items: stretch;
        }

        .spec-swiper .spec-card,
        .review-swiper .review-card,
        .services-swiper .service-card {
            height: 100%;
        }

        .swiper-button-prev,
        .swiper-button-next {
            color: var(--primary);
            background: #fff;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 14px;
            font-weight: 900;
        }

        .swiper-pagination-bullet {
            background: var(--border);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary);
            width: 24px;
            border-radius: 4px;
        }

        /* ===== intl-tel-input custom styles ===== */
        .iti-phone-row {
            width: 100%;
        }

        .iti-phone-row .iti {
            width: 100%;
        }

        .iti-phone-row .iti input[type=tel] {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 13px 14px 13px 90px;
            font-size: 14.5px;
            font-family: 'Inter', sans-serif;
            background: var(--bg-soft);
            color: var(--ink);
            outline: none;
            transition: .2s;
            box-sizing: border-box;
        }

        .iti-phone-row .iti input[type=tel]:focus {
            border-color: var(--secondary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(73, 152, 206, 0.15);
        }

        .iti__flag-container {
            left: 0;
        }

        .iti__selected-flag {
            border-radius: 10px 0 0 10px;
            background: transparent;
            border-right: 1px solid var(--border);
        }

        /* phone-row now just wraps iti */
        .phone-row.iti-phone-row {
            display: block;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--primary-dark);
            color: #cdd6f4;
            padding-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.1fr;
            gap: 36px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo img {
            height: 42px;
            margin-bottom: 16px;
        }

        .footer-grid p {
            font-size: 14px;
            color: #aab4d4;
            margin-bottom: 16px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s;
        }

        .footer-social a:hover {
            background: var(--secondary);
        }

        .footer-grid h5 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 18px;
        }

        .footer-grid ul {
            list-style: none;
        }

        .footer-grid ul li {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-grid ul li a {
            color: #aab4d4;
        }

        .footer-grid ul li a:hover {
            color: #fff;
        }

        .footer-contact li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .footer-contact i {
            color: var(--secondary);
            margin-top: 3px;
        }

        .footer-bottom {
            padding: 24px 0;
            text-align: center;
            font-size: 13px;
            color: #90a0c9;
        }

        .footer-disclaimer {
            font-size: 12px;
            color: #7e8eb8;
            max-width: 1000px;
            margin: 0 auto 18px;
            line-height: 1.7;
            text-align: center;
        }

        @media (max-width:900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width:560px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }


        /* misc */
        .section-soft {
            background: var(--bg-soft);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .6s ease, transform .6s ease;
        }

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