/* ═══════════════════════════════════════════════════════════
   Oasis REHAB — Clean Healthcare Design
   Plus Jakarta Sans • Blue/White/Orange • Real Photos
   ═══════════════════════════════════════════════════════════ */


/* ── CSS Variables ───────────────────────────────────────── */

:root {
    --blue: #52ab98;
    --blue-dark: #1e3a8a;
    --blue-mid: #2563eb;
    --blue-light: #3b82f6;
    --blue-pale: #f2f2f2;
    --blue-50: #dbeafe;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-pale: #fff7ed;
    --green: #16a34a;
    --green-pale: #f0fdf4;
    --white: #ffffff;
    --bg: #f9fafb;
    --bg-blue: #eff6ff;
    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-l: #e4e5e5;
    --success: #16a34a;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #0891b2;
    --purple: #7c3aed;
    --indigo: #4338ca;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    /* Legacy compat */
    --primary: var(--blue);
    --primary-d: var(--blue-dark);
    --primary-l: var(--blue-light);
    --primary-xl: var(--blue-pale);
    --aqua: #06b6d4;
    --aqua-l: #cffafe;
    --green-l: var(--green-pale);
    --blue-deep: #0f172a;
    --blue-navy: #1e3a5f;
    --blue-mid-old: #1e40af;
    --blue-steel: #2563eb;
    --dark: var(--text-dark);
    --gray: var(--text-body);
    --gray-light: var(--text-light);
    --light: var(--border);
    --lighter: var(--bg);
    --font-primary: "Plus Jakarta Sans", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.11);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.13);
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 400ms ease;
}


/* ── Reset ───────────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

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

ul,
ol {
    list-style: none;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--blue);
}


/* ── Typography ─────────────────────────────────────────── */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

h4 {
    font-size: 1.15rem;
}

h5 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-primary {
    color: var(--blue) !important;
}

.text-orange {
    color: var(--blue) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-gray {
    color: var(--text-muted) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}


/* ── Layout ─────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.bg-light {
    background: var(--bg) !important;
}

.bg-blue {
    background: var(--bg-blue) !important;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 640px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 50px 0;
    }
}


/* Utility */

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 2rem !important;
}

.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.ml-auto {
    margin-left: auto;
}

.ml-2 {
    margin-left: 0.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-sm {
    gap: 0.5rem;
}

.w-full {
    width: 100%;
}


/* ── Section Header ──────────────────────────────────────── */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f2f2f2;
    border: 1px solid var(--blue-50);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 0.7rem;
}

.section-badge-orange {
    background: var(--orange-pale);
    border-color: #fed7aa;
    color: var(--orange-dark);
}

.section-badge-white {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0.75rem;
}

.section-label {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}


/* ── Announcement Bar ────────────────────────────────────── */

.announcement-bar {
    background: var(--blue);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.5rem 0;
    text-align: center;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.announcement-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    transition: color var(--transition);
}

.announcement-close:hover {
    color: #fff;
}


/* ── Header / Navbar ─────────────────────────────────────── */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 2rem;
    gap: 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    /* box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3); */
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* Desktop Nav */

.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
    .nav-desktop {
        display: none;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--blue);
    background: var(--blue-pale);
}

.nav-link.active {
    color: var(--blue);
    background: #f2f2f2;
}

.nav-chevron {
    font-size: 0.6rem;
    margin-left: 0.25rem;
    transition: transform var(--transition);
}

.has-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-ai-pill {
    background: #f2f2f2;
    color: #52ab98 !important;
    border: 1px solid #52ab98;
}

.nav-ai-pill:hover {
    background: linear-gradient(135deg, #ddd6fe, #bfdbfe) !important;
}


/* Mega Dropdown */

.has-dropdown {
    position: relative;
}

.dropdown-mega {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 480px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    color: var(--text-body);
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.dropdown-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 0.8rem;
    transition: all var(--transition);
    overflow: hidden;
}

.dropdown-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.dropdown-item:hover .dropdown-icon {
    background: var(--blue);
    color: #fff;
}

.dropdown-label {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 20px;
}


/* Nav Phone & Actions */

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-phone i {
    color: var(--blue);
}

@media (max-width: 1280px) {
    .nav-phone {
        display: none;
    }
}

.btn-nav-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    border: 2px solid var(--border);
    color: var(--text-dark);
    background: transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-nav-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
}

.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
    text-decoration: none;
    /* box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35); */
}

.btn-nav-primary:hover {
    background: var(--blue);
    transform: translateY(-1px);
    /* box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45); */
    color: #fff;
}


/* Hamburger */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius);
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition);
    border-radius: 2px;
    display: block;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

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

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

@media (max-width: 1100px) {
    .nav-toggle {
        display: flex;
    }
}


/* Nav Actions container */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}


/* Mobile Menu */

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 2px solid var(--border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.mobile-menu.open {
    display: flex;
    max-height: 100vh;
}

.mobile-nav {
    padding: 1rem 1.5rem 0;
    list-style: none;
}

.mobile-nav>li {
    border-bottom: 1px solid var(--border-l);
}

.mobile-nav>li:last-child {
    border-bottom: none;
}

.mobile-nav a,
.mobile-sub-toggle {
    display: flex;
    align-items: center;
    padding: 0.875rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-sub-toggle:hover {
    color: var(--blue);
}

.mobile-nav a.active {
    color: var(--blue);
}

.mobile-sub-toggle i {
    margin-left: auto;
    font-size: 0.65rem;
    transition: transform var(--transition);
}

.mobile-has-sub.open .mobile-sub-toggle i {
    transform: rotate(180deg);
}

.mobile-sub {
    list-style: none;
    padding-left: 1rem;
    display: none;
}

.mobile-has-sub.open .mobile-sub {
    display: block;
}

.mobile-sub a {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 1.5rem;
}


/* ── Buttons ─────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(29, 78, 216, 0.4);
    color: #fff;
}

.btn-orange {
    background: var(--blue);
    color: #fff;
    /* box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); */
}

.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    /* box-shadow: 0 8px 22px rgba(249, 115, 22, 0.45); */
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--blue);
}

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

.btn-dark:hover {
    background: #1f2937;
    transform: translateY(-2px);
    color: #fff;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}


/* ── Badges ──────────────────────────────────────────────── */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--blue-pale);
    color: var(--blue);
}

.badge-success {
    background: var(--green-pale);
    color: #15803d;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fef2f2;
    color: #b91c1c;
}

.badge-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
}

.badge-active {
    background: var(--green-pale);
    color: #15803d;
}

.badge-inactive {
    background: #fef2f2;
    color: #b91c1c;
}


/* Status badges */

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-active {
    background: #dcfce7;
    color: #15803d;
}

.status-inactive {
    background: #fef2f2;
    color: #b91c1c;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-completed {
    background: #ede9fe;
    color: #6d28d9;
}


/* ── Alerts ──────────────────────────────────────────────── */

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.alert-success {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-info {
    background: var(--blue-pale);
    color: var(--blue-dark);
    border: 1px solid var(--blue-50);
}

.alert-floating {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}

.alert-close {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    font-size: 1.25rem;
    opacity: 0.6;
}

.alert-close:hover {
    opacity: 1;
}


/* ── Forms ───────────────────────────────────────────────── */

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-dark);
    transition: border var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: var(--danger);
    font-size: 0.78rem;
    margin-top: 0.25rem;
}


/* ── Cards ───────────────────────────────────────────────── */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-slow);
}

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

.card-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}


