/* ═══════════════════════════════════════════════════════════
   DR. LAZİZ RASULOV — PREMIUM DERMATOLOGY & AESTHETIC CLINIC
   Lancerderm-Inspired "Quiet Luxury" Design System
   Palette: Deep Navy × Clean White × Warm Gold
═══════════════════════════════════════════════════════════ */

/* ── 0. Google Fonts ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ── 1. CSS Variables ──────────────────────────────────── */
:root {
    /* Core Palette – Quiet Luxury */
    --navy: #131b4b;
    --navy-mid: #1e2a6e;
    --navy-light: #2d3d8a;
    --navy-dark: #0b1235;
    --gold: #c9a35a;
    --gold-light: #f1b06e;
    --gold-pale: #fdf4e7;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f7f8fb;
    --grey-1: #f0f1f5;
    --grey-2: #e2e8f0;
    --grey-3: #cbd5e0;

    /* Text */
    --text-dark: #131b4b;
    --text-body: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;

    /* Accent (minimal usage) */
    --teal: #0093b2;
    --teal-light: #e0f7fa;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(19, 27, 75, 0.06);
    --shadow-sm: 0 2px 12px rgba(19, 27, 75, 0.08);
    --shadow-md: 0 8px 32px rgba(19, 27, 75, 0.12);
    --shadow-lg: 0 20px 60px rgba(19, 27, 75, 0.16);
    --shadow-xl: 0 32px 80px rgba(19, 27, 75, 0.20);

    /* Transitions */
    --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --nav-h: 74px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    /* Legacy / compat */
    --petrol: #1b5a60;
    --petrol-mid: #2b6f71;
    --petrol-soft: #e6f4f2;
    --teal-bright: #00bcd4;
    --teal-glow: rgba(0, 188, 212, 0.15);
    --input-bg: rgba(255, 255, 255, 0.07);
    --form-bg: rgba(6, 13, 26, 0.95);
}

/* ── 2. Reset & Base ────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

/* ── 3. Layout Utilities ────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-large {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* ── 4. UNIFIED STICKY NAVBAR ───────────────────────────── */
/* Hide the legacy top bar & header — new nav replaces them */
.top-bar-clone {
    display: none !important;
}

.header-contact-clone {
    display: none !important;
}

.main-nav-clone {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--grey-2);
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--t), padding var(--t);
    height: var(--nav-h);
    display: flex;
    align-items: center;
}

.main-nav-clone.scrolled {
    box-shadow: var(--shadow-sm);
}

.main-nav-clone .container-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Nav Logo */
.nav-logo-block {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0;
    min-width: unset;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.nav-logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.3;
    display: block;
    max-width: 260px;
    white-space: normal;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin-left: 26px;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-body);
    letter-spacing: 0.4px;
    padding: 10px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: color var(--t), background var(--t);
    position: relative;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 1.5px;
    background: var(--navy);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}

.nav-menu>li>a:hover {
    color: var(--navy);
}

.nav-menu>li>a:hover::after {
    transform: scaleX(1);
}

.nav-menu>li>a i {
    font-size: 11px;
    transition: transform 0.22s;
}

.nav-menu>li>a:hover i {
    transform: rotate(180deg);
}

/* Nav Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color var(--t);
    white-space: nowrap;
}

.nav-phone-link i {
    color: var(--gold);
    font-size: 16px;
}

.nav-phone-link:hover {
    color: var(--navy-mid);
}

.nav-appt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    border: 2px solid var(--navy);
}

.nav-appt-btn i {
    font-size: 14px;
}

.nav-appt-btn:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(19, 27, 75, 0.25);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 240px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-2);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s ease;
    z-index: 100;
    list-style: none;
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: background var(--t), color var(--t);
}

.dropdown-menu li a:hover {
    background: var(--off-white);
    color: var(--navy);
}

.dropdown-menu li a::after {
    display: none;
}

/* Nested Dropdowns (Submenu) */
.nav-dropdown-submenu {
    position: relative;
}

.nav-dropdown-submenu>a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.dropdown-submenu {
    position: absolute;
    top: -9px;
    left: 100%;
    width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-2);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 101;
    list-style: none;
}

