:root {
            --navy: #1a1f3c;
            --navy-light: #232b4e;
            --gold: #c7962e;
            --gold-light: #e0b44d;
            --gold-pale: #fdf3e0;
            --cream: #faf8f5;
            --white: #ffffff;
            --text: #1e2235;
            --text-light: #5a5f7a;
            --text-muted: #7a7f95;
            --border: #e8e5df;
            --border-light: #f0ede8;
            --red: #c0392b;
            --red-dark: #a8322a;
            --red-light: #fef5f4;
            --green: #2d7d46;
            --green-light: #f2faf4;
            --shadow-sm: 0 1px 3px rgba(26, 31, 60, 0.06);
            --shadow: 0 4px 16px rgba(26, 31, 60, 0.08);
            --shadow-lg: 0 12px 40px rgba(26, 31, 60, 0.12);
            --shadow-xl: 0 20px 60px rgba(26, 31, 60, 0.16);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font);
            background: var(--cream);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a,
        button,
        input,
        textarea,
        select {
            -webkit-tap-highlight-color: transparent;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(199, 150, 46, 0.35);
            outline-offset: 3px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.93);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            padding: 0 16px;
        }

        .header-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--navy);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0;
        }

        .logo-icon svg {
            width: 23px;
            height: 23px;
            fill: currentColor;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--navy);
            letter-spacing: -0.4px;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--gold);
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--navy);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transition: var(--transition);
        }

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

        .header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .mobile-menu-toggle {
            display: inline-flex;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            background: #fff;
            color: var(--navy);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }

        .mobile-menu-toggle span {
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: var(--transition);
        }

        .mobile-menu-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu-panel {
            position: absolute;
            top: 64px;
            left: 12px;
            right: 12px;
            z-index: 101;
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 8px;
        }

        .mobile-menu-panel[hidden] {
            display: none;
        }

        .mobile-menu-panel nav {
            display: grid;
            gap: 2px;
        }

        .mobile-menu-panel a {
            display: flex;
            align-items: center;
            min-height: 44px;
            padding: 10px 12px;
            border-radius: 10px;
            color: var(--navy);
            text-decoration: none;
            font-weight: 800;
            font-size: 0.92rem;
        }

        .mobile-menu-panel a:hover {
            background: var(--cream);
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 7px;
            text-decoration: none;
            font-weight: 700;
            color: var(--navy);
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--transition);
            padding: 8px 12px;
            border-radius: 50px;
            background: var(--cream);
        }

        .phone-link:hover {
            background: #f0ece5;
        }

        .phone-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { box-shadow: 0 0 0 0 rgba(45, 125, 70, 0.5); }
            50% { box-shadow: 0 0 0 10px rgba(45, 125, 70, 0); }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            white-space: nowrap;
            font-family: var(--font);
            letter-spacing: -0.1px;
        }

        .btn-primary {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 4px 14px rgba(199, 150, 46, 0.3);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            box-shadow: 0 6px 20px rgba(199, 150, 46, 0.4);
            transform: translateY(-1px);
        }

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

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .btn-emergency {
            background: var(--red);
            color: #fff;
            font-weight: 800;
            box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
        }

        .btn-emergency:hover {
            background: var(--red-dark);
            transform: translateY(-1px);
        }

        .btn-whatsapp {
            background: #1fa855;
            color: #fff;
            box-shadow: 0 4px 14px rgba(31, 168, 85, 0.26);
        }

        .btn-whatsapp:hover {
            background: #178846;
            box-shadow: 0 6px 20px rgba(31, 168, 85, 0.34);
            transform: translateY(-1px);
        }

        .btn-lg {
            padding: 15px 30px;
            font-size: 1rem;
        }

        .icon-sm {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .hero {
            background-color: var(--navy);
            background-position: center;
            background-size: cover;
            color: #fff;
            padding: 48px 16px 56px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 999px;
            pointer-events: none;
        }

        .hero::before {
            top: -35%;
            right: -30%;
            width: 80%;
            height: 120%;
            background: radial-gradient(ellipse, rgba(199, 150, 46, 0.14) 0%, transparent 70%);
        }

        .hero::after {
            bottom: -20%;
            left: -20%;
            width: 70%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(199, 150, 46, 0.08) 0%, transparent 70%);
        }

        .hero-inner {
            max-width: 730px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            min-width: 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 8px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.2px;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--green);
        }

        .hero h1 {
            font-size: 2.15rem;
            font-weight: 900;
            letter-spacing: -0.8px;
            line-height: 1.12;
            margin-bottom: 14px;
        }

        .hero h1 span {
            color: var(--gold-light);
        }

        .hero p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 auto 28px;
            max-width: 540px;
            line-height: 1.55;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .trust-strip {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 18px 16px;
        }

        .trust-strip-inner {
            max-width: 980px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px 26px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text-light);
            white-space: nowrap;
        }

        .trust-icon {
            width: 21px;
            height: 21px;
            border-radius: 999px;
            background: var(--green-light);
            color: var(--green);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 900;
            flex-shrink: 0;
        }

        .section {
            padding: 56px 16px;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 900;
            letter-spacing: -0.6px;
            color: var(--navy);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 36px;
            max-width: 560px;
        }

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

        .section-header .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .section-image {
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            margin: -12px auto 28px;
            max-width: 860px;
            background: var(--navy);
        }

        .section-image img,
        .booking-image img,
        .about-photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-image {
            aspect-ratio: 16 / 8;
        }

        .service-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 22px 16px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-slow);
            border: 1px solid transparent;
        }

        .service-card-link {
            display: block;
            color: inherit;
            text-decoration: none;
            cursor: pointer;
        }

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

        .service-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: var(--gold-pale);
            color: var(--gold);
        }

        .service-icon svg {
            width: 26px;
            height: 26px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .service-card h3 {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .service-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .service-card-action {
            display: inline-block;
            margin-top: 12px;
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--gold);
        }

        .service-detail-section {
            padding-top: 112px;
        }

        .service-detail-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            align-items: center;
        }

        .service-detail-copy {
            max-width: 680px;
        }

        .service-detail-copy .service-icon {
            margin-left: 0;
            margin-right: 0;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 18px;
            color: var(--gold);
            font-size: 0.82rem;
            font-weight: 800;
            text-decoration: none;
        }

        .back-link::before {
            content: "< ";
        }

        .service-detail-body {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-top: -16px;
        }

        .service-detail-body p + p {
            margin-top: 14px;
        }

        .service-detail-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .service-detail-image {
            margin-top: 0;
            margin-bottom: 0;
        }

        .service-related-section {
            background: var(--cream);
        }

        .legal-page-section {
            padding-top: 88px;
        }

        .legal-page-inner {
            max-width: 760px;
        }

        .legal-page-body {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            padding: 24px 18px;
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.75;
        }

        .legal-page-body p + p {
            margin-top: 14px;
        }

        .home-overview {
            background: var(--cream);
        }

        .home-overview-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .home-overview-card {
            display: block;
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 24px 18px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-slow);
        }

        .home-overview-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--gold-pale);
        }

        .home-overview-card h3 {
            font-size: 1rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .home-overview-card p {
            color: var(--text-muted);
            font-size: 0.84rem;
            line-height: 1.45;
        }

        .home-overview-card-primary {
            border-color: rgba(199, 150, 46, 0.28);
            box-shadow: 0 8px 28px rgba(199, 150, 46, 0.12);
        }

        .about-section {
            background: #fff;
        }

        .about-wrapper {
            background: var(--cream);
            border-radius: var(--radius-lg);
            padding: 32px 20px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: center;
            text-align: center;
            border: 1px solid var(--border-light);
        }

        .about-photo {
            width: 132px;
            height: 132px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 4px solid var(--gold-pale);
            box-shadow: var(--shadow);
            background: var(--navy);
        }

        .about-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            flex-shrink: 0;
            border: 4px solid var(--gold-pale);
        }

        .about-avatar svg {
            width: 50px;
            height: 50px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .about-content h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .about-content .role {
            color: var(--gold);
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .about-content p {
            color: var(--text-light);
            font-size: 0.92rem;
            line-height: 1.65;
        }

        .about-stats {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 18px;
        }

        .about-stat .num {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
        }

        .about-stat .lbl {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 4px;
        }

        .booking-section {
            background: var(--cream);
            padding: 56px 16px;
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 70%;
            height: 100%;
            background: radial-gradient(ellipse, rgba(199, 150, 46, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .booking-section .section-label,
        .booking-section .section-title {
            color: var(--navy);
            position: relative;
            z-index: 1;
        }

        .booking-section .section-subtitle {
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        .booking-whatsapp-cta {
            position: relative;
            z-index: 1;
            margin-top: 18px;
        }

        .booking-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 28px 20px;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 0 auto;
        }

        .booking-image {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-radius: var(--radius-lg);
            max-width: 760px;
            margin: 0 auto 18px;
            aspect-ratio: 16 / 7;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
        }

        .booking-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 31, 60, 0.04), rgba(26, 31, 60, 0.22));
            pointer-events: none;
        }

        .booking-card-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 22px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-light);
        }

        .booking-card-top .icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold-pale);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .booking-card-top svg {
            width: 23px;
            height: 23px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .booking-card-top h3 {
            font-size: 1.12rem;
            font-weight: 800;
            color: var(--navy);
        }

        .booking-card-top span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

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

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

        .form-group label,
        .fieldset-label {
            font-weight: 700;
            font-size: 0.82rem;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .required {
            color: var(--red);
            font-weight: 900;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            font-family: var(--font);
            width: 100%;
            padding: 13px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            color: var(--text);
            background: #fdfcf9;
            transition: var(--transition);
            appearance: none;
            resize: vertical;
            min-height: 48px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.08);
            background: #fff;
        }

        .form-group input.error,
        .form-group textarea.error {
            border-color: var(--red);
            box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.06);
            background: #fff;
        }

        .form-group.error .error-msg {
            display: block;
        }

        .error-msg {
            font-size: 0.75rem;
            color: var(--red);
            font-weight: 600;
            display: none;
        }

        .rate-limit-banner {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--gold-pale);
            border: 1px solid var(--gold);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            margin-bottom: 18px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy);
        }

        .rate-limit-banner .rate-limit-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        fieldset {
            border: 0;
            padding: 0;
            margin: 0;
        }

        .service-select-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .service-select-card,
        .time-slot-pill {
            position: relative;
            cursor: pointer;
        }

        .service-select-card input,
        .time-slot-pill input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .service-select-card input:focus-visible,
        .time-slot-pill input:focus-visible,
        .emergency-toggle input:focus-visible {
            outline: none;
        }

        .card-label,
        .pill-label {
            border: 2px solid var(--border);
            background: #fdfcf9;
            transition: var(--transition);
            cursor: pointer;
            user-select: none;
            color: var(--text);
        }

        .card-label {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.82rem;
            font-weight: 600;
            min-height: 48px;
        }

        .card-label:hover,
        .pill-label:hover {
            border-color: #d5cfc2;
            background: #fff;
        }

        .service-select-card input:checked + .card-label,
        .time-slot-pill input:checked + .pill-label {
            border-color: var(--gold);
            background: var(--gold-pale);
            color: var(--navy);
            font-weight: 800;
            box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.06);
        }

        .service-select-card input:focus-visible + .card-label,
        .time-slot-pill input:focus-visible + .pill-label {
            box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.14);
        }

        .card-emoji {
            font-size: 1.15rem;
            flex-shrink: 0;
        }

        .card-icon-svg {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .card-icon-svg svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .service-select-card input:checked + .card-label .card-icon-svg svg {
            stroke: var(--navy);
        }

        .time-slot-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
        }

        .pill-label {
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 11px 8px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .emergency-toggle {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            user-select: none;
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            transition: var(--transition);
            background: #fdfcf9;
        }

        .emergency-toggle:hover {
            border-color: #d5cfc2;
        }

        .emergency-toggle input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .toggle-indicator {
            width: 48px;
            height: 28px;
            border-radius: 50px;
            background: #d5d0c8;
            position: relative;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .toggle-indicator::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #fff;
            transition: var(--transition);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .emergency-toggle input:checked + .toggle-indicator {
            background: var(--red);
        }

        .emergency-toggle input:focus-visible + .toggle-indicator {
            box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.14);
        }

        .emergency-toggle input:checked + .toggle-indicator::after {
            transform: translateX(20px);
        }

        .emergency-toggle.is-active {
            border-color: var(--red);
            background: var(--red-light);
        }

        .toggle-text {
            font-weight: 800;
            font-size: 0.86rem;
            color: var(--text);
        }

        .toggle-subtext {
            display: block;
            color: var(--text-muted);
            font-size: 0.76rem;
            font-weight: 600;
            margin-top: 1px;
        }

        .emergency-note {
            display: none;
            align-items: flex-start;
            gap: 8px;
            margin-top: 8px;
            padding: 10px 14px;
            background: var(--red-light);
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--red);
            line-height: 1.45;
        }

        .emergency-note.visible {
            display: flex;
        }

        .fieldset-help {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .optional-tag {
            font-weight: 400;
            font-size: 0.75rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .diagnostic-uploads {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0.75rem;
        }

        .diagnostic-upload-row {
            display: flex;
            flex-direction: column;
        }

        .diagnostic-upload-row.error input {
            border-color: var(--red);
        }

        .diagnostic-upload-row.error .error-msg {
            display: block;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.6rem;
            background: var(--blue-50);
            border: 1px solid var(--blue-200, rgba(30, 64, 175, 0.18));
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--blue);
            transition: background 0.15s;
        }

        .file-upload-label:hover {
            background: var(--blue-100, rgba(30, 64, 175, 0.08));
        }

        .file-upload-icon {
            font-size: 1rem;
        }

        .diagnostic-upload-row input[type="file"] {
            margin-top: 0.35rem;
            width: 100%;
            max-width: 100%;
            height: 40px;
            padding: 0;
            overflow: hidden;
            color: transparent;
            font-size: 0;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: #fdfcf9;
            cursor: pointer;
        }

        .diagnostic-upload-row input[type="file"]::file-selector-button {
            width: 100%;
            height: 100%;
            margin: 0;
            border: 0;
            border-radius: 7px;
            background: transparent;
            color: var(--navy);
            font: 700 0.78rem/1.2 inherit;
            cursor: pointer;
        }

        .diagnostic-upload-row input[type="file"]::-webkit-file-upload-button {
            width: 100%;
            height: 100%;
            margin: 0;
            border: 0;
            border-radius: 7px;
            background: transparent;
            color: var(--navy);
            font: 700 0.78rem/1.2 inherit;
            cursor: pointer;
        }

        .image-preview {
            display: none;
            margin-top: 0.4rem;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            max-width: 160px;
        }

        .image-preview.has-image {
            display: block;
        }

        .image-preview img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 120px;
        }

        .image-preview .preview-remove {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            padding: 0.25rem 0.4rem;
            font-size: 0.72rem;
            color: var(--red);
            cursor: pointer;
            border-top: 1px solid var(--border-light);
            background: rgba(255, 255, 255, 0.95);
        }

        .lookup-dropdown {
            display: none;
            position: absolute;
            z-index: 500;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            max-height: 220px;
            overflow-y: auto;
        }

        .lookup-dropdown.active {
            display: block;
        }

        .lookup-item {
            padding: 0.55rem 0.8rem;
            cursor: pointer;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: background 0.12s;
        }

        .lookup-item:last-child {
            border-bottom: none;
        }

        .lookup-item:hover {
            background: #eff6ff;
        }

        .lookup-name {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .lookup-sub {
            display: block;
            font-size: 0.73rem;
            color: var(--text-muted);
            margin-top: 0.1rem;
        }

        .lookup-empty {
            cursor: default;
            color: var(--text-muted);
            font-style: italic;
            font-size: 0.82rem;
            text-align: center;
        }

        .lookup-empty:hover {
            background: var(--surface);
        }

        .postcode-area-note {
            margin-top: 0.35rem;
            padding: 0.5rem 0.65rem;
            background: #fef3c7;
            border: 1px solid #fbbf24;
            border-radius: 8px;
            font-size: 0.78rem;
            color: #92400e;
            line-height: 1.45;
        }

        .review-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 998;
            background: rgba(26, 31, 60, 0.78);
            align-items: flex-start;
            justify-content: center;
            padding: 24px 14px;
            overflow-y: auto;
        }

        .review-overlay.active {
            display: flex;
        }

        .review-modal {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            max-width: 620px;
            width: 100%;
            padding: 28px 24px;
            box-shadow: var(--shadow-xl);
            animation: reviewSlideUp 0.25s ease-out;
        }

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

        .review-title {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--navy);
        }

        .review-section {
            margin-top: 18px;
        }

        .review-section-title {
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 0.5rem;
            padding-bottom: 0.45rem;
            border-bottom: 1px solid var(--border-light);
        }

        .review-field {
            display: grid;
            grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.55rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            font-size: 0.88rem;
        }

        .review-field:last-child {
            border-bottom: none;
        }

        .review-label {
            color: var(--text-muted);
            font-weight: 700;
        }

        .review-value {
            color: var(--text);
            font-weight: 800;
            text-align: right;
            word-break: break-word;
        }

        .review-field.review-error {
            background: var(--error-bg, rgba(220, 38, 38, 0.05));
            border-radius: 6px;
            padding: 0.45rem 0.55rem;
        }

        .review-field.review-error .review-value {
            color: var(--red);
        }

        .review-field.review-error .review-label::after {
            content: ' ⚠';
        }

        .review-images {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .review-images img {
            width: 90px;
            height: 68px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid var(--border-light);
        }

        .review-images .review-empty {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .review-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }

        .review-btn {
            flex: 1;
            min-height: 46px;
            padding: 0.72rem 1rem;
            border-radius: 10px;
            font-family: var(--font);
            font-size: 0.9rem;
            font-weight: 800;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .review-btn-edit {
            background: var(--white);
            color: var(--navy);
            border: 1px solid var(--border);
        }

        .review-btn-edit:hover {
            background: var(--cream);
        }

        .review-btn-confirm {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 4px 14px rgba(199, 150, 46, 0.3);
        }

        .review-btn-confirm:hover {
            background: var(--gold-light);
            box-shadow: 0 6px 20px rgba(199, 150, 46, 0.4);
        }

        .form-submit-area {
            margin-top: 8px;
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
        }

        .btn-submit {
            background: var(--gold);
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            padding: 16px 28px;
            border-radius: 50px;
            width: 100%;
            cursor: pointer;
            border: none;
            font-family: var(--font);
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(199, 150, 46, 0.3);
            letter-spacing: -0.1px;
        }

        .btn-submit:hover {
            background: var(--gold-light);
            box-shadow: 0 6px 24px rgba(199, 150, 46, 0.4);
            transform: translateY(-1px);
        }

        .btn-submit:disabled {
            opacity: 0.65;
            cursor: not-allowed;
            transform: none;
        }

        .success-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(26, 31, 60, 0.72);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .success-overlay.active {
            display: flex;
        }

        .success-modal {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 36px 24px;
            text-align: center;
            max-width: 440px;
            width: 100%;
            box-shadow: var(--shadow-xl);
            animation: modal-pop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modal-pop {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .check-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--green-light);
            color: var(--green);
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-circle svg {
            width: 38px;
            height: 38px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .success-modal h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .success-modal p {
            color: var(--text-light);
            font-size: 0.92rem;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .testimonial-card-form {
            max-width: 680px;
        }

        .testimonial-received {
            text-align: center;
            padding: 14px 0 4px;
        }

        .testimonial-received h3 {
            color: var(--navy);
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .testimonial-received p {
            color: var(--text-light);
            font-size: 0.92rem;
        }

        .btn-close-modal {
            background: var(--navy);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 800;
            cursor: pointer;
            font-family: var(--font);
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .btn-close-modal:hover {
            background: var(--navy-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 22px 18px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .testimonial-job {
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            margin-bottom: 10px;
            padding: 6px 10px;
            border-radius: 50px;
            background: var(--gold-pale);
            color: var(--navy);
            font-size: 0.74rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .testimonial-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.55;
            font-style: italic;
            margin-bottom: 12px;
        }

        .testimonial-author {
            font-weight: 800;
            font-size: 0.84rem;
            color: var(--navy);
        }

        .testimonial-author span {
            font-weight: 500;
            color: var(--text-muted);
            font-style: normal;
        }

        .footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.72);
            padding: 40px 16px 28px;
            text-align: center;
        }

        .footer-inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .footer .logo-group {
            justify-content: center;
            margin-bottom: 16px;
        }

        .footer .logo-text {
            color: #fff;
        }

        .footer p {
            font-size: 0.84rem;
            margin-bottom: 6px;
        }

        .footer-phone {
            color: var(--gold-light);
            font-weight: 800;
            font-size: 1rem;
            text-decoration: none;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 18px;
            margin-top: 18px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.8rem;
            font-weight: 700;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .footer-bottom {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.45);
        }

        .mobile-nav {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 90;
            background: #fff;
            border-top: 1px solid var(--border-light);
            padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
            gap: 4px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        }

        .mobile-nav-item {
            display: flex;
            min-width: 0;
            min-height: 52px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
            border-radius: 12px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.68rem;
            font-weight: 800;
            line-height: 1;
        }

        .mobile-nav-item svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mobile-nav-book {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 4px 14px rgba(199, 150, 46, 0.28);
        }

        .mobile-nav-call {
            background: var(--red);
            color: #fff;
            box-shadow: 0 4px 14px rgba(192, 57, 43, 0.24);
        }

        .mobile-nav-whatsapp {
            background: #1fa855;
            color: #fff;
            box-shadow: 0 4px 14px rgba(31, 168, 85, 0.24);
        }

        .mobile-nav-spacer {
            height: 76px;
        }

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

            .home-overview-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .service-select-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .time-slot-grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .form-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .full-width {
                grid-column: 1 / -1;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

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

            .about-wrapper {
                flex-direction: row;
                text-align: left;
                padding: 36px 32px;
                gap: 32px;
            }

            .about-photo {
                width: 168px;
                height: 168px;
            }

            .about-stats {
                justify-content: flex-start;
            }

            .booking-card {
                padding: 36px 32px;
            }

            .section-image {
                aspect-ratio: 16 / 6;
            }
        }

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

            .mobile-menu-toggle,
            .mobile-menu-panel {
                display: none;
            }

            .mobile-nav,
            .mobile-nav-spacer {
                display: none;
            }

            .hero {
                padding: 72px 16px 80px;
            }

            .section,
            .booking-section {
                padding: 72px 16px;
            }

            .legal-page-section {
                padding-top: 96px;
            }

            .review-overlay {
                align-items: center;
                padding: 40px 24px;
            }
        }

        @media (min-width: 900px) {
            .service-detail-layout {
                grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
                gap: 44px;
            }

            .service-detail-image {
                aspect-ratio: 5 / 4;
            }

            .booking-card,
            .booking-image {
                max-width: 1040px;
            }

            .booking-card {
                padding: 36px;
            }

            .booking-card-top {
                margin-bottom: 24px;
            }

            .booking-card .form-grid {
                grid-template-columns: repeat(12, minmax(0, 1fr));
                gap: 18px 20px;
            }

            .booking-card .form-group {
                grid-column: span 6;
            }

            .booking-card #group-address,
            .booking-card #group-service,
            .booking-card #group-time,
            .booking-card #group-description,
            .booking-card .form-group.full-width {
                grid-column: 1 / -1;
            }

            .booking-card #group-postcode {
                grid-column: span 4;
            }

            .booking-card #group-service .service-select-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 10px 12px;
            }

            .booking-card #group-time .time-slot-grid {
                grid-template-columns: repeat(6, minmax(0, 1fr));
                gap: 10px;
            }

            .booking-card .card-label {
                justify-content: flex-start;
                min-height: 56px;
                padding: 14px 16px;
            }

            .booking-card .pill-label {
                min-height: 48px;
            }
        }

        @media (min-width: 1200px) {
            .booking-card,
            .booking-image {
                max-width: 1160px;
            }

            .booking-card #group-service .service-select-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }

            .booking-card #group-time {
                grid-column: span 8;
            }
        }

        @media (max-width: 767px) {
            .review-modal {
                padding: 24px 18px;
            }

            .review-field {
                grid-template-columns: 1fr;
                gap: 3px;
            }

            .review-value {
                text-align: left;
            }

            .review-actions {
                flex-direction: column;
            }

            .footer {
                display: none;
            }

            .hero {
                padding-left: 14px;
                padding-right: 14px;
            }

            .hero-inner,
            .hero h1,
            .hero p,
            .hero-buttons {
                max-width: 100%;
            }

            .hero-inner {
                width: 100%;
                max-width: 300px;
            }

            .hero-badge {
                max-width: 100%;
                white-space: normal;
                justify-content: center;
                line-height: 1.3;
            }

            .header-cta .btn-primary {
                display: none;
            }

            .header-cta .phone-link span:last-child {
                display: none;
            }

            .phone-link {
                padding: 9px 11px;
                font-size: 0.85rem;
            }

            .hero h1 {
                font-size: 1.64rem;
                overflow-wrap: anywhere;
            }

            .hero p {
                font-size: 0.92rem;
                overflow-wrap: anywhere;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 260px;
                min-height: 56px;
            }

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

            .booking-card {
                padding: 20px 14px;
                border-radius: var(--radius-lg);
            }

            .section-image {
                margin-bottom: 22px;
                aspect-ratio: 4 / 3;
            }

            .booking-image {
                aspect-ratio: 4 / 3;
                margin-bottom: 14px;
            }

            .service-select-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }

            .time-slot-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 6px;
            }

            .pill-label {
                font-size: 0.72rem;
                padding: 10px 6px;
            }

            .card-label {
                font-size: 0.76rem;
                padding: 10px 10px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 14px;
                font-size: 0.9rem;
            }
        }

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

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

            .home-overview-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ============================================
           ADDITIONAL DESIGN TOKENS
        ============================================ */
        :root {
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --avatar-size: 44px;
            --fab-size: 52px;
        }

        /* ============================================
           TRUST STRIP ENHANCEMENTS
        ============================================ */
        .trust-strip {
            position: relative;
            overflow: hidden;
        }

        .trust-strip::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
        }

        .trust-item {
            padding: 4px 12px;
            border-radius: 50px;
            background: var(--cream);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .trust-item:hover {
            border-color: var(--gold-pale);
            background: #fff;
        }

        .trust-icon {
            background: var(--green-light);
            border-radius: 50%;
            width: 22px;
            height: 22px;
        }

        .trust-icon svg {
            width: 12px;
            height: 12px;
            stroke: var(--green);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        @media (min-width: 768px) {
            .trust-strip {
                padding: 22px 16px;
            }

            .trust-strip-inner {
                gap: 12px 20px;
            }
        }

        /* ============================================
           CARD HOVER REFINEMENTS
        ============================================ */
        .service-card,
        .home-overview-card,
        .testimonial-card {
            position: relative;
            overflow: hidden;
        }

        .service-card::before,
        .home-overview-card::before,
        .testimonial-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 2px solid transparent;
            transition: border-color var(--transition-slow), opacity var(--transition-slow);
            pointer-events: none;
            z-index: 1;
            opacity: 0;
        }

        .service-card:hover::before,
        .home-overview-card:hover::before,
        .testimonial-card:hover::before {
            border-color: var(--gold);
            opacity: 1;
        }

        .home-overview-card:active,
        .service-card:active {
            transform: scale(0.97);
        }

        .service-card-link {
            position: relative;
            z-index: 0;
        }

        .service-card-link::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(199, 150, 46, 0.04) 0%, transparent 50%);
            opacity: 0;
            transition: opacity var(--transition-slow);
            border-radius: var(--radius);
            pointer-events: none;
        }

        .service-card-link:hover::after {
            opacity: 1;
        }

        .home-overview-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .home-overview-card .service-icon {
            margin-bottom: 4px;
        }

        .home-overview-card-primary {
            position: relative;
        }

        .home-overview-card-primary::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            border: 2px solid var(--gold);
            opacity: 0.28;
            pointer-events: none;
        }

        /* ============================================
           FORM ENHANCEMENTS
        ============================================ */

        /* Error shake */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            20%      { transform: translateX(-4px); }
            40%      { transform: translateX(4px); }
            60%      { transform: translateX(-3px); }
            80%      { transform: translateX(2px); }
        }

        .form-group.error input,
        .form-group.error textarea,
        .form-group.error select {
            animation: shake 0.4s ease;
        }

        /* Loading spinner */
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .spinner svg {
            width: 100%;
            height: 100%;
            animation: spin 0.8s linear infinite;
        }

        .btn-submit[aria-busy="true"] {
            pointer-events: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* File upload drag feedback */
        .diagnostic-upload-row {
            position: relative;
        }

        .diagnostic-upload-row.drag-over input[type="file"] {
            border-color: var(--gold);
            border-style: solid;
            box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.08);
            background: var(--gold-pale);
        }

        .file-name-display {
            display: none;
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 4px;
            padding: 3px 8px;
            background: var(--cream);
            border-radius: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .file-name-display.visible {
            display: block;
        }

        /* Character counter */
        .char-counter {
            text-align: right;
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .char-counter.warning {
            color: var(--gold);
            font-weight: 700;
        }

        .char-counter.danger {
            color: var(--red);
            font-weight: 700;
        }

        /* Form submit area refinements */
        .form-submit-area {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-submit-note {
            font-size: 0.72rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* ============================================
           STAR RATING SYSTEM
        ============================================ */
        .stars-container {
            display: inline-flex;
            gap: 2px;
            align-items: center;
        }

        .star-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .star-icon.filled {
            color: var(--gold);
        }

        .star-icon.filled svg {
            fill: currentColor;
            stroke: none;
        }

        .star-icon.empty {
            color: var(--border);
        }

        .star-icon.empty svg {
            fill: none;
            stroke: currentColor;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .testimonial-stars {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-bottom: 8px;
        }

        .testimonial-stars .star-icon {
            width: 18px;
            height: 18px;
        }

        /* Star picker widget (for testimonial form) */
        .star-picker {
            display: flex;
            gap: 6px;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }

        .star-picker input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .star-picker label {
            cursor: pointer;
            color: var(--border);
            transition: color var(--transition);
        }

        .star-picker label svg {
            width: 28px;
            height: 28px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.5;
            transition: var(--transition);
        }

        .star-picker label:hover,
        .star-picker label:hover ~ label,
        .star-picker input:checked + label,
        .star-picker input:checked + label ~ label {
            color: var(--gold);
        }

        .star-picker label:hover svg,
        .star-picker label:hover ~ label svg,
        .star-picker input:checked + label svg,
        .star-picker input:checked + label ~ label svg {
            fill: currentColor;
            stroke: none;
        }

        /* ============================================
           AVATAR INITIALS
        ============================================ */
        .avatar-initials {
            width: var(--avatar-size);
            height: var(--avatar-size);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1rem;
            color: #fff;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }

        .testimonial-avatar {
            width: 36px;
            height: 36px;
            font-size: 0.82rem;
        }

        /* ============================================
           RICH TEXT BODY STYLES
           (service_detail_body, legal_page_body)
        ============================================ */
        .rich-text ul,
        .rich-text ol,
        .service-detail-body ul,
        .service-detail-body ol,
        .legal-page-body ul,
        .legal-page-body ol {
            padding-left: 1.25rem;
            margin: 10px 0;
        }

        .rich-text li,
        .service-detail-body li,
        .legal-page-body li {
            margin-bottom: 6px;
        }

        .rich-text ul li::marker,
        .service-detail-body ul li::marker,
        .legal-page-body ul li::marker {
            color: var(--gold);
        }

        .rich-text ol li::marker,
        .service-detail-body ol li::marker,
        .legal-page-body ol li::marker {
            color: var(--navy);
            font-weight: 700;
        }

        .rich-text blockquote,
        .service-detail-body blockquote,
        .legal-page-body blockquote {
            border-left: 4px solid var(--gold);
            background: var(--gold-pale);
            padding: 12px 18px;
            margin: 16px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: var(--navy);
        }

        .rich-text h2,
        .rich-text h3,
        .service-detail-body h2,
        .service-detail-body h3,
        .legal-page-body h2,
        .legal-page-body h3 {
            color: var(--navy);
            font-weight: 800;
            margin-top: 20px;
            margin-bottom: 8px;
        }

        .rich-text h2,
        .service-detail-body h2,
        .legal-page-body h2 {
            font-size: 1.2rem;
        }

        .rich-text h3,
        .service-detail-body h3,
        .legal-page-body h3 {
            font-size: 1.05rem;
        }

        .rich-text strong,
        .rich-text b,
        .service-detail-body strong,
        .service-detail-body b,
        .legal-page-body strong,
        .legal-page-body b {
            font-weight: 800;
            color: var(--navy);
        }

        .rich-text a,
        .service-detail-body a,
        .legal-page-body a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .rich-text a:hover,
        .service-detail-body a:hover,
        .legal-page-body a:hover {
            text-decoration: underline;
            color: var(--gold-light);
        }

        .rich-text code,
        .rich-text pre,
        .service-detail-body code,
        .service-detail-body pre,
        .legal-page-body code,
        .legal-page-body pre {
            font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;
            font-size: 0.85rem;
            background: var(--cream);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
        }

        .rich-text code,
        .service-detail-body code,
        .legal-page-body code {
            padding: 2px 6px;
        }

        .rich-text pre,
        .service-detail-body pre,
        .legal-page-body pre {
            padding: 14px 18px;
            overflow-x: auto;
            margin: 12px 0;
            line-height: 1.55;
        }

        /* ============================================
           SCROLL ANIMATIONS
        ============================================ */
        [data-animate] {
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate="fade-up"] {
            transform: translateY(32px);
        }

        [data-animate="fade-left"] {
            transform: translateX(-24px);
        }

        [data-animate="fade-right"] {
            transform: translateX(24px);
        }

        [data-animate="fade-in"] {
            transform: none;
        }

        [data-animate].animate-in {
            opacity: 1;
            transform: translate(0);
        }

        [data-animate-delay="100"]  { transition-delay: 0.1s; }
        [data-animate-delay="200"]  { transition-delay: 0.2s; }
        [data-animate-delay="300"]  { transition-delay: 0.3s; }
        [data-animate-delay="400"]  { transition-delay: 0.4s; }
        [data-animate-delay="500"]  { transition-delay: 0.5s; }
        [data-animate-delay="600"]  { transition-delay: 0.6s; }
        [data-animate-delay="700"]  { transition-delay: 0.7s; }
        [data-animate-delay="800"]  { transition-delay: 0.8s; }

        /* ============================================
           SKELETON LOADER
        ============================================ */
        @keyframes skeleton-pulse {
            0%, 100% { opacity: 0.4; }
            50%      { opacity: 0.8; }
        }

        .skeleton {
            background: linear-gradient(90deg, var(--border-light) 25%, var(--cream) 50%, var(--border-light) 75%);
            background-size: 200% 100%;
            animation: skeleton-pulse 1.8s ease-in-out infinite;
            border-radius: var(--radius-sm);
        }

        .skeleton-text {
            height: 14px;
            margin-bottom: 10px;
            width: 100%;
        }

        .skeleton-text.short {
            width: 60%;
        }

        .skeleton-heading {
            height: 28px;
            margin-bottom: 14px;
            width: 70%;
            border-radius: var(--radius-sm);
        }

        .skeleton-image {
            width: 100%;
            aspect-ratio: 16 / 8;
            border-radius: var(--radius-lg);
        }

        .skeleton-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }

        .skeleton-card {
            padding: 20px;
            background: #fff;
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
        }

        /* ============================================
           COOKIE CONSENT BANNER
        ============================================ */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 997;
            background: var(--navy);
            color: rgba(255, 255, 255, 0.88);
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
            font-size: 0.82rem;
            line-height: 1.45;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-banner.hidden {
            display: none;
        }

        .cookie-banner-text {
            flex: 1 1 250px;
            max-width: 520px;
            text-align: center;
        }

        .cookie-banner-text a {
            color: var(--gold-light);
            text-decoration: underline;
            font-weight: 600;
        }

        .cookie-banner-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.82rem;
            cursor: pointer;
            border: none;
            font-family: var(--font);
            transition: var(--transition);
            white-space: nowrap;
        }

        .cookie-btn-accept {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 4px 14px rgba(199, 150, 46, 0.3);
        }

        .cookie-btn-accept:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        .cookie-btn-settings {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .cookie-btn-settings:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        /* Cookie banner offset for mobile nav */
        @media (max-width: 767px) {
            .cookie-banner {
                bottom: 64px;
                padding-bottom: calc(14px + env(safe-area-inset-bottom));
            }
        }

        /* ============================================
           FLOATING WHATSAPP BUTTON
        ============================================ */
        .fab-whatsapp {
            position: fixed;
            bottom: 28px;
            right: 24px;
            z-index: 95;
            width: var(--fab-size);
            height: var(--fab-size);
            border-radius: 50%;
            background: #1fa855;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(31, 168, 85, 0.35);
            text-decoration: none;
            transition: var(--transition);
            animation: fab-pulse 2.5s infinite;
        }

        @keyframes fab-pulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(31, 168, 85, 0.35); }
            50%      { box-shadow: 0 4px 28px rgba(31, 168, 85, 0.55); }
        }

        .fab-whatsapp:hover {
            background: #178846;
            transform: scale(1.08);
            box-shadow: 0 8px 28px rgba(31, 168, 85, 0.45);
        }

        .fab-whatsapp:active {
            transform: scale(0.95);
        }

        .fab-whatsapp svg {
            width: 26px;
            height: 26px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .fab-label {
            position: absolute;
            right: calc(100% + 10px);
            top: 50%;
            transform: translateY(-50%);
            background: var(--navy);
            color: #fff;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition);
        }

        .fab-whatsapp:hover .fab-label {
            opacity: 1;
        }

        /* Mobile positioning */
        @media (max-width: 767px) {
            .fab-whatsapp {
                bottom: calc(84px + env(safe-area-inset-bottom));
                right: 16px;
                width: 48px;
                height: 48px;
            }

            .fab-whatsapp svg {
                width: 22px;
                height: 22px;
            }

            .fab-label {
                display: none;
            }
        }

        /* ============================================
           BACK TO TOP BUTTON
        ============================================ */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 24px;
            z-index: 94;
            width: var(--fab-size);
            height: var(--fab-size);
            border-radius: 50%;
            background: var(--navy);
            color: var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(26, 31, 60, 0.25);
            cursor: pointer;
            border: 2px solid transparent;
            transition: opacity 0.3s ease, transform var(--transition), box-shadow var(--transition);
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .back-to-top:hover {
            border-color: var(--gold);
            box-shadow: 0 6px 24px rgba(26, 31, 60, 0.35);
            transform: translateY(-2px);
        }

        .back-to-top:active {
            transform: scale(0.95);
        }

        .back-to-top svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Offset when WhatsApp fab is present */
        .back-to-top.has-whatsapp {
            bottom: calc(28px + var(--fab-size) + 12px);
        }

        @media (max-width: 767px) {
            .back-to-top {
                bottom: calc(76px + env(safe-area-inset-bottom));
                right: 12px;
                width: 40px;
                height: 40px;
            }

            .back-to-top svg {
                width: 18px;
                height: 18px;
            }

            .back-to-top.has-whatsapp {
                bottom: calc(76px + env(safe-area-inset-bottom) + 48px + 8px);
            }
        }

        /* ============================================
           SKIP LINK
        ============================================ */
        .skip-link {
            position: fixed;
            top: 12px;
            left: 12px;
            z-index: 9999;
            background: var(--navy);
            color: #fff;
            padding: 12px 22px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            transform: translateY(-150%);
            transition: transform 0.2s ease;
        }

        .skip-link:focus {
            transform: translateY(0);
            outline: 3px solid var(--gold);
            outline-offset: 3px;
        }

        /* ============================================
           COMPACT MOBILE FOOTER
        ============================================ */
        .footer-compact {
            display: none;
        }

        @media (max-width: 767px) {
            .footer-compact {
                display: block;
                background: var(--navy);
                color: rgba(255, 255, 255, 0.72);
                padding: 16px 16px;
                text-align: center;
                font-size: 0.78rem;
                line-height: 1.6;
            }

            .footer-compact a {
                color: var(--gold-light);
                text-decoration: none;
                font-weight: 700;
            }

            .footer-compact-row {
                display: flex;
                justify-content: center;
                gap: 18px;
                flex-wrap: wrap;
                margin-bottom: 6px;
            }

            .footer-compact-bottom {
                font-size: 0.7rem;
                color: rgba(255, 255, 255, 0.4);
                padding-top: 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }
        }

        /* ============================================
           BREADCRUMB
        ============================================ */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        .breadcrumb a {
            text-decoration: none;
            color: var(--gold);
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--navy);
        }

        .breadcrumb .breadcrumb-sep {
            color: var(--border);
            user-select: none;
        }

        .breadcrumb .breadcrumb-current {
            color: var(--text-light);
            font-weight: 800;
        }

        .breadcrumb svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ============================================
           ERROR PAGES
        ============================================ */
        .error-page {
            text-align: center;
            padding: clamp(40px, 10vh, 80px) 16px;
            max-width: 520px;
            margin: 0 auto;
        }

        .error-code {
            font-size: clamp(3rem, 10vw, 5rem);
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -2px;
        }

        .error-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: var(--gold-pale);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .error-icon svg {
            width: 42px;
            height: 42px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .error-page h1 {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .error-page p {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .error-page .btn {
            margin-bottom: 20px;
        }

        .error-emergency {
            font-size: 0.84rem;
            color: var(--text-muted);
        }

        .error-emergency a {
            color: var(--gold);
            font-weight: 700;
            text-decoration: none;
        }

        /* ============================================
           TESTIMONIAL CARD ENHANCEMENTS
        ============================================ */
        .testimonial-card {
            position: relative;
            padding-top: 36px;
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: -6px;
            left: 18px;
            font-size: 4rem;
            font-family: var(--font);
            font-weight: 900;
            color: var(--gold-pale);
            line-height: 1;
            pointer-events: none;
            z-index: 1;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .testimonial-meta {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .testimonial-author-name {
            font-weight: 800;
            font-size: 0.84rem;
            color: var(--navy);
        }

        .testimonial-author-label {
            font-size: 0.76rem;
            color: var(--text-muted);
        }

        .testimonial-card p {
            z-index: 0;
            position: relative;
        }

        /* ============================================
           MOBILE BOTTOM NAV ACTIVE STATE
        ============================================ */
        .mobile-nav-item.active {
            color: var(--gold);
        }

        .mobile-nav-item.active::before {
            content: '';
            position: absolute;
            bottom: 2px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
        }

        .mobile-nav-item {
            position: relative;
        }

        .mobile-nav-book.active {
            color: #fff;
        }

        .mobile-nav-book.active::before {
            background: #fff;
        }

        .mobile-nav-call.active,
        .mobile-nav-whatsapp.active {
            color: #fff;
        }

        .mobile-nav-call.active::before,
        .mobile-nav-whatsapp.active::before {
            background: #fff;
        }

        /* ============================================
           SECTION SPACING REFINEMENTS
        ============================================ */
        @media (min-width: 600px) {
            .section {
                padding: 72px 16px;
            }

            .section-header {
                margin-bottom: 48px;
            }
        }

        @media (min-width: 768px) {
            .section {
                padding: 88px 16px;
            }

            .hero {
                padding: 80px 16px 96px;
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding: 96px 16px;
            }
        }

        /* ============================================
           BOOKING CARD FORM REFINEMENTS
        ============================================ */
        .booking-card .emergency-toggle:focus-within {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.08);
        }

        /* Improved file upload visual */
        .diagnostic-upload-row input[type="file"] {
            transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
        }

        .diagnostic-upload-row input[type="file"]:hover {
            border-color: var(--gold-pale);
        }

        .diagnostic-upload-row input[type="file"]:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.08);
        }

        /* Service select card refinements */
        .card-label {
            min-height: 48px;
            transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
        }

        .service-select-card input:checked + .card-label {
            transform: translateY(-1px);
        }

        .pill-label {
            transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
        }

        .time-slot-pill input:checked + .pill-label {
            transform: translateY(-1px);
        }

        /* ============================================
           ABOUT SECTION REFINEMENTS
        ============================================ */
        .about-stat {
            text-align: center;
            min-width: 80px;
        }

        .about-stat .lbl {
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ============================================
           SUCCESS OVERLAY REFINEMENTS
        ============================================ */
        .success-modal {
            position: relative;
            overflow: hidden;
        }

        .success-modal::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(45, 125, 70, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        /* ============================================
           SERVICE DETAIL PAGE REFINEMENTS
        ============================================ */
        .service-detail-section .section-label {
            margin-top: 12px;
        }

        .service-detail-image {
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            background: var(--navy);
            position: relative;
        }

        .service-detail-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ============================================
           LEGAL PAGE REFINEMENTS
        ============================================ */
        .legal-page-body {
            font-size: 0.95rem;
            line-height: 1.8;
        }

        @media (min-width: 768px) {
            .legal-page-body {
                padding: 32px 28px;
            }
        }

        /* ============================================
           REDUCED MOTION
        ============================================ */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
            }

            [data-animate] {
                opacity: 1 !important;
                transform: none !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        /* ============================================
           PRINT STYLES
        ============================================ */
        @media print {
            .header,
            .footer,
            .footer-compact,
            .mobile-nav,
            .mobile-nav-spacer,
            .back-to-top,
            .fab-whatsapp,
            .cookie-banner,
            .success-overlay,
            .review-overlay {
                display: none !important;
            }

            body {
                background: #fff;
                color: #000;
            }

            .section {
                padding: 16px 0;
                page-break-inside: avoid;
            }

            .booking-card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