/* ═══════════════════════════════════════════════════════════
   HERO SECTION — Full-width real photo background
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #0f172a;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 105deg, rgb(29 29 30 / 55%) 0%, rgb(19 19 20 / 38%) 50%, rgba(10, 20, 60, 0.4) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

.hero-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-heading span {
    color: var(--blue);
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.925rem 2.25rem;
    border-radius: var(--radius-full);
    background: var(--blue);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    /* box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45); */
}

.hero-btn-primary:hover {
    background: var(--blue);
    transform: translateY(-3px);
    /* box-shadow: 0 10px 28px rgba(249, 115, 22, 0.55); */
    color: #fff;
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.925rem 2.25rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-trust-item i {
    color: var(--blue);
}

.hero-trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}


/* Hero right: photo card */

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 900px) {
    .hero-visual {
        display: none;
    }
}

.hero-photo-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    height: 380px;
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: space-around;
}

.hero-stat-mini {
    text-align: center;
    color: #fff;
}

.hero-stat-mini .num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stat-mini .lbl {
    font-size: 0.65rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.1rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 3;
    cursor: pointer;
}

.hero-scroll-arrow {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}


/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */

.stats-bar {
    background: var(--blue);
    padding: 0;
    position: relative;
}

.stats-bar .stats-grid {
    display: flex;
    align-items: stretch;
}

.stats-bar .stat-item {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--transition);
}

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

.stats-bar .stat-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.stats-bar .stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stats-bar .stat-number span {
    color: #ffffff;
}

.stats-bar .stat-label {
    color: rgba(255, 255, 255);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.375rem;
    font-weight: 600;
}

.stat-divider {
    display: none;
}

@media (max-width: 768px) {
    .stats-bar .stats-grid {
        flex-wrap: wrap;
    }
    .stats-bar .stat-item {
        min-width: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 400px) {
    .stats-bar .stat-item {
        min-width: 100%;
    }
}


/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION — Cards with real images
   ═══════════════════════════════════════════════════════════ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

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

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

.service-card-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.scv2-img {
    /* height: 300px; */
    overflow: hidden;
    position: relative;
}

.scv2-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-v2:hover .scv2-img img {
    transform: scale(1.06);
}

.scv2-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, transparent 40%, rgba(10, 20, 60, 0.5) 100%);
}

.scv2-body {
    padding: 1.5rem;
}

.scv2-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.service-card-v2:hover .scv2-icon {
    background: var(--blue);
    color: #fff;
}

.scv2-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.scv2-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.scv2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-l);
}

.scv2-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.scv2-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.scv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    background: var(--blue);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.scv2-btn:hover {
    background: var(--blue);
    transform: translateX(2px);
    color: #fff;
}


/* Legacy service card */

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    background: var(--blue-pale);
    color: var(--blue);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
    color: #fff;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-outline-teal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--blue);
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-outline-teal:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3);
}


/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US — Image + Features layout
   ═══════════════════════════════════════════════════════════ */

.why-section {
    background: var(--bg);
}

.why-bg-decoration {
    display: none;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.why-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}

.why-intro {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-feature {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.why-feature:hover {
    border-color: var(--blue-50);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.why-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.5rem;
}

.why-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.why-feature p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}


/* Why Left — Photo column (new real-image layout) */

.why-photo-col {}

.why-photo-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.why-photo-wrap>img {
    /* width: 100%;
  height: 480px;
  object-fit: cover; */
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.why-photo-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem 1.375rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    z-index: 3;
}

.why-photo-exp {
    position: absolute;
    top: -1.25rem;
    left: -1.25rem;
    background: var(--blue);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
    z-index: 3;
}

.why-exp-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.why-exp-lbl {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.why-content-col {}

@media (max-width: 900px) {
    .why-photo-badge {
        right: 0;
        bottom: -1rem;
    }
    .why-photo-exp {
        left: 0;
        top: -1rem;
    }
    .why-photo-wrap>img {
        height: 320px;
    }
}


/* Why Right — Photo collage */

.why-right {}

.why-photo-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    height: 420px;
}

.why-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card-stack {
    position: relative;
}

.why-big-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.wbc-header {
    display: none;
}

.wbc-badge {
    display: none;
}

.wbc-progress-list {
    display: none;
}

.why-mini-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    z-index: 3;
    animation: floatUpDown 4s ease-in-out infinite;
}

.why-mini-1 {
    top: -1.25rem;
    right: -1.25rem;
    animation-delay: 0s;
}

.why-mini-2 {
    bottom: 1.5rem;
    left: -1.25rem;
    animation-delay: 2s;
}

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

.why-mini-card i {
    font-size: 1.25rem;
}

.wmc-title {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-dark);
}

.wmc-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════
   AI SECTION
   ═══════════════════════════════════════════════════════════ */

.ai-section {
    background: var(--blue);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.ai-section-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=60") center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.ai-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .ai-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.ai-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.ai-content h2 span {
    color: var(--blue);
}

.ai-content>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ai-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 0.85rem;
}

.ai-feature h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0rem;
}

.ai-feature p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    margin: 0;
}

.ai-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    background: var(--blue);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.ai-cta-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    color: #fff;
}


/* AI Chat Demo */

.ai-chat-demo {
    display: flex;
    justify-content: center;
}

.ai-chat-window {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.1rem 1.25rem;
    background: #f2f2f2;
}

.ai-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
}

.ai-chat-name {
    color: #54a591;
    font-weight: 700;
    font-size: 0.9rem;
}

.ai-chat-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.72rem;
    color: #000000;
}

.online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.ai-chat-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    min-height: 200px;
    background: var(--bg);
}

.ai-bubble {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 85%;
}

.ai-bubble-bot {
    background: var(--white);
    color: var(--text-body);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.ai-bubble-bot strong {
    color: var(--blue);
}

.ai-bubble-user {
    background: var(--blue);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.ai-chat-typing {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.625rem 1rem;
    align-self: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.ai-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typeDot 1.4s infinite;
}

.ai-chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typeDot {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.ai-chat-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.125rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.ai-chat-input input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    color: var(--text-body);
    font-size: 0.8rem;
    outline: none;
    font-family: var(--font-primary);
}

.ai-chat-input button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.ai-chat-input button:hover {
    background: var(--orange-dark);
    transform: scale(1.1);
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}


/* ═══════════════════════════════════════════════════════════
   TEAM SECTION — Real photos
   ═══════════════════════════════════════════════════════════ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

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

.team-card-v2 {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
}

.team-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tcv2-photo {
    /* height: 260px; */
    overflow: hidden;
    position: relative;
}

.tcv2-photo img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.team-card-v2:hover .tcv2-photo img {
    transform: scale(1.05);
}

.tcv2-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(10, 20, 60, 0.7), transparent);
}

.tcv2-avatar {
    display: none;
}

.tcv2-avatar-inner {
    display: none;
}

.tcv2-avatar-ring {
    display: none;
}

.tcv2-info {
    padding: 1.5rem;
    text-align: center;
}

.tcv2-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.tcv2-role {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.tcv2-quals {
    color: #212121;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.tcv2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tcv2-tags span {
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    background: #f2f2f2;
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 600;
}

.tcv2-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border-l);
    padding-top: 1.25rem;
}

.tcv2-stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.tcv2-stats strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.tcv2-stats small {
    font-size: 0.68rem;
    color: var(--text-muted);
}


/* Legacy team card */

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.team-image {
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-image i {
    font-size: 3rem;
    color: var(--blue);
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: var(--blue-pale);
}

.team-info {
    padding: 1.5rem;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.75rem;
}

.team-spec {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 600;
}

.team-cta-card {
    background: #f2f2f2;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px solid #52ab98;
}

.tcc-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: #52ab98;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.team-cta-card h3 {
    color: #52ab98;
}