.nav-dropdown-submenu:hover>.dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .dropdown-submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
    }

    .nav-dropdown-submenu:hover>.dropdown-submenu {
        display: block;
        transform: none;
    }
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* ── 5. HERO SECTION (Split Layout) ────────────────────── */
.hero-clone {
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1.00fr 0.70fr;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    position: relative;
    padding: 0;
}

/* Left side */
.hero-left-content {
    padding: 80px 60px 80px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 999px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-lead {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 46ch;
    margin-bottom: 36px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 30px;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    border: 2px solid var(--navy);
}

.btn-primary:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 27, 75, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 30px;
    border: 2px solid var(--grey-2);
    transition: all var(--t);
}

.btn-secondary:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--grey-2);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-trust-item i {
    font-size: 16px;
    color: var(--gold);
}

/* Right side – Photo */
.hero-bg-img {
    /* Override old styles */
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    right: auto !important;
    top: auto !important;
    min-height: calc(100vh - var(--nav-h) - 70px);
    object-fit: cover;
    object-position: center 15%;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    border-radius: 0;
    display: block;
}

/* Hero right side wrapper */
.hero-right-side {
    position: relative;
    height: 100%;
    min-height: calc(100vh - var(--nav-h) - 70px);
    padding-top: 12px;
    overflow: hidden;
}

.hero-right-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 30%);
    z-index: 1;
    pointer-events: none;
}

/* ── 6. CTA STRIP (Below Hero) ─────────────────────────── */
.cta-strip {
    background: var(--navy);
    margin-top: 12px;
    padding: 40px 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-strip-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.cta-strip-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.cta-strip-info {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-strip-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-strip-info-item i {
    font-size: 20px;
    color: var(--gold);
}

.cta-strip-info-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.cta-strip-info-item strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    transition: all var(--t);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

/* ── 7. SHARED SECTION STYLES ──────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 999px;
}

.section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 52ch;
}

.title-bar {
    width: 48px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
    margin-top: 16px;
}

/* ── 8. ABOUT SECTION ──────────────────────────────────── */
.about-section-clone {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
    scroll-margin-top: var(--nav-h);
}

.about-shell {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-copy {
    max-width: 640px;
}

.about-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.about-text p {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 60ch;
}

/* About Stats */
.about-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--grey-2);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-suffix {
    color: var(--gold);
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 4px;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-visual-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 560px;
    background: var(--grey-1);
}

.about-featured-img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.about-visual-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(19, 27, 75, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
}

.about-visual-badge i {
    color: var(--gold);
    font-size: 18px;
}

.about-visual-badge span {
    font-size: 13px;
    font-weight: 600;
}

/* Read more btn */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 30px;
    transition: all var(--t);
    border: 2px solid var(--navy);
    align-self: flex-start;
}

.read-more-btn:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-1px);
}

/* ── 9. SERVICES SECTION ────────────────────────────────── */
.services-section-clone {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

/* Section header row */
.section-title-wrapper {
    margin-bottom: 48px;
}

.section-title-wrapper.flex-between {
    margin-bottom: 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag i {
    font-size: 13px;
}

.section-title-clone {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0;
}

.dr-name-right {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
}

.title-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
    margin-top: 16px;
}

.title-line-full {
    width: 100%;
    height: 1px;
    background: var(--grey-2);
    margin: 28px 0 52px;
    position: relative;
    text-align: center;
}

.mouse-icon-wrapper {
    display: inline-block;
    background: var(--white);
    padding: 0 14px;
    position: relative;
    top: -12px;
}

.mouse-icon-wrapper i {
    font-size: 20px;
    color: var(--text-light);
}

/* Category Tabs */
.category-tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.category-tab {
    padding: 10px 22px;
    background: var(--off-white);
    border: 1.5px solid var(--grey-2);
    color: var(--text-body);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all var(--t);
}

.category-tab:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--white);
}

.category-tab.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(19, 27, 75, 0.2);
}

/* Services Grid – Editorial / Frosted Glass Cards */
.services-grid-clone {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: opacity 0.2s;
}

.service-card-clone {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
    background: var(--grey-1);
}

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

/* Card image */
.card-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-clone:hover .card-img-wrapper img {
    transform: scale(1.06);
}

/* Frosted glass overlay */
.card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(19, 27, 75, 0.82) 0%,
            rgba(19, 27, 75, 0.3) 50%,
            transparent 100%);
    transition: opacity var(--t);
}