.team-cta-card p {
    color: #000000;
    font-size: 0.875rem;
}

.tcc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    background: #52ab98;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    /* box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4); */
}

.tcc-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    color: #fff;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */

.testimonials-section {
    background: var(--bg);
}

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

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

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

.testimonial-v2 {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.testimonial-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-v2::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 4rem;
    color: #e4e4e4;
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.tv2-stars {
    color: #f59e0b;
    margin-bottom: 0.875rem;
    font-size: 0.85rem;
}

.testimonial-v2 h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial-v2 p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.5rem;
}

.tv2-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: auto;
}

.tv2-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    overflow: hidden;
}

.tv2-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv2-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.tv2-condition {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}


/* Legacy testimonial */

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-condition {
    font-size: 0.72rem;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgb(6 6 6 / 60%) 0%, rgb(17 17 18 / 28%) 100%);
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

.cta-banner-text h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    margin-bottom: 0.875rem;
}

.cta-banner-text p {
    color: rgba(255, 255, 255);
    max-width: 500px;
    line-height: 1.5;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-banner-actions {
        justify-content: center;
    }
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.925rem 2.25rem;
    border-radius: var(--radius-full);
    background: var(--blue);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    /* box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4); */
}

.cta-primary-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
    color: #fff;
}

.cta-ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.925rem 2.25rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.cta-ghost-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #fff;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   FACILITIES PAGE
   ═══════════════════════════════════════════════════════════ */


/* Gallery Strip */

.fac-gallery-section {
    background: #0a1428;
    padding: 0;
    position: relative;
    line-height: 0;
    /* collapse whitespace gaps between inline children */
}

.fac-gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* grid-template-rows: 420px; explicit row height — no browser rounding issues */
    gap: 3px;
}

.fac-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 100%;
    /* fill the grid row completely */
    min-height: 0;
    /* allow flex children to shrink inside grid */
}

.fac-gallery-item {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 0;
    /* prevent flex overflow in some browsers */
}

.fac-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fac-gallery-item:hover img {
    transform: scale(1.06);
}

.fac-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(4 4 4 / 47%) 0%, transparent 55%);
}

.fac-gi-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}


/* Section base */

.fac-section {
    padding: 5rem 0;
    background: var(--bg);
    position: relative;
    /* keeps sections in normal stacking flow */
}

.fac-section-alt {
    background: var(--white);
}

.fac-section-dark {
    background: #52ab98;
}

.fac-section-hd {
    margin-bottom: 3rem;
}

.fac-section-hd h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.fac-section-hd p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
}


/* Treatment Area Cards */

.fac-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.fac-area-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.fac-area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.fac-area-img {
    position: relative;
    /* height: 240px; */
    overflow: hidden;
}

.fac-area-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fac-area-card:hover .fac-area-img img {
    transform: scale(1.05);
}

.fac-area-img-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.875rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.fac-area-body {
    padding: 1.75rem;
}

.fac-area-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.625rem;
}

.fac-area-body p {
    color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.fac-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.fac-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
}

.fac-checklist li i {
    color: #52ab98;
    font-size: 0.75rem;
    flex-shrink: 0;
}


/* Equipment Grid */

.fac-equip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fac-equip-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fac-equip-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.fac-equip-img {
    position: relative;
    /* height: 180px; */
    overflow: hidden;
}

.fac-equip-img img {
    width: 100%;
    /* height: 100%;
  object-fit: cover; */
    filter: brightness(0.8);
    transition: transform 0.4s ease;
}

.fac-equip-card:hover .fac-equip-img img {
    transform: scale(1.07);
}

.fac-equip-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.fac-equip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fac-equip-body {
    padding: 1.25rem;
}

.fac-equip-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.fac-equip-body p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255);
    line-height: 1.6;
    margin: 0;
}


/* Amenity Cards */

.fac-amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fac-amenity-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.fac-amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-50);
}

.fac-amenity-img {
    /* height: 160px; */
    overflow: hidden;
}

.fac-amenity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fac-amenity-card:hover .fac-amenity-img img {
    transform: scale(1.06);
}

.fac-amenity-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: -26px 0 0 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

.fac-amenity-body {
    padding: 0.875rem 1.25rem 1.25rem;
}

.fac-amenity-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.fac-amenity-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}


/* Location */

.fac-location {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

.fac-loc-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fac-loc-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.125rem;
}

.fac-loc-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.fac-loc-card h5 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.fac-loc-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.65;
}

.fac-loc-card p a {
    color: var(--blue);
    font-weight: 600;
}

.fac-loc-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.fac-loc-map {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fac-map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.fac-map-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

.fac-map-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100px;
}

.fac-map-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fac-map-photo:hover img {
    transform: scale(1.07);
}


/* Facilities Responsive */

@media (max-width: 1024px) {
    .fac-areas-grid {
        grid-template-columns: 1fr;
    }
    .fac-location {
        grid-template-columns: 1fr;
    }
    .fac-gallery-strip {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .fac-equip-grid,
    .fac-amenity-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fac-gallery-strip {
        grid-template-columns: 1fr 1fr;
        height: 340px;
    }
    .fac-gallery-col:last-child {
        display: unset !important;
    }
    .fac-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .fac-equip-grid,
    .fac-amenity-grid {
        grid-template-columns: 1fr;
    }
    .fac-gallery-strip {
        grid-template-columns: 1fr;
        height: 240px;
    }
    .fac-gallery-col {
        display: unset !important;
    }
}


/* ═══════════════════════════════════════════════════════════
   CONDITIONS PAGE
   ═══════════════════════════════════════════════════════════ */


/* Category quick-nav */

.cond-nav-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 72px;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.cond-nav {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.cond-nav::-webkit-scrollbar {
    display: none;
}

.cond-nav-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.cond-nav-item:hover,
.cond-nav-item.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
    background: var(--blue-pale);
}

.cond-nav-item i {
    font-size: 0.8rem;
}


/* Section layout */

.cond-section {
    padding: 5rem 0;
    background: var(--bg);
}

.cond-section-alt {
    background: var(--white);
}


/* Category header */

.cond-cat-header {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.cond-cat-header-rev {
    grid-template-columns: 1fr 420px;
}

.cond-cat-header-rev .cond-cat-photo {
    order: 2;
}

.cond-cat-header-rev .cond-cat-info {
    order: 1;
}

.cond-cat-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-xl);
}

.cond-cat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cond-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.35rem 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.cond-cat-info h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    margin-bottom: 1rem;
}

.cond-cat-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.cond-cat-stats {
    display: flex;
    gap: 2rem;
}

.cond-cat-stats div {
    text-align: center;
}

.cond-cat-stats strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
}

.cond-cat-stats span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}


/* Condition cards grid */

.cond-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}


/* Condition card */

.cond-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cond-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-50);
}

.cond-card-img {
    position: relative;
    /* height: 200px; */
    overflow: hidden;
    flex-shrink: 0;
}