.service-card-clone:hover .card-img-wrapper::after {
    opacity: 0.9;
}

/* Card text overlay */
.card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.service-card-clone h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0;
    transition: none;
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--t);
    margin-top: 6px;
}

.service-detail-btn:hover {
    color: var(--white);
    gap: 10px;
}

.service-detail-btn i {
    font-size: 12px;
    transition: transform var(--t);
}

.service-card-clone:hover .service-detail-btn i {
    transform: translateX(4px);
}

/* Cards without images – fallback */
.card-no-img {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-no-img h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--navy);
}

/* States */
.no-services {
    grid-column: 1/-1;
    text-align: center;
    padding: 64px;
    color: var(--text-muted);
    background: var(--off-white);
    border: 2px dashed var(--grey-2);
    border-radius: var(--radius-lg);
}

.loading-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 64px;
    color: var(--text-muted);
    font-size: 14px;
}

.slide-up-anim {
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ── 10. STATS / TRUST BAR ─────────────────────────────── */
.stats-bar {
    padding: 72px 0;
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stats-item {
    padding: 40px 28px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: background var(--t);
}

.stats-item:hover {
    background: var(--navy-mid);
}

.stats-item-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.stats-item-num sup {
    font-size: 0.5em;
    color: var(--gold);
}

.stats-item-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

/* ── 11. MAP SECTION ───────────────────────────────────── */
.map-section {
    width: 100%;
    margin-top: 0;
}

.map-container {
    width: 100%;
    height: 440px;
    display: block;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* ── 12. FOOTER ─────────────────────────────────────────── */
.professional-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 0;
}

.footer-wave {
    display: none;
}

.footer-top-accent {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
}

.footer-inner {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
    gap: 48px;
    margin-bottom: 56px;
}

/* Service Card Video Overlay */
.card-video-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 24px;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-video-overlay:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 163, 90, 0.4);
}

.card-video-overlay i {
    transition: transform 0.3s ease;
}

.card-video-overlay:hover i {
    transform: scale(1.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.footer-tagline {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    max-width: 38ch;
}

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

.footer-social-btn,
.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    transition: all 0.25s ease;
}

.footer-social-btn:hover,
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(201, 163, 90, 0.35);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(19, 27, 75, 0.05);
    border: 1px solid var(--grey-2);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    transition: var(--t);
}

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

.lang-btn i {
    font-size: 12px;
    transition: transform 0.25s;
}

.lang-btn:hover i {
    transform: rotate(180deg);
}

/* Footer Language Select specific styles */
.footer-lang-select .lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.footer-lang-select .lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--white);
}

.footer-lang-select .lang-btn i {
    color: var(--gold);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4::after {
    display: none;
}

/* Caret icon in footer links */
.footer-link-icon {
    font-size: 10px;
    margin-right: 6px;
    color: var(--gold);
    opacity: 0.7;
    transition: transform 0.2s;
}

/* Working Hours */
.footer-hours {
    list-style: none;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.hours-day {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hours-time {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 13px;
}

.hours-closed {
    color: #ef4444;
    font-weight: 600;
}

/* Appointment button in footer */
.footer-appt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold), #d4983a);
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(201, 163, 90, 0.3);
    text-decoration: none;
}

.footer-appt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 163, 90, 0.45);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a::before {
    display: none;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 3px;
}

.footer-col ul li a:hover .footer-link-icon {
    transform: translateX(3px);
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: inherit;
    transition: color var(--t);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ── 13. FLOATING WHATSAPP ─────────────────────────────── */
.floating-wa {
    position: fixed !important;
    bottom: 28px !important;
    right: 28px !important;
    background: #25d366 !important;
    color: var(--white) !important;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
    transition: transform var(--t), box-shadow var(--t) !important;
    padding: 0 !important;
}

.floating-wa:hover {
    transform: scale(1.08) translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5) !important;
}

/* ── 14. PAGE HERO (Blog, Contact, etc.) ────────────────── */
.page-hero {
    background: var(--navy);
    padding: 40px 0 24px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 163, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    display: none;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

/* ── 15. FORM ELEMENTS (Hero form legacy compat) ──────── */
#hero-appointment-form input,
#hero-appointment-form textarea,
#hero-appointment-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #e0eaf5;
    transition: border-color var(--t), background var(--t);
    outline: none;
    appearance: none;
}