.cond-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.cond-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cond-card-body {
    padding: 1.375rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cond-card-body h4 {
    font-size: 0.975rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.cond-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.cond-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.2s;
}

.cond-card-link:hover {
    gap: 0.7rem;
    color: var(--blue);
}


/* Conditions Responsive */

@media (max-width: 1024px) {
    .cond-cat-header,
    .cond-cat-header-rev {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cond-cat-header-rev .cond-cat-photo,
    .cond-cat-header-rev .cond-cat-info {
        order: 0;
    }
    .cond-cat-photo {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .cond-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .cond-grid {
        grid-template-columns: 1fr;
    }
    .cond-nav-item {
        padding: 0.875rem 1rem;
        font-size: 0.78rem;
    }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */


/* Quick-contact strip */

.cnt-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.cnt-strip-grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.cnt-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
    padding: 1.375rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: background var(--transition);
}

.cnt-strip-item:hover {
    background: var(--bg);
}

.cnt-strip-sep {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    flex-shrink: 0;
}

.cnt-strip-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cnt-strip-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.cnt-strip-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .cnt-strip-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cnt-strip-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .cnt-strip-grid {
        grid-template-columns: 1fr;
    }
}


/* Main layout */

.cnt-section {
    padding: 5rem 0;
    background: var(--bg);
}

.cnt-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .cnt-layout {
        grid-template-columns: 1fr;
    }
}


/* ── Form card ─────────────────────────────────────── */

.cnt-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cnt-form-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2.25rem 1.75rem;
    background: #52ab98;
    color: #fff;
}

.cnt-form-header-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cnt-form-header h2 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.cnt-form-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255);
    margin: 0;
    line-height: 1.65;
}

.cnt-form {
    padding: 2rem 2.25rem 2.25rem;
}

.cnt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .cnt-form-row {
        grid-template-columns: 1fr;
    }
    .cnt-form,
    .cnt-form-header {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.cnt-field-wrap {
    margin-bottom: 1.25rem;
}

.cnt-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.cnt-req {
    color: var(--blue);
    margin-left: 2px;
}

.cnt-input-wrap {
    position: relative;
}

.cnt-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.cnt-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--text-dark);
    transition: border var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.cnt-input:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
}

.cnt-input::placeholder {
    color: var(--text-light);
}

.cnt-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5 8l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 18px;
    padding-right: 2.5rem;
}

.cnt-textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 0.875rem;
    line-height: 1.65;
    font-family: var(--font-primary);
    padding-left: 1rem;
    /* textarea — no icon */
}


/* Radio group */

.cnt-radio-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cnt-radio {
    cursor: pointer;
}

.cnt-radio input {
    display: none;
}

.cnt-radio-box {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
    user-select: none;
}

.cnt-radio-box:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.cnt-radio-box.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}


/* Submit */

.cnt-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    background: #52ab98;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition);
    /* box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35); */
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

.cnt-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    /* box-shadow: 0 10px 28px rgba(29, 78, 216, 0.45); */
}

.cnt-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.cnt-form-note {
    text-align: center;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.cnt-form-note i {
    color: var(--blue);
}


/* ── Info column ────────────────────────────────── */

.cnt-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}


/* Visit card */

.cnt-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cnt-info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 1.5rem;
    background: #52ab98;
    color: #fff;
}

.cnt-info-card-header i {
    font-size: 1.1rem;
}

.cnt-info-card-header h3 {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.cnt-info-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.cnt-address {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.125rem;
}

.cnt-address strong {
    color: var(--text-dark);
}

.cnt-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 200px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.cnt-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.375rem;
    border-radius: var(--radius-full);
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.cnt-directions-btn:hover {
    background: var(--blue);
    color: #fff;
}


/* Hours card */

.cnt-hours-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cnt-hours-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cnt-hours-header i {
    color: var(--blue);
    font-size: 1rem;
}

.cnt-hours-header h3 {
    font-size: 0.95rem;
    margin: 0;
}

.cnt-hours-list {
    list-style: none;
    padding: 0.75rem 1.5rem;
    margin: 0;
}

.cnt-hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-l);
}

.cnt-hours-list li:last-child {
    border-bottom: none;
}

.cnt-hours-day {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
}

.cnt-hours-open .cnt-hours-day i {
    color: var(--blue);
    font-size: 0.55rem;
}

.cnt-hours-closed .cnt-hours-day i {
    color: var(--blue);
    font-size: 0.55rem;
}

.cnt-hours-time {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cnt-hours-closed .cnt-hours-time {
    color: var(--blue);
}

.cnt-home-visit {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    background: #f2f2f2;
    font-size: 0.8rem;
    font-weight: 600;
    color: #52ab98;
    border-top: 1px solid #f2f2f2;
}

.cnt-home-visit i {
    font-size: 0.9rem;
}


/* Social card */

.cnt-social-card {
    background: #52ab98;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
}

.cnt-social-card p {
    color: rgba(255, 255, 255);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cnt-social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.cnt-social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.cnt-social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cnt-fb:hover {
    background: #1877f2;
}

.cnt-ig:hover {
    background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.cnt-yt:hover {
    background: #ff0000;
}

.cnt-li:hover {
    background: #0a66c2;
}


/* ── FAQ Section ────────────────────────────────── */

.cnt-faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.cnt-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .cnt-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.cnt-faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    transition: all var(--transition);
}

.cnt-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-50);
    background: var(--white);
}

.cnt-faq-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.125rem;
}

.cnt-faq-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.cnt-faq-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   AUTH PAGES  (login / register)
   ═══════════════════════════════════════════════════════════ */

.auth-body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: var(--bg);
    font-family: var(--font-primary);
}


/* Full-screen split wrapper */

.auth-wrap {
    display: flex;
    min-height: 100vh;
}


/* ── LEFT PANEL ─────────────────────────────────── */

.auth-left {
    position: relative;
    flex: 0 0 48%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .auth-left {
        display: none;
    }
}

.auth-left-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.auth-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 160deg, rgba(10, 18, 58, 0.93) 0%, rgba(29, 78, 216, 0.8) 60%, rgba(249, 115, 22, 0.25) 100%);
}

.auth-left-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 2.75rem 3rem;
    width: 100%;
}


/* Logo */

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    margin-bottom: auto;
    /* push hero to centre-ish */
}

.auth-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.auth-logo-mark.sm {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.auth-logo-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.auth-logo-name.sm {
    font-size: 1rem;
    color: var(--text-dark);
}

.auth-logo-tag {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-top: 0.15rem;
}


/* Hero text */

.auth-left-hero {
    margin: 2.5rem 0 2rem;
}

.auth-left-hero h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.auth-left-hero h1 span {
    color: var(--blue);
}

.auth-left-hero p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 380px;
}


/* Feature pills */

.auth-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 0.7rem 1rem;
    backdrop-filter: blur(6px);
}

.auth-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(249, 115, 22, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fb923c;
    flex-shrink: 0;
}

.auth-feature span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}


/* Testimonial */

.auth-testimonial {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 1.375rem 1.5rem;
    backdrop-filter: blur(8px);
    margin-top: auto;
}

.auth-testimonial-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.auth-testimonial p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1rem;
}

.auth-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--blue), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.auth-testimonial-author strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.auth-testimonial-author span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}


/* ── RIGHT PANEL ────────────────────────────────── */

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    overflow-y: auto;
}

.auth-form-wrap {
    width: 100%;
    max-width: 440px;
}


/* Mobile logo */

.auth-mobile-logo {
    display: none;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .auth-mobile-logo {
        display: flex;
    }
}


/* Form header */

.auth-form-head {
    margin-bottom: 2rem;
}

.auth-form-head h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.auth-form-head p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* Alert */

.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.125rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auth-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.auth-alert i {
    flex-shrink: 0;
}


/* Fields */

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-field {
    margin-bottom: 1.25rem;
}

.auth-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.auth-label-row .auth-label {
    margin-bottom: 0;
}

.auth-forgot {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.auth-forgot:hover {
    color: var(--blue);
}

.auth-input-wrap {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.auth-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 2.75rem;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--text-dark);
    outline: none;
    transition: border var(--transition), box-shadow var(--transition), background var(--transition);
    -webkit-appearance: none;
}