#hero-appointment-form input::placeholder,
#hero-appointment-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#hero-appointment-form input:focus,
#hero-appointment-form textarea:focus,
#hero-appointment-form select:focus {
    border-color: rgba(201, 163, 90, 0.5);
    background: rgba(201, 163, 90, 0.04);
}

#hero-appointment-form select option {
    background: #0f1f45;
    color: #e0eaf5;
}

.hero-form-box {
    background: rgba(8, 14, 40, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 163, 90, 0.15);
    border-top: 3px solid var(--gold);
    padding: 36px 32px 30px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.hero-form-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-submit-btn {
    width: 100%;
    background: var(--gold);
    border: none;
    color: var(--navy);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all var(--t);
}

.hero-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 163, 90, 0.35);
}

/* ── 16. Booking / Wizard compat ──────────────────────── */
.booking-next-btn,
.booking-submit-btn {
    background: var(--navy) !important;
    border: 2px solid var(--navy) !important;
    box-shadow: none !important;
    transition: all .3s ease !important;
}

.booking-next-btn:hover,
.booking-submit-btn:hover {
    background: var(--navy-mid) !important;
    transform: translateY(-2px) !important;
}

/* ── 17. AOS compat ───────────────────────────────────── */
[data-aos] {
    will-change: transform, opacity;
}

/* ── 18. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid-clone {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-clone {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 960px) {
    .about-shell {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-grid .footer-col:first-child {
        grid-column: 1/-1;
    }

    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .cta-strip {
        margin-top: 8px;
    }

    .cta-strip-info {
        gap: 20px;
    }
}

@media (max-width: 820px) {
    :root {
        --nav-h: 68px;
    }

    .hero-clone {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right-side {
        min-height: 52vw;
        order: -1;
    }

    .hero-bg-img {
        min-height: 52vw;
    }

    .hero-left-content {
        padding: 40px 0;
        align-items: flex-start;
    }

    .hero-title {
        font-size: clamp(34px, 6vw, 48px);
    }

    @media (max-width: 1200px) {
        .nav-menu {
            display: none;
            margin-left: 0;
        }

        .nav-phone-link {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .nav-menu.open {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: var(--nav-h);
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid var(--grey-2);
            padding: 16px;
            box-shadow: var(--shadow-md);
            z-index: 999;
            gap: 4px;
            align-items: stretch;
        }

        .nav-menu.open>li>a {
            font-size: 14px;
            padding: 12px 16px;
        }
    }
}

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

    .about-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-section-clone,
    .services-section-clone {
        padding: 72px 0;
    }

    .hero-trust-row {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .container-large {
        padding: 0 20px;
    }

    .about-visual-frame,
    .about-featured-img {
        min-height: 340px;
    }

    .hero-left-content {
        padding: 32px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── PREMIUM CTA CARD (Sidebar & Contact) ── */
.premium-cta-card {
    background: linear-gradient(160deg, var(--navy) 0%, #0c3254 100%);
    border-radius: 22px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10, 31, 56, 0.15);
    text-align: left;
}

.premium-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.premium-cta-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.premium-cta-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #50e4fc;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.premium-cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.premium-cta-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.premium-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.premium-cta-btn:last-child {
    margin-bottom: 0;
}

.premium-cta-btn-primary {
    background: linear-gradient(135deg, #c9a96e 0%, #a88a52 100%);
    color: var(--white) !important;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.premium-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.45);
}

.premium-cta-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.premium-cta-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.premium-cta-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
}

.premium-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* ── FOOTER LANGUAGE SELECTOR ── */
.language-select {
    position: relative;
    display: inline-block;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Footer lang selector opens upward */
.footer-lang-select .lang-dropdown {
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(8px);
}

.footer-lang-select .lang-dropdown.open {
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    margin-bottom: 2px;
}

.lang-dropdown li:last-child {
    margin-bottom: 0;
}

.lang-dropdown li:hover {
    background: #f8fafc;
}

.lang-dropdown li.active {
    background: rgba(0, 188, 212, 0.08);
    /* slight teal tint */
    color: var(--teal);
}

.lang-dropdown li[data-lang="ar"] {
    flex-direction: row-reverse;
}