.auth-input:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
}

.auth-input::placeholder {
    color: var(--text-light);
}

.auth-pw-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0;
    line-height: 1;
    z-index: 1;
}

.auth-pw-toggle:hover {
    color: var(--blue);
}


/* Remember me */

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    user-select: none;
}

.auth-remember input {
    display: none;
}

.auth-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 5px;
    flex-shrink: 0;
    background: var(--bg);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-remember input:checked+.auth-checkbox {
    background: var(--blue);
    border-color: var(--blue);
}

.auth-remember input:checked+.auth-checkbox::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65rem;
    color: #fff;
}


/* Submit */

.auth-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.975rem;
    border: none;
    border-radius: var(--radius-lg);
    background: #52ab98;
    color: #fff;
    font-size: 0.975rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition);
    /* box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35); */
    letter-spacing: 0.3px;
}

.auth-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    /* box-shadow: 0 10px 28px rgba(29, 78, 216, 0.45); */
}

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


/* Divider */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}


/* WhatsApp button */

.auth-wa-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem;
    border: 2px solid #dcfce7;
    border-radius: var(--radius-lg);
    background: #f0fdf4;
    color: #15803d;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: all var(--transition);
}

.auth-wa-btn:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
    transform: translateY(-1px);
}

.auth-wa-btn i {
    font-size: 1.1rem;
}


/* Switch / register */

.auth-switch {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.auth-switch a {
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}

.auth-switch a:hover {
    color: var(--blue);
}


/* Demo box */

.auth-demo {
    margin-top: 1.75rem;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
}

.auth-demo-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.auth-demo-creds {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.auth-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-body);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition);
}

.auth-demo-btn:hover,
.auth-demo-btn.active {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
}

.auth-demo-btn.active {
    font-weight: 700;
}


/* Back link */

.auth-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.auth-back:hover {
    color: var(--blue);
}


/* Legacy CTA */

.cta {
    background: var(--blue);
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    /* background: #0f172a; */
    background: #f2f2f2;
    position: relative;
}

.footer-top {
    padding: 5rem 0 4.3rem;
    border-top: 3px solid var(--blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.footer-logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
}

.footer-logo-tagline {
    font-size: 0.65rem;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.footer-about {
    color: #282626;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.0rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #52ab98;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.82rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.375rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #282626;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--blue);
    opacity: 1;
    transition: all var(--transition);
    font-weight: bold;
}

.footer-links a:hover {
    color: #000000;
    padding-left: 0.375rem;
}

.footer-links a:hover i {
    opacity: 1;
}


/* Legacy footer-col */

.footer-col h4 {
    color: #52ab98;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-contact-list {
    list-style: none;
    padding-left: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    color: #282626;
    font-size: 0.875rem;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    background: #52ab98;
    border: 1px solid #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2f2f2;
    font-size: 0.75rem;
    margin-top: 0.05rem;
}

.footer-contact-list a {
    color: #282626;
    transition: color var(--transition);
}

.footer-contact-list a:hover {
    color: var(--blue);
}

.footer-book-cta {
    margin-top: 1.5rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    background: var(--blue);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    /* box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); */
}

.footer-cta-btn:hover {
    /* background: var(--orange-dark); */
    transform: translateY(-2px);
    color: #fff;
}


/* Legacy footer-contact */

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--blue-light);
    margin-top: 0.15rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact a:hover {
    color: var(--blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1rem 0;
    background: #52ab98
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(255, 255, 255);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copy strong {
    color: rgba(255, 255, 255);
}

.footer-bottom-content p {
    color: rgba(255, 255, 255);
    font-size: 0.8rem;
    margin: 0;
}

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

.footer-legal a {
    color: rgba(255, 255, 255);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal-sep {
    color: rgba(255, 255, 255);
}


/* ── WhatsApp Float ──────────────────────────────────────── */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: all var(--transition);
    animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}


/* ── Page Hero (inner pages) ─────────────────────────────── */

.page-hero {
    background: var(--blue-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse 80% 60% at 50% 50%, rgba(29, 78, 216, 0.3), transparent);
    pointer-events: none;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 0.875rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

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

.breadcrumb i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6rem;
}

.breadcrumb span {
    color: var(--blue);
    font-weight: 600;
}


/* ── Scroll Animations ───────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* ── Admin Compat ────────────────────────────────────────── */

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.admin-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-header h3 {
    margin: 0;
    font-size: 1rem;
}

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

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-l);
}

.admin-table th {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: var(--bg);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: var(--blue-pale);
}


/* ── Doctor/Team Cards (legacy) ──────────────────────────── */

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.doctor-img {
    aspect-ratio: 3/3.5;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--blue);
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.doctor-role {
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-quals {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}


/* ── Process Steps ───────────────────────────────────────── */

.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}


/* ── Booking Form ────────────────────────────────────────── */

.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}


/* ── Info Cards ──────────────────────────────────────────── */

.info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.info-card:hover {
    border-color: var(--blue-50);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.1rem;
}

.info-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* ── Gradient text ───────────────────────────────────────── */

.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── Misc ────────────────────────────────────────────────── */

.highlight-box {
    background: var(--blue-pale);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--blue-50);
}

.divider-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-wave svg {
    display: block;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.875rem;
    border-radius: var(--radius-full);
}

.feature-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

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


/* Legacy stats section */

.stats-section {
    background: var(--blue);
    padding: 5rem 0;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}


/* Legacy ai-section */

.ai-features .ai-feature {
    border: 1px solid rgba(255, 255, 255, 0.12);
}


/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES — Premium Layout
   ═══════════════════════════════════════════════════════════ */


/* Service Hero */

.svc-hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.svc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 105deg, rgb(58 57 57 / 45%) 0%, rgb(0 0 0 / 49%) 55%, rgba(10, 20, 60, 0.35) 100%);
}

.svc-hero-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 1.5rem 3.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.svc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255);
    transition: color 0.2s;
}

.svc-breadcrumb a:hover {
    color: #52ab98;
}

.svc-breadcrumb .bc-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.55rem;
}

.svc-breadcrumb span {
    color: #ffffff;
}

.svc-hero-content {
    max-width: 680px;
}

.svc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #52ab98;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.svc-hero-inner h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.875rem;
    line-height: 1.1;
}

.svc-hero-tagline {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.svc-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.svc-price-badge {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
}

.svc-price-badge .amt {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.svc-price-badge .per {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.svc-hero-cta {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.svc-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.825rem 2rem;
    border-radius: var(--radius-full);
    background: var(--blue);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.svc-book-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    color: #fff;
}

.svc-ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.825rem 1.75rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.svc-ghost-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}


/* Service Detail Layout */

.svc-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .svc-layout {
        grid-template-columns: 1fr;
    }
}


/* Intro block */

.svc-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

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

.svc-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
}

.svc-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-intro-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.875rem;
}

.svc-intro-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}


/* Section title */

.svc-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue-50);
}

.svc-section-title i {
    color: var(--blue);
}


/* Conditions grid */

.svc-conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    /* margin-bottom: 2rem; */
}

@media (max-width: 640px) {
    .svc-conditions-grid {
        grid-template-columns: 1fr;
    }
}

.svc-condition-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
}

.svc-condition-item:hover {
    border-color: var(--blue-50);
    background: var(--blue-pale);
    color: var(--blue);
}

.svc-condition-item i {
    color: #16a34a;
    font-size: 0.8rem;
    flex-shrink: 0;
}


/* Techniques grid */

.svc-techniques-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    /* margin-bottom: 2rem; */
}

@media (max-width: 640px) {
    .svc-techniques-grid {
        grid-template-columns: 1fr;
    }
}

.svc-technique-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.svc-technique-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-50);
}

.svc-tc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.svc-technique-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.svc-technique-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.7;
    margin: 0;
}


/* Process steps */

.svc-process {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* margin-bottom: 2rem; */
}

.svc-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom: none;
    transition: all var(--transition);
}

.svc-step:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.svc-step:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-bottom: 1px solid var(--border);
}

.svc-step:hover {
    background: var(--blue-pale);
}

.svc-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.svc-step-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.svc-step-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}


/* Outcome stats */

.svc-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    /* margin-bottom: 2rem; */
}

.svc-outcome-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: all var(--transition-slow);
}

.svc-outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.svc-outcome-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.svc-outcome-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/* FAQ accordion */

.svc-faq {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.svc-faq-item {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
}

.svc-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.125rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all var(--transition);
    font-family: var(--font-primary);
}

.svc-faq-q:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.svc-faq-q i {
    font-size: 0.7rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--blue);
}

.svc-faq-item.open .svc-faq-q {
    background: var(--blue-pale);
    color: var(--blue);
}

.svc-faq-item.open .svc-faq-q i {
    transform: rotate(180deg);
}

.svc-faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.8;
}

.svc-faq-item.open .svc-faq-a {
    max-height: 300px;
    padding: 1rem 1.5rem 1.25rem;
}


/* Sidebar */

.svc-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.svc-sb-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.svc-sb-head {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.svc-sb-head i {
    color: var(--blue);
}

.svc-sb-body {
    padding: 1.5rem;
}


/* Book card */

.svc-book-price {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

.svc-book-price .p-amt {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.svc-book-price .p-per {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.25rem;
}

.svc-book-price .p-dur {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}


/* Therapist sidebar card */

.svc-therapist {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg);
    margin-bottom: 1rem;
}

.svc-therapist-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.svc-therapist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.svc-therapist-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.svc-therapist-role {
    font-size: 0.72rem;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-therapist-quals {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}


/* Other services list */

.svc-other-list {
    list-style: none;
}

.svc-other-list li {
    border-bottom: 1px solid var(--border-l);
}

.svc-other-list li:last-child {
    border-bottom: none;
}

.svc-other-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    transition: all var(--transition);
}

.svc-other-list a:hover {
    color: var(--blue);
    padding-left: 0.375rem;
}

.svc-other-list a i {
    color: var(--text-light);
    font-size: 0.65rem;
    transition: color var(--transition);
}

.svc-other-list a:hover i {
    color: var(--blue);
}


/* Contact quick card */

.svc-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.svc-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    transition: all var(--transition);
    text-decoration: none;
}

.svc-contact-link:hover {
    border-color: var(--blue-50);
    background: var(--blue-pale);
    color: var(--blue);
}

.svc-contact-link i {
    width: 18px;
    text-align: center;
    color: var(--blue);
}


/* Section eyebrow tag */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    background: var(--blue-pale);
    border: 1px solid var(--blue-50);
    padding: 0.35rem 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.875rem;
}


/* ── Service Pages v2 — class aliases & additions ─────────── */


/* Hero: img used directly as bg */

img.svc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}


/* Hero content wrapper (alias of .svc-hero-inner) */

.svc-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 1.5rem 3.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.svc-hero-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.875rem;
    line-height: 1.1;
}

.svc-hero-title span {
    /* color: #52ab98; */
    color: #ffffff;
}

.svc-hero-sub {
    color: rgba(255, 255, 255);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.svc-hero-actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}


/* Hero CTA buttons */

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    background: #52ab98;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    /* box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45); */
}

.btn-primary-hero:hover {
    background: #52ab98;
    transform: translateY(-2px);
    color: #fff;
}

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-ghost-hero:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}


/* Section wrapper */

.svc-section {
    padding: 4rem 0;
    background: var(--bg);
}

.svc-main {
    min-width: 0;
}


/* Intro text column */

.svc-intro-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.svc-intro-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.svc-intro-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
}

.svc-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-intro-img-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.svc-intro-img-badge i {
    font-size: 1.25rem;
    color: var(--blue);
}

.svc-intro-img-badge strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
}

.svc-intro-img-badge small {
    font-size: 0.72rem;
    color: var(--text-muted);
}


/* Intro stats row */

.svc-intro-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.svc-istat {
    text-align: center;
}

.svc-istat span {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
}

.svc-istat small {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}


/* Block sections */

.svc-block {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.svc-block-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.svc-block-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.svc-block-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.svc-block-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}


/* Condition items (alias) */

.svc-cond-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.825rem 1.125rem;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
}

.svc-cond-item:hover {
    border-color: var(--blue-50);
    background: var(--blue-pale);
    color: var(--blue);
}

.svc-cond-item i {
    color: #52ab98;
    font-size: 0.85rem;
    flex-shrink: 0;
}


/* Technique cards (alias) */

.svc-tech-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.svc-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-50);
}

.svc-tech-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.svc-tech-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.svc-tech-card p {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.5;
    margin: 0;
}


/* Step body (alias) */

.svc-step-body h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.svc-step-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.svc-step-body {
    flex: 1;
}

.svc-step.last {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-bottom: 1px solid var(--border);
}

.svc-step-time {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-pale);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
    vertical-align: middle;
}


/* Outcome aliases */

.svc-oc-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--blue);
}

.svc-oc-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/* FAQ icon: rotate 45deg so plus becomes X */

.svc-faq-item.open .svc-faq-q i {
    transform: rotate(45deg);
}


/* Sidebar label (alias of .svc-sb-head) */

.svc-sb-label {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.svc-sb-label i {
    color: var(--blue);
}

.svc-sb-card>*:not(.svc-book-price):not(.svc-sb-label) {
    padding: 1rem 1.25rem;
}

.svc-sb-card>.svc-sb-label+* {
    padding-top: 1.25rem;
}

.svc-sb-card>*:last-child {
    padding-bottom: 1.25rem;
}

.svc-sb-card {
    padding: 0;
}


/* Book price card */

.svc-book-price {
    background: var(--blue);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.25rem;
    text-align: center;
}

.svc-book-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.svc-book-per {
    font-size: 0.78rem;
    color: rgba(255, 255, 255);
    margin-top: 0.3rem;
}


/* Book buttons */

.svc-btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 1.25rem 0.75rem;
    padding: 0.875rem 1.5rem;
    background: #52ab98;
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    /* box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4); */
}

.svc-btn-book:hover {
    background: #52ab98;
    transform: translateY(-1px);
    color: #fff;
}

.svc-btn-consult {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 1.25rem 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--blue);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--blue-50);
    transition: all var(--transition);
}

.svc-btn-consult:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.svc-book-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-light);
    padding: 0.5rem 1.25rem 1rem;
    line-height: 1.6;
}


/* Therapist card */

.svc-therapist {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
}

.svc-therapist-photo {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--blue-50);
}

.svc-therapist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.svc-therapist-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.svc-therapist-qual {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0 0 0.2rem;
}

.svc-therapist-exp {
    font-size: 0.75rem;
    color: var(--blue);
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.svc-therapist-exp i {
    margin-right: 0.2rem;
}

.svc-btn-therapist {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--blue-50);
    transition: all var(--transition);
}

.svc-btn-therapist:hover {
    background: var(--blue);
    color: #fff;
}


/* Contact items */

.svc-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
}

.svc-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    transition: all var(--transition);
    text-decoration: none;
}

.svc-contact-item:hover {
    border-color: var(--blue-50);
    background: var(--blue-pale);
    color: var(--blue);
}

.svc-ci-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}


/* Other services list */

.svc-other-list {
    list-style: none;
    padding: 0.25rem 1.25rem 0;
    margin: 0;
}

.svc-other-list li {
    border-bottom: 1px solid var(--border);
}

.svc-other-list li:last-child {
    border-bottom: none;
}

.svc-other-list a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    transition: all var(--transition);
    text-decoration: none;
}

.svc-other-list a:hover {
    color: var(--blue);
    padding-left: 0.25rem;
}

.svc-other-list a i {
    width: 18px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.svc-other-list a:hover i {
    color: var(--blue);
}


/* ═══════════════════════════════════════════════════════════
   CONDITIONS / FACILITIES — Blue Stats Bar
   ═══════════════════════════════════════════════════════════ */

.cond-stats-bar {
    background: var(--blue);
    padding: 1.25rem 0;
}

.cond-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.cond-stat {
    text-align: center;
    padding: 0.5rem 2.5rem;
}

.cond-stat span {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.cond-stat small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cond-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cond-stats-inner {
        gap: 0;
    }
    .cond-stat {
        padding: 0.5rem 1.25rem;
    }
    .cond-stat-div {
        display: none;
    }
}


/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — Stat Strip
   ═══════════════════════════════════════════════════════════ */

.svc-stat-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.125rem 0;
}

.svc-stat-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.svc-stat-strip-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
}

.svc-stat-strip-item i {
    color: var(--blue);
    font-size: 1rem;
}

.svc-stat-strip-sep {
    width: 1px;
    height: 28px;
    background: var(--border);
}

@media (max-width: 768px) {
    .svc-stat-strip-grid {
        gap: 0.25rem 0;
    }
    .svc-stat-strip-item {
        padding: 0.375rem 1.25rem;
        font-size: 0.82rem;
    }
    .svc-stat-strip-sep {
        display: none;
    }
}


/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — Alternating rows
   ═══════════════════════════════════════════════════════════ */

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--border-l);
}

.svc-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.svc-row-reverse {
    direction: rtl;
}

.svc-row-reverse>* {
    direction: ltr;
}

@media (max-width: 900px) {
    .svc-row,
    .svc-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
        margin-bottom: 3.5rem;
        padding-bottom: 3.5rem;
    }
}


/* Photo side */

.svc-row-photo {
    position: relative;
}

.svc-row-photo-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.svc-row-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svc-row:hover .svc-row-photo-wrap img {
    transform: scale(1.04);
}

.svc-row-photo-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/* Content side */

.svc-row-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.svc-row-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.svc-row-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.svc-row-highlights {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem 1rem;
}

.svc-row-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-body);
}

@media (max-width: 480px) {
    .svc-row-highlights {
        grid-template-columns: 1fr;
    }
}

.svc-row-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.svc-row-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.svc-row-meta-item i {
    color: var(--blue);
}

.svc-row-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.svc-row-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.svc-row-btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    color: #fff;
}

.svc-row-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--border);
    color: var(--text-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
    background: transparent;
}

.svc-row-btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — Promise Grid
   ═══════════════════════════════════════════════════════════ */

.svc-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .svc-promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.svc-promise-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.svc-promise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.svc-promise-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
}

.svc-promise-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
}

.svc-promise-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* CTA banner (photo bg version) */

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: var(--blue);
}

img.cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 105deg, rgb(10 10 10 / 52%) 0%, rgb(0 0 0 / 46%) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner-content h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-banner-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ════════════════════════════════════════════════════════════
   BOOKING PAGE
════════════════════════════════════════════════════════════ */


/* Trust strip */

.bk-trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
}

.bk-trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0;
}

.bk-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.bk-trust-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.bk-trust-item strong {
    color: var(--text);
}

.bk-trust-sep {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}


/* Section & layout */

.bk-section {
    padding: 3.5rem 0 5rem;
    background: var(--bg);
}

.bk-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}


/* Form column */

.bk-form-col {
    min-width: 0;
}


/* Step tracker */

.bk-steps {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    gap: 0;
}

.bk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
}

.bk-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: #fff;
    transition: all 0.25s;
}

.bk-step-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.25s;
}

.bk-step.active .bk-step-num {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.bk-step.active .bk-step-lbl {
    color: var(--blue);
}

.bk-step.done .bk-step-num {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.bk-step.done .bk-step-lbl {
    color: #16a34a;
}

.bk-step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 0.5rem;
    margin-bottom: 1rem;
    transition: background 0.25s;
}


/* Card / pane */

.bk-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.bk-pane {
    display: none;
}

.bk-pane.active {
    display: block;
}

.bk-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.bk-card-head h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.bk-card-head p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.bk-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}


/* 2-col grid */

.bk-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.25rem;
}


/* Service selection cards */

.bk-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.bk-svc-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.bk-svc-card input {
    display: none;
}

.bk-svc-card:hover {
    border-color: var(--blue);
    background: #f8fbff;
}

.bk-svc-card.selected {
    border-color: var(--blue);
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.bk-svc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bk-svc-info {
    flex: 1;
    min-width: 0;
}

.bk-svc-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.1rem;
    line-height: 1.3;
}

.bk-svc-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bk-svc-check {
    font-size: 1.1rem;
    color: var(--border);
    transition: color 0.2s;
}

.bk-svc-card.selected .bk-svc-check {
    color: var(--blue);
}


/* Time slots */

.bk-time-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.35rem;
}

.bk-slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.bk-slot {
    padding: 0.4rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.18s;
}

.bk-slot:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #f0f9ff;
}

.bk-slot.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}


/* Location cards */

.bk-loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.bk-loc-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.bk-loc-card input {
    display: none;
}

.bk-loc-card:hover {
    border-color: var(--blue);
}

.bk-loc-card.selected {
    border-color: var(--blue);
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.bk-loc-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bk-loc-text {
    flex: 1;
}

.bk-loc-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.bk-loc-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bk-loc-card .bk-svc-check {
    font-size: 1.1rem;
    color: var(--border);
}

.bk-loc-card.selected .bk-svc-check {
    color: var(--blue);
}


/* Step navigation buttons */

.bk-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    gap: 1rem;
}

.bk-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
}

.bk-btn-next:hover {
    background: #0284c7;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
    color: #fff;
}

.bk-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.68rem 1.3rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.bk-btn-back:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #f0f9ff;
}


/* Review box (step 3) */

.bk-review {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.bk-review-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text);
}

.bk-review-item i {
    width: 16px;
    font-size: 0.85rem;
    color: var(--blue);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.bk-review-item span {
    line-height: 1.4;
}


/* Submit button */

.bk-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--blue), #0284c7);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
    letter-spacing: 0.02em;
}

.bk-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.4);
    transform: translateY(-1px);
}

.bk-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* Success state */

.bk-success {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.bk-success-icon {
    font-size: 3.5rem;
    color: #16a34a;
    margin-bottom: 1.25rem;
}

.bk-success h2 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.bk-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.bk-success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}


/* ── SIDEBAR ──────────────────────────────────── */

.bk-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}


/* Summary card */

.bk-summary-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.bk-summary-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    background: #52ab98;
    color: #fff;
}

.bk-summary-head i {
    font-size: 1rem;
}

.bk-summary-head h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.bk-summary-body {
    padding: 1.1rem 1.25rem;
}

.bk-summ-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
    gap: 0.5rem;
}

.bk-summ-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.bk-summ-val {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-align: right;
}

.bk-summ-placeholder {
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
}

.bk-summ-divider {
    height: 1px;
    background: var(--border);
    margin: 0.85rem 0;
}

.bk-summ-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.bk-summ-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue);
}


/* Trust badges card */

.bk-trust-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bk-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bk-trust-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bk-trust-badge-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
}

.bk-trust-badge-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}


/* AI card */

.bk-ai-card {
    background: #52ab98;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bk-ai-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bk-ai-text strong {
    font-size: 0.88rem;
    display: block;
    margin-bottom: 0.25rem;
}

.bk-ai-text p {
    font-size: 0.78rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.bk-ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
}

.bk-ai-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}


/* Call card */

.bk-call-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.bk-call-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
    transform: translateY(-1px);
}

.bk-call-icon {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.bk-call-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.bk-call-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}


/* Validation error */

.bk-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}


/* Toast notifications */

.bk-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #1e293b;
    color: #fff;
    border-radius: 50px;
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    opacity: 0;
    white-space: nowrap;
}

.bk-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.bk-toast-error i {
    color: #f87171;
}

.bk-toast-success i {
    color: #4ade80;
}


/* Responsive */

@media (max-width: 1024px) {
    .bk-layout {
        grid-template-columns: 1fr;
    }
    .bk-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .bk-service-grid {
        grid-template-columns: 1fr;
    }
    .bk-form-grid-2 {
        grid-template-columns: 1fr;
    }
    .bk-loc-grid {
        grid-template-columns: 1fr;
    }
    .bk-review {
        grid-template-columns: 1fr;
    }
    .bk-trust-grid {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }
    .bk-trust-sep {
        display: none;
    }
    .bk-steps {
        padding: 0.85rem 1rem;
    }
    .bk-step-lbl {
        display: none;
    }
    .bk-card {
        padding: 1.25rem;
    }
}


/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .hero-scroll-hint {
        display: none;
    }
    .announcement-bar {
        font-size: 0.72rem;
    }
    .header-inner {
        padding: 0 1.25rem;
    }
    .cta-banner {
        padding: 3.5rem 0;
    }
    .ai-section {
        padding: 4rem 0;
    }
    .footer-top {
        padding: 3.5rem 0 2rem;
    }
    .section {
        padding: 50px 0;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }
    .hero-btn-primary,
    .hero-btn-ghost {
        text-align: center;
        justify-content: center;
    }
    .cta-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-primary-btn,
    .cta-ghost-btn {
        justify-content: center;
    }
}

.about_p {
    line-height: 23px;
}

.border_radius_10 {
    border-radius: 10px;
}

.ai_btn {
    background: #f2f2f2 !important;
    color: var(--blue) !important;
}


/* Mobile Responsive */


/* =========================================
   MOBILE HEADER FIX
========================================= */

@media (max-width: 576px) {
    .header-inner {
        height: 68px;
        padding: 0 0.5rem;
        gap: 0.35rem;
    }
    /* LOGO AREA */
    .logo {
        flex: 1;
        min-width: 0;
        gap: 0.45rem;
        overflow: hidden;
    }
    .logo-mark {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.9rem;
    }
    .logo-text {
        min-width: 0;
        overflow: hidden;
    }
    .logo-name {
        font-size: 0.92rem;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .logo-tagline {
        font-size: 0.5rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* RIGHT ACTIONS */
    .nav-actions {
        gap: 0.3rem;
        flex-shrink: 0;
    }
    .btn-nav-outline,
    .btn-nav-primary {
        padding: 0.42rem 0.65rem;
        font-size: 0.7rem;
        gap: 0.3rem;
        height: 38px;
    }
    .btn-nav-outline i,
    .btn-nav-primary i {
        font-size: 0.7rem;
        margin: 0;
    }
    .nav-toggle {
        width: 38px;
        height: 38px;
        padding: 0;
        flex-shrink: 0;
    }
    .nav-toggle span {
        width: 16px;
    }
    .about-hero {
        min-height: 0 !important;
    }
    .svc-intro {
        padding: 1.5rem !important;
    }
    .footer-grid {
        gap: 1.5rem !important;
    }
    .cta-banner-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    .btn-primary-hero {
        padding: 0.7rem 2rem !important;
    }
    .btn-ghost-hero {
        padding: 0.7rem 1.7rem !important;
    }
    .footer-bottom-inner {
        justify-content: center !important;
    }
    .svc-faq-q {
        padding: 1rem 1.2rem !important;
    }
    .svc-block-header h2 {
        font-size: 1.0rem !important;
    }
    .svc-outcomes {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .svc-step {
        gap: 1rem !important;
        padding: 1rem !important;
    }
    .svc-step-body p {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }
    .svc-step-time {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.6rem !important;
        margin-bottom: 4px !important;
        margin-top: 4px !important;
    }
    .svc-block-header p {
        line-height: 17px !important;
    }
    .svc-faq-a p {
        line-height: 18px !important;
        font-size: 13px !important;
    }
    .svc-tech-card p {
        line-height: 1.4 !important;
    }
    .svc-cond-item {
        font-size: 0.8rem !important;
    }
    .svc-intro-text p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-top: 11px !important;
    }
    .svc-intro-img {
        height: auto !important;
    }
    .svc-hero-content {
        padding: 3rem 1.5rem 3rem !important;
    }
    .svc-hero-sub {
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
    }
    .svc-hero-actions {
        margin-top: 1rem !important;
    }
    .btn-primary-hero {
        padding: 0.7rem 1.7rem !important;
        font-size: 0.9rem;
    }
    .svc-hero-actions {
        flex-wrap: wrap !important;
    }
    .fac-gallery-strip {
        grid-template-columns: 1fr;
        height: auto;
    }
    .fac-gallery-col {
        display: unset !important;
    }
    .fac-section-hd p {
        line-height: 1.4 !important;
    }
    .fac-area-body p {
        line-height: 1.5 !important;
    }
    .fac-checklist {
        gap: 0.2rem !important;
    }
    .fac-amenity-body p {
        line-height: 1.5 !important;
    }
    .fac-loc-card p {
        line-height: 1.5 !important;
    }
    .svc-hero-sub {
        font-size: 0.9rem !important;
    }
    .cnt-form-header p {
        line-height: 1.4 !important;
    }
    .cnt-field-wrap {
        margin-bottom: 0.6rem !important;
    }
    .cnt-form-row {
        gap: 0rem !important;
    }
    .cnt-radio-box {
        gap: 0.45rem !important;
        padding: 0.4rem 0.7rem !important;
    }
    .cnt-faq-item p {
        line-height: 1.5 !important;
    }
    .cnt-faq-icon {
        margin-bottom: 1rem !important;
    }
    .svc-hero {
        min-height: 0 !important;
    }
    .mobile-actions {
        flex-direction: row !important;
    }
    .btn-nav-outline,
    .btn-nav-primary {
        justify-content: center !important;
    }
    .svc-block {
        padding: 1.5rem !important;
    }
    .why-photo-wrap>img {
        height: auto !important;
    }
    .why-feature p {
        line-height: 1.3 !important;
    }
    .ai-feature p {
        line-height: 17px !important;
    }
    .ai-feature h4 {
        margin-bottom: 0.2rem !important;
    }
    .section-header p {
        font-size: 1rem !important;
    }
    .testimonial-v2 p {
        line-height: 1.6 !important;
    }
    .footer-about {
        line-height: 1.6 !important;
    }
    .why-feature h4 {
        margin-bottom: 0.2rem !important;
    }
    .why-feature-icon {
        width: 55px !important;
        height: 55px !important;
    }
    .scv2-desc {
        line-height: 1.5 !important;
    }
}

i.fas.fa-chevron-right.text-white {
    color: #ffffff;
}