@font-face {
    font-family: "iransans";
    src: url("../fonts/iransansxv.woff") format("woff-variations"), url("../fonts/iransansxv.woff") format("woff");
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
}
.hero-title:focus-visible {
    outline: 0px solid blue; /* تغییر رنگ و ضخامت به دلخواه */
    outline-offset: 0px; /* فاصله‌ی بیرونی برای تمایز بهتر */
}
/*@font-face {
    font-family: iransansx;
    src: url('staticfonts/IRANSansX-Regular.woff') format('woff');
}

@font-face {
    font-family: iransansx;
    src: url('staticfonts/IranSansX-Bold.woff') format('woff');
    font-weight: 700;
}*/
/* ══════════════════════════════════════════════
   THEME TOKENS
   ══════════════════════════════════════════════ */
[data-theme="dark"] {
    --hero-bg: #121212;
    --hero-bg2: #1a1a1a;
    --hero-accent: #252525;
    --hero-glow: rgba(255, 255, 255, 0.04);
    --text-primary: #e8e8e8;
    --text-secondary: rgba(230, 230, 230, 0.65);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-hover: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
    --cta-bg: rgba(255, 255, 255, 0.9);
    --cta-color: #121212;
    --scrolled-bg: rgba(18, 18, 18, 0.85);
    --mobile-bg-start: #1e1e1e;
    --mobile-bg-end: #121212;
    --drop-bg: rgba(24, 24, 24, 0.95);
    --tag-line-color: rgba(255, 255, 255, 0.6);
    --stat-border: rgba(255, 255, 255, 0.1);
    --toggle-bg: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
  --hero-bg: #0b1e36;
  --hero-bg2: #0f2a4d;
  --hero-accent: #214774;
  --hero-glow: rgba(56, 103, 164, 0.3);
  --text-primary: #f5f7fa;
  --text-secondary: rgba(220, 232, 255, 0.72);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-hover: rgba(255, 255, 255, 0.14);
  --card-bg: rgba(255, 255, 255, 0.06);
  --cta-bg: rgba(255, 255, 255, 0.92);
  --cta-color: #0f2a4d;
  --scrolled-bg: rgba(11, 30, 54, 0.72);
  --mobile-bg-start: #16375f;
  --mobile-bg-end: #0f2a4d;
  --drop-bg: rgba(13, 38, 68, 0.92);
  --tag-line-color: rgba(255, 255, 255, 0.7);
  --stat-border: rgba(255, 255, 255, 0.14);
  --toggle-bg: rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════════════════════
   GLOBAL BASE
   ══════════════════════════════════════════════ */
:root {
  --app-font: "iransans", Tahoma, Arial, sans-serif;
}

* { transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease; }

/*body {
    font-family: var(--app-font);
    background: var(--hero-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    font-variation-settings: "wght" 700, "DOTS" 4;
    direction: rtl;
    margin: 0;
    -moz-font-feature-settings: "ss03";
    -webkit-font-feature-settings: "ss03";
    font-feature-settings: "ss03";
}*/

a { text-decoration: none; color: inherit; }
/* ══════════════════════════════════════════════
   TYPE TOKENS
   ══════════════════════════════════════════════ */
:root {
    --app-font: "iransans", Tahoma, Arial, sans-serif;
    /* weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    /* body scale */
    --fs-body: 1rem; /* 16px */
    --fs-body-sm: 0.9375rem; /* 15px */
    --fs-body-xs: 0.875rem; /* 14px */
    /* heading scale */
    --fs-h1: clamp(2rem, 1.55rem + 1.7vw, 3rem); /* 32 → 48 */
    --fs-h2: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem); /* 28 → 40 */
    --fs-h3: clamp(1.5rem, 1.28rem + 0.85vw, 2rem); /* 24 → 32 */
    --fs-h4: clamp(1.25rem, 1.12rem + 0.5vw, 1.5rem); /* 20 → 24 */
    --fs-h5: clamp(1.125rem, 1.03rem + 0.35vw, 1.25rem); /* 18 → 20 */
    --fs-h6: 1rem; /* 16 */
    /* nav / ui */
    --fs-nav: 0.95rem;
    --fs-btn: 0.95rem;
    --fs-meta: 0.875rem;
    /* line heights */
    --lh-body: 1.95;
    --lh-heading-lg: 1.45;
    --lh-heading-md: 1.55;
    --lh-heading-sm: 1.65;
}

/* transition را روی همه عناصر نگذار
   چون روی تایپوگرافی و layout هزینه می‌گذارد */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--app-font);
    background: var(--hero-bg);
    color: var(--text-primary);
    direction: rtl;
    margin: 0;
    overflow-x: hidden;
    /* typography base */
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: var(--lh-body);
    letter-spacing: 0;
    word-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* فقط اگر مطمئنی محور DOTS در فونتت وجود دارد نگه دار */
    font-variation-settings: "wght" 400, "DOTS" 4;
    font-feature-settings: "ss03";
    font-synthesis-weight: none;
    font-synthesis-style: none;
}

/* متن‌های عمومی */
p,
li,
dd,
dt,
blockquote,
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: var(--lh-body);
    letter-spacing: 0;
}

/* متن‌های ریز */
small,
.text-small,
.form-text,
.text-muted,
.meta,
.caption {
    font-size: var(--fs-body-xs);
    line-height: 1.85;
    font-weight: var(--fw-regular);
}

/* ══════════════════════════════════════════════
   HEADINGS
   ══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.75em;
    font-family: inherit;
    color: var(--text-primary);
    letter-spacing: 0;
    word-spacing: 0;
    text-wrap: balance;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-heading-lg);
    font-variation-settings: "wght" 800, "DOTS" 4;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading-lg);
    font-variation-settings: "wght" 700, "DOTS" 4;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading-md);
    font-variation-settings: "wght" 700, "DOTS" 4;
}

h4 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-heading-md);
    font-variation-settings: "wght" 600, "DOTS" 4;
}

h5 {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-heading-sm);
    font-variation-settings: "wght" 600, "DOTS" 4;
}

h6 {
    font-size: var(--fs-h6);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-heading-sm);
    font-variation-settings: "wght" 600, "DOTS" 4;
}

    /* فاصله استاندارد متن بعد از تیتر */
    h1 + p,
    h2 + p,
    h3 + p,
    h4 + p,
    h5 + p,
    h6 + p {
        margin-top: -0.15rem;
    }

/* ══════════════════════════════════════════════
   LINKS / NAV / BUTTONS
   ══════════════════════════════════════════════ */
a {
    color: inherit;
    text-decoration: none;
}

.nav-link,
.dropdown-item,
.nav-call-btn,
.nav-icon-btn,
button,
.btn {
    font-family: inherit;
    font-size: var(--fs-nav);
    line-height: 1.7;
    letter-spacing: 0;
}

.nav-link {
    font-weight: var(--fw-medium);
    font-variation-settings: "wght" 500;
}

.dropdown-item {
    font-weight: var(--fw-regular);
    font-variation-settings: "wght" 400;
}

.nav-call-btn,
.btn,
button {
    font-weight: var(--fw-semibold);
    font-variation-settings: "wght" 600;
}

/* ══════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════ */
input,
textarea,
select {
    font-weight: var(--fw-regular);
    font-variation-settings: "wght" 400;
}

    input::placeholder,
    textarea::placeholder {
        font-weight: var(--fw-regular);
        opacity: 0.8;
    }

/* ══════════════════════════════════════════════
   ARTICLE / CONTENT READABILITY
   ══════════════════════════════════════════════ */
.article-content,
.prose,
.content-body {
    font-size: 1rem;
    line-height: 2;
    font-weight: var(--fw-regular);
}

    .article-content p,
    .prose p,
    .content-body p {
        margin: 0 0 1rem;
    }

    .article-content h1,
    .article-content h2,
    .article-content h3,
    .prose h1,
    .prose h2,
    .prose h3,
    .content-body h1,
    .content-body h2,
    .content-body h3 {
        margin-top: 1.5em;
    }

/* ══════════════════════════════════════════════
   RESPONSIVE TUNING
   ══════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    body {
        font-size: 0.96875rem;
    }

    .nav-link,
    .dropdown-item,
    .nav-call-btn,
    .btn,
    button {
        font-size: 0.9375rem;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    h1 {
        line-height: 1.5;
    }

    h2 {
        line-height: 1.5;
    }

    h3 {
        line-height: 1.58;
    }
}






/* ══════════════════════════════════════════════
   HERO PAGE
   ══════════════════════════════════════════════ */
.hero-page {
    min-height: 100vh;
    background: radial-gradient(ellipse at 15% 20%, var(--hero-accent), var(--hero-bg2) 50%, var(--hero-bg) 100%);
    position: relative;
    overflow: hidden;
}

    .hero-page::before,
    .hero-page::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .hero-page::before {
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, var(--hero-glow), transparent 64%);
        top: -200px;
        right: -120px;
    }

    .hero-page::after {
        width: 440px;
        height: 440px;
        background: radial-gradient(circle, var(--hero-glow), transparent 64%);
        bottom: -200px;
        left: -120px;
    }

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.hero-header {
    position: absolute;
    z-index: 50;
    transition: padding 0.35s ease;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 992px) {
    .header-flex {
        justify-content: flex-start;
    }
}

.hero-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    background: var(--scrolled-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    animation: navSlideDown 0.42s ease both;
}

    .hero-header.is-scrolled .glass-nav {
        width: 100%;
        border-radius: 18px;
        justify-content: center;
    }

/* ── Logo slots ── */
.brand-mobile {
    color: var(--text-primary);
    font-weight: 700;
}

.mobile-logo-slot,
.site-logo-slot {
    min-width: 72px;
    height: 42px;
 /*   border-radius: 999px;*/
/*    border: 1px dashed var(--glass-border);
    background: var(--glass-bg);*/
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.site-logo-slot {
    min-width: 84px;
    height: 38px;
    border-style: solid;
    border:0;
}
    .site-logo-slot img{
        width:100%;
        max-width:65px;
    }
    /* ── Hamburger ── */
    .btn-menu {
        width: 44px;
        height: 44px;
        border: 1px solid var(--glass-border);
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
    }

    .btn-menu span {
        width: 18px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
    }

/* ── Glass nav ── */
.glass-nav {
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: fadeDown 0.7s ease both;
    min-height: 50px;
}

.hero-header.is-scrolled .glass-nav {
    background: transparent !important;
    backdrop-filter: blur(-1px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    border: 1px solid transparent !important;
}
 

.nav-desktop .nav-link {
    color: var(--text-primary);
    opacity: 0.82;
    font-size: 0.92rem;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

    .nav-desktop .nav-link.active,
    .nav-desktop .nav-link:hover {
        opacity: 1;
    }

.has-arrow .bi {
    font-size: 0.7rem;
}

/* ── Dropdown ── */
.dropdown-menu-glass {
    background: var(--drop-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 8px;
}

    .dropdown-menu-glass .dropdown-item {
        color: var(--text-primary);
        border-radius: 10px;
    }

        .dropdown-menu-glass .dropdown-item:hover {
            background: var(--glass-hover);
        }

@media (min-width: 992px) {
    .nav-desktop .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeUp 0.18s ease both;
    }
}

/* ── Nav call button ── */
.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    direction: ltr;
}

    .nav-call-btn:hover {
        background: var(--glass-hover);
        transform: translateY(-1px);
        color: var(--text-primary);
    }

    .nav-call-btn .bi {
        font-size: 0.85rem;
    }

/* ── Nav actions (icons) ── */
.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
}

.nav-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s;
}

    .nav-icon-btn:hover {
        background: var(--glass-hover);
        transform: translateY(-1px);
    }

/* ══════════════════════════════════════════════
   THEME TOGGLE
   ══════════════════════════════════════════════ */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--toggle-bg);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.theme-icon-light,
.theme-icon-dark {
    position: absolute;
    font-size: 1.1rem;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
}

[data-theme="dark"] .theme-icon-light {
    transform: rotate(0deg) scale(1);
    opacity: 1;
    color: #fbbf24;
}

[data-theme="dark"] .theme-icon-dark {
    transform: rotate(-90deg) scale(0);
    opacity: 0;
}

[data-theme="light"] .theme-icon-dark {
    transform: rotate(0deg) scale(1);
    opacity: 1;
    color: #475569;
}

[data-theme="light"] .theme-icon-light {
    transform: rotate(90deg) scale(0);
    opacity: 0;
}

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero-section {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}

.hero-container {
    max-width: 1280px;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: stretch;
}

.hero-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    width: 100%;
    direction: ltr;
    align-items: end;
    min-height: calc(100vh - 190px);
}

/* ── Visual (face) ── */
.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.hero-media {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: -40px;
    animation: heroImgIn 1s ease both;
}

.face-base {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    position: relative;
    z-index: 1;
}

.face-overlay {
    position: absolute;
    width: 76%;
    left: 50%;
    top: 14%;
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: none;
    z-index: 2;
}

    .face-overlay .mesh-lines,
    .face-overlay .mesh-nodes {
        transform-box: fill-box;
        transform-origin: center;
        animation: meshDrift 2s ease-in-out infinite;
    }

@keyframes meshDrift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.95;
    }

    50% {
        transform: translate(0.8px, -1px);
        opacity: 1;
    }
}

@keyframes tagDotBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.65;
    }
}

/* ── Label tags on face ── */
.label-tag {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    animation: fadeUp 1s ease both;
}

.tag-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ebff00;
    position: absolute;
    animation: tagDotBlink 3.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255,255,255,0.5), 0 0 20px rgba(255,255,255,0.2);
}

.tag-line-diag,
.tag-line-h {
    position: absolute;
    border-top: 1.8px dashed rgba(255, 221, 0, 0.55);
}

.tag-text {
    position: absolute;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: auto;
}

/* ── Eyebrow label ──
   Dot sits on the left eyebrow (viewer's left).
   Line goes UP-LEFT to the text label above. */
.tag-eyebrow {
    top: 20%;
    right: 2%;
    left: auto;
    width: 38%;
    height: 20%;
}

    .tag-eyebrow .tag-dot {
        bottom: -9px;
        left: 9px;
        right: auto;
    }

    .tag-eyebrow .tag-line-diag {
        bottom: -4px;
        left: 21px;
        width: 66%;
        transform-origin: left center;
        transform: rotate(-39deg);
    }

    .tag-eyebrow .tag-line-h {
        top: 28%;
        right: 0;
        left: auto;
        width: 36%;
    }

    .tag-eyebrow .tag-text {
        top: 24px;
        right: -98px;
        left: auto;
        transform: translateY(-40%);
    }

/* ── Lip label ──
   Dot sits on the lip area.
   Line goes DOWN-LEFT to the text label below. */
.tag-lip {
    top: 76%;
    right: 8%;
    left: auto;
    width: 38%;
    height: 18%;
}

    .tag-lip .tag-dot {
        top: 0;
        left: 0;
        right: auto;
    }

    .tag-lip .tag-line-diag {
        top: 4px;
        left: 4px;
        width: 60%;
        transform-origin: left center;
        transform: rotate(35deg);
    }

    .tag-lip .tag-line-h {
        bottom: 28%;
        right: 0;
        left: auto;
        width: 48%;
    }

    .tag-lip .tag-text {
        bottom: 24px;
        right: -78px;
        left: auto;
        transform: translateY(40%);
    }

/* ── Hero content (text side) ── */
.hero-content {
    direction: rtl;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
    padding-right: 1rem;
    min-height: calc(100vh - 190px);
}

.anim-fade {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: var(--d, 0s);
}

.hero-kicker {
    color: var(--text-secondary);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.2rem;
}

    .hero-kicker .bi {
        font-size: 0.5rem;
    }

.hero-title {
    font-size: clamp(2.6rem, 5vw, 5.4rem);
    line-height: 1.06;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0.4rem 0 0.6rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.6rem, 3vw, 3.2rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0 0 1.6rem;
    line-height: 1.3;
}

/* ── Bottom row: stats + actions ── */
.hero-bottom-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: auto;
    padding-bottom: 2.5rem;
    flex-wrap: wrap;
    direction: rtl;
}

/* ── Stats ── */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 1.6rem;
}

.stat-card {
    text-align: center;
}

    .stat-card strong {
        display: block;
        font-size: 2.1rem;
        line-height: 1.1;
        color: var(--text-primary);
    }

    .stat-card span {
        font-size: 0.82rem;
        color: var(--text-secondary);
    }

.stat-divider {
    width: 1px;
    height: 42px;
    background: var(--stat-border);
}

/* ── CTA buttons ── */
.hero-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--cta-bg);
    color: var(--cta-color);
    border: 1px solid var(--glass-border);
    transition: transform 0.28s, box-shadow 0.28s;
}

    .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
        color: var(--cta-color);
    }

.cta-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: transform 0.28s, background 0.28s;
}

    .cta-circle:hover {
        transform: translateY(-2px);
        background: var(--glass-hover);
        color: var(--text-primary);
    }

/* ══════════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════════ */
.mobile-menu {
    width: min(92%, 360px);
    background: linear-gradient(180deg, var(--mobile-bg-start), var(--mobile-bg-end));
    border-right: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.mobile-nav > li + li {
    margin-top: 6px;
}

.mobile-nav a,
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: right;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid transparent;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.mobile-nav a {
    justify-content: flex-start;
    gap: 8px;
}

.mobile-submenu-toggle {
    justify-content: space-between;
}

    .mobile-nav a:hover,
    .mobile-submenu-toggle:hover,
    .mobile-nav a.active {
        background: var(--glass-hover);
        border-color: var(--glass-border);
    }

.mobile-nav > li > a,
.mobile-nav > li > .mobile-submenu-toggle {
    background: var(--card-bg);
}

.mobile-nav a .bi,
.mobile-submenu-toggle .bi {
    font-size: 0.95rem;
}

.mobile-submenu-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submenu-arrow {
    transition: transform 0.24s ease;
}

.mobile-submenu-toggle[aria-expanded="true"] .submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    margin-right: 12px;
    border-right: 1px dashed var(--glass-border);
    padding-right: 8px;
}

    .mobile-submenu a {
        opacity: 0.88;
        font-size: 0.95rem;
        font-weight: 500;
    }

.mobile-submenu-toggle.level-2 {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (min-width: 1800px) {
    .hero-container {
        max-width: 1440px;
    }

    .hero-media {
        max-width: 800px;
        margin-left: -80px;
    }

    .hero-title {
        font-size: clamp(3.2rem, 4.4vw, 6rem);
    }

    .hero-subtitle {
        font-size: clamp(2rem, 2.8vw, 3.6rem);
    }
}

@media (min-width: 1400px) and (max-width: 1799.98px) {
    .hero-container {
        max-width: 1340px;
    }

    .hero-media {
        max-width: 740px;
        margin-left: -60px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-container {
        max-width: 1180px;
    }

    .hero-media {
        max-width: 560px;
        margin-left: -40px;
    }

    .hero-title {
        font-size: clamp(2.3rem, 4.5vw, 4.4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.6rem, 2.7vw, 2.8rem);
    }
}

@media (max-width: 991.98px) {
    .hero-header {
        position: static;
    }

        .hero-header.is-scrolled {
            position: static;
            animation: none;
            border-bottom: 0;
            background: transparent;
            backdrop-filter: none;
        }

    .nav-actions {
        display: none;
    }

    .hero-container {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        direction: rtl;
        gap: 1rem;
        min-height: auto;
    }

    .hero-visual {
        justify-content: center;
        order: 2;
    }

    .hero-content {
        text-align: right;
        padding-bottom: 1rem;
        order: 1;
        min-height: auto;
    }

    .hero-media {
        margin: 0 auto;
        max-width: 420px;
    }

    .hero-bottom-row {
        justify-content: flex-end;
        padding-bottom: 1rem;
    }

    .hero-actions {
        margin-left: 0;
    }

    .tag-eyebrow,
    .tag-lip {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-page {
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }

    .hero-media {
        max-width: 340px;
    }

    .hero-bottom-row {
        gap: 1rem;
    }

    .stat-card strong {
        font-size: 1.5rem;
    }
}

/* ══════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════ */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navSlideDown {
    from {
        transform: translateY(-22px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes heroImgIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulseOverlay {
    0%, 100% {
        opacity: 0.86;
    }

    50% {
        opacity: 1;
    }
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════ */
.services-section {
    padding: 5rem 0 4rem;
    background: var(--hero-bg);
    position: relative;
    z-index: 2;
}

[data-theme="light"] .services-section {
    background: #f6f6f6;
}

    [data-theme="light"] .services-section .services-title {
        color: #1b3a5c;
    }

    [data-theme="light"] .services-section .services-subtitle {
        color: rgba(27, 58, 92, 0.55);
    }

    [data-theme="light"] .services-section .service-label {
        color: #1b3a5c;
    }

    [data-theme="light"] .services-section .service-icon {
        color: #1b3a5c;
    }

/* ── Section header ── */
.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.services-title-decor {
    display: block;
    margin: 0 auto 1rem;
    height: 12px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.services-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ── Swiper container ── */
.services-swiper {
    position: relative;
    padding-bottom: 1rem;
}

    .services-swiper .swiper-slide {
        height: auto;
    }

/* ── Service card (glassmorphism) ── */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.4s ease;
    min-height: 160px;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
        background: var(--glass-hover);
    }

[data-theme="light"] .service-card {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 24px rgba(27, 58, 92, 0.06), 0 1px 6px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

    [data-theme="light"] .service-card:hover {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 12px 40px rgba(27, 58, 92, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
    }

/* ── Service icon ── */
.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    opacity: 1;
}

/* ── Service label ── */
.service-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
}

/* ── Navigation buttons (glass style, centered) ── */
.services-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.swiper-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

    .swiper-btn:hover {
        background: var(--glass-hover);
        transform: scale(1.08);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .swiper-btn:active {
        transform: scale(0.95);
    }

    .swiper-btn.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

[data-theme="light"] .services-section .swiper-btn,
[data-theme="light"] .testimonials-section .swiper-btn {
    background: rgba(27, 58, 92, 0.08);
    border-color: rgba(27, 58, 92, 0.12);
    color: #1b3a5c;
    box-shadow: 0 2px 8px rgba(27, 58, 92, 0.06);
}

    [data-theme="light"] .services-section .swiper-btn:hover,
    [data-theme="light"] .testimonials-section .swiper-btn:hover {
        background: rgba(27, 58, 92, 0.14);
        box-shadow: 0 4px 16px rgba(27, 58, 92, 0.1);
    }

/* ── Services responsive ── */
@media (max-width: 991.98px) {
    .services-section {
        padding: 3.5rem 0 3rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.5rem 0.75rem;
        min-height: 140px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 2.5rem 0 2rem;
    }

    .services-header {
        margin-bottom: 1.5rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        min-height: 150px;
    }

    .swiper-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ══════════════════════════════════════════════
   PORTFOLIO / SAMPLE WORK SECTION
   ══════════════════════════════════════════════ */
.portfolio-section {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    width: 100%;
}

[data-theme="light"] .portfolio-section {
    background: linear-gradient(160deg, #1b3a5c 0%, #253f5e 40%, #2f5070 100%);
}

[data-theme="dark"] .portfolio-section {
    background: linear-gradient(160deg, #141414 0%, #1a1a1a 40%, #1e1e1e 100%);
}

.portfolio-bg-decor {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 620px;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

[data-theme="dark"] .portfolio-bg-decor {
    opacity: 0.25;
}

.portfolio-bg-decor .decor-glass {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

/* ── Portfolio header ── */
.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #f5f7fa;
    margin: 0 0 0.5rem;
}

.portfolio-title-decor {
    display: block;
    margin: 0 auto 1rem;
    height: 12px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.portfolio-subtitle {
    color: rgba(220, 232, 255, 0.65);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ── Portfolio Swiper ── */
.portfolio-swiper {
    position: relative;
    padding-bottom: 1rem;
}

    .portfolio-swiper .swiper-slide {
        height: auto;
    }

/* ── Portfolio card ── */
.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .portfolio-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

/* ── Portfolio image ── */
.portfolio-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 10px 10px 0;
}

    .portfolio-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 14px;
        transition: transform 0.4s ease;
    }

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.05);
}

/* ── Portfolio info ── */
.portfolio-info {
    padding: 0.9rem 1rem 1.1rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.portfolio-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f5f7fa;
    margin: 0;
    line-height: 1.4;
}

.portfolio-card-desc {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(220, 232, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* ── Portfolio nav buttons ── */
.portfolio-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

    .portfolio-nav .swiper-btn {
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.08);
        color: #f5f7fa;
    }

        .portfolio-nav .swiper-btn:hover {
            background: rgba(255, 255, 255, 0.16);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

/* ── Portfolio responsive ── */
@media (max-width: 1199.98px) {
    .portfolio-bg-decor {
        width: 240px;
        bottom: -30px;
        left: -30px;
    }
}

@media (max-width: 991.98px) {
    .portfolio-section {
        padding: 3.5rem 0 3rem;
    }

    .portfolio-header {
        margin-bottom: 2rem;
    }

    .portfolio-bg-decor {
        width: 180px;
        bottom: -20px;
        left: -20px;
        opacity: 0.35;
    }
}

@media (max-width: 767.98px) {
    .portfolio-section {
        padding: 2.5rem 0 2rem;
    }

    .portfolio-header {
        margin-bottom: 1.5rem;
    }

    .portfolio-title {
        font-size: 1.6rem;
    }

    .portfolio-bg-decor {
        width: 140px;
        opacity: 0.25;
    }

    .portfolio-img-wrap {
        padding: 8px 8px 0;
    }

    .portfolio-info {
        padding: 0.7rem 0.75rem 0.9rem;
    }

    .portfolio-card-title {
        font-size: 0.82rem;
    }

    .portfolio-card-desc {
        font-size: 0.7rem;
    }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════ */
.testimonials-section {
    padding: 5rem 0 4rem;
    background: var(--hero-bg);
    position: relative;
    z-index: 2;
}

[data-theme="light"] .testimonials-section {
    background: #f6f6f6;
}

    [data-theme="light"] .testimonials-section .testimonials-title {
        color: #1b3a5c;
    }

    [data-theme="light"] .testimonials-section .testimonials-subtitle {
        color: rgba(27, 58, 92, 0.55);
    }

/* ── Testimonials header ── */
.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.testimonials-title-decor {
    display: block;
    margin: 0 auto 1rem;
    height: 12px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.testimonials-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ── Swiper ── */
.testimonials-swiper {
    position: relative;
    padding-bottom: 1rem;
}

    .testimonials-swiper .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
    }

/* ── Circle card wrapper ── */
.testimonial-circle-wrap {
    position: relative;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    margin: 24px auto 0;
}

/* ── Customer avatar (top-right) ── */
.testimonial-avatar {
    position: absolute;
    top: -16px;
    right: 19px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #c5d3e0;
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ── Circular glass card ── */
.testimonial-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

/* Light mode: blue-gray gradient glass like reference */
[data-theme="light"] .testimonial-circle {
    background: linear-gradient(145deg, rgba(140, 170, 200, 0.55) 0%, rgba(100, 140, 180, 0.45) 50%, rgba(80, 120, 160, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -6px 6px 0 0 #1b3a5c, 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

    [data-theme="light"] .testimonial-circle:hover {
        transform: translateY(-4px);
        box-shadow: -6px 6px 0 0 #1b3a5c, 0 14px 44px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

/* Dark mode */
[data-theme="dark"] .testimonial-circle {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -6px 6px 0 0 rgba(0, 0, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

    [data-theme="dark"] .testimonial-circle:hover {
        transform: translateY(-4px);
        box-shadow: -6px 6px 0 0 rgba(0, 0, 0, 0.5), 0 14px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

[data-theme="dark"] .testimonial-avatar {
    border-color: rgba(255, 255, 255, 0.15);
    background: #1e1e1e;
}

/* ── Service tag (top of circle) ── */
.testimonial-service {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.15rem;
    opacity: 0.75;
}

[data-theme="light"] .testimonial-service {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Customer name ── */
.testimonial-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

[data-theme="light"] .testimonial-name {
    color: #fff;
}

/* ── Review text ── */
.testimonial-text {
    font-size: 0.65rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 0.3rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[data-theme="light"] .testimonial-text {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Star rating ── */
.testimonial-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 0.65rem;
    color: #f59e0b;
}

[data-theme="light"] .testimonial-stars {
    color: #fbbf24;
}

/* ── Nav buttons ── */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

/* ── Testimonials responsive ── */
@media (max-width: 1199.98px) {
    .testimonial-circle-wrap {
        max-width: 180px;
    }

    .testimonial-circle {
        padding: 1rem;
    }

    .testimonial-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 3.5rem 0 3rem;
    }

    .testimonials-header {
        margin-bottom: 2.5rem;
    }

    .testimonial-circle-wrap {
        max-width: 170px;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }

    .testimonial-circle {
        padding: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.6rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 2.5rem 0 2rem;
    }

    .testimonials-header {
        margin-bottom: 1.5rem;
    }

    .testimonials-title {
        font-size: 1.6rem;
    }

    .testimonial-circle-wrap {
        max-width: 160px;
    }

    .testimonial-avatar {
        width: 38px;
        height: 38px;
        top: -6px;
        right: -2px;
    }

    .testimonial-circle {
        padding: 0.8rem;
    }

    .testimonial-service {
        font-size: 0.55rem;
    }

    .testimonial-name {
        font-size: 0.75rem;
    }

    .testimonial-text {
        font-size: 0.58rem;
        -webkit-line-clamp: 2;
    }

    .testimonial-stars {
        font-size: 0.58rem;
    }
}

/* ══════════════════════════════════════════════
   TEASER / VIDEO SECTION
   ══════════════════════════════════════════════ */
.teaser-section {
    padding: 3rem 0 0;
    background: var(--hero-bg);
    position: relative;
    z-index: 2;
}

[data-theme="light"] .teaser-section {
    background: #ffffff;
}

/* ── Frame: holds image + wave together ── */
.teaser-frame {
    position: relative;
}

/* ── Media wrapper (the image area) ── */
.teaser-media {
    position: relative;
    width: 100%;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

.teaser-poster {
    width: 100%;
    height: auto;
    display: block;
    min-height: 380px;
    object-fit: cover;
}

/* ── Glass buttons (shared base) ── */
.teaser-btn {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-weight: 600;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

    .teaser-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

/* ── Play button (top-left) ── */
.teaser-play {
    top: 1.5rem;
    left: 1.5rem;
    padding: 10px 20px 10px 14px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.88rem;
}

    .teaser-play i {
        font-size: 1.1rem;
        background: rgba(59, 130, 246, 0.85);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
    }

/* ── Title badge (top-right) ── */
.teaser-title-badge {
    top: 1.5rem;
    right: 1.5rem;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.88rem;
    cursor: default;
}

/* ── CTA button (bottom-center, on the wave) ── */
.teaser-cta {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 28px;
    background: rgba(60, 60, 60, 0.65);
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
}

    .teaser-cta:hover {
        background: rgba(60, 60, 60, 0.8);
        color: #fff;
        transform: translateX(-50%) translateY(-2px);
    }

    .teaser-cta i {
        font-size: 0.85rem;
        transition: transform 0.24s ease;
    }

    .teaser-cta:hover i {
        transform: translateX(-4px);
    }

/* ── SVG wave overlapping bottom of image ── */
.teaser-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

    .teaser-wave svg {
        width: 100%;
        height: 100px;
        display: block;
    }

[data-theme="light"] .teaser-wave-path {
    fill: #ffffff;
}

[data-theme="dark"] .teaser-wave-path {
    fill: var(--hero-bg);
}

/* ── Dark mode adjustments ── */
[data-theme="dark"] .teaser-play {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .teaser-title-badge {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .teaser-cta {
    background: rgba(255, 255, 255, 0.12);
}

    [data-theme="dark"] .teaser-cta:hover {
        background: rgba(255, 255, 255, 0.2);
    }

[data-theme="dark"] .teaser-btn {
    border-color: rgba(255, 255, 255, 0.15);
}

/* ── Teaser responsive ── */
@media (max-width: 991.98px) {
    .teaser-section {
        padding: 2rem 0 0;
    }

    .teaser-media {
        border-radius: 22px;
    }

    .teaser-poster {
        min-height: 300px;
    }

    .teaser-play,
    .teaser-title-badge {
        top: 1rem;
        font-size: 0.82rem;
        padding: 8px 16px;
    }

    .teaser-play {
        left: 1rem;
        padding-left: 10px;
    }

    .teaser-title-badge {
        right: 1rem;
    }

    .teaser-play i {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .teaser-cta {
        font-size: 0.82rem;
        padding: 10px 22px;
    }

    .teaser-wave svg {
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .teaser-section {
        padding: 1.5rem 0 0;
    }

    .teaser-media {
        border-radius: 18px;
    }

    .teaser-poster {
        min-height: 220px;
    }

    .teaser-play {
        top: 0.75rem;
        left: 0.75rem;
        padding: 6px 12px 6px 8px;
        font-size: 0.75rem;
        gap: 6px;
    }

        .teaser-play i {
            width: 24px;
            height: 24px;
            font-size: 0.85rem;
        }

    .teaser-title-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 6px 14px;
        font-size: 0.72rem;
    }

    .teaser-cta {
        font-size: 0.78rem;
        padding: 8px 18px;
    }

    .teaser-wave svg {
        height: 50px;
    }
}

/* ══════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════ */
.faq-section {
    padding: 5rem 0 4rem;
    background: var(--hero-bg);
    position: relative;
    z-index: 2;
}

[data-theme="light"] .faq-section {
    background: #f6f6f6;
}

    [data-theme="light"] .faq-section .faq-title {
        color: #1b3a5c;
    }

    [data-theme="light"] .faq-section .faq-subtitle {
        color: rgba(27, 58, 92, 0.55);
    }

/* ── FAQ header ── */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.faq-title-decor {
    display: block;
    margin: 0 auto 1rem;
    height: 12px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ── FAQ wrapper (narrower container) ── */
.faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

/* ── FAQ item ── */
.faq-item {
    margin-bottom: 10px;
}

/* ── Question button (pill shape) ── */
.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    transition: background 0.4s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .faq-toggle {
    background: linear-gradient(135deg, #1b3a5c 0%, #2a4f6e 50%, #3a6080 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.25);
}

    [data-theme="light"] .faq-toggle:hover {
        box-shadow: 0 6px 24px rgba(27, 58, 92, 0.35);
    }

[data-theme="dark"] .faq-toggle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    color: #f5f7fa;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    [data-theme="dark"] .faq-toggle:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    }

.faq-toggle span {
    flex: 1;
    text-align: right;
}

/* ── Arrow icon ── */
.faq-arrow {
    font-size: 0.85rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, background 0.3s ease;
}

[data-theme="light"] .faq-arrow {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

[data-theme="dark"] .faq-arrow {
    background: rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
}

.faq-toggle:not(.collapsed) .faq-arrow {
    transform: rotate(0deg);
}

.faq-toggle.collapsed .faq-arrow {
    transform: rotate(180deg);
}

/* ── Answer area ── */
.faq-answer {
    overflow: hidden;
}

.faq-answer-body {
    padding: 1.2rem 2rem 1.4rem;
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 600;
    text-align: center;
    border-radius: 0 0 24px 24px;
    margin-top: -8px;
}

[data-theme="light"] .faq-answer-body {
    background: #fff;
    color: #1b3a5c;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .faq-answer-body {
    background: rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* ── FAQ responsive ── */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 3.5rem 0 3rem;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-wrapper {
        max-width: 620px;
    }

    .faq-toggle {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .faq-answer-body {
        padding: 1rem 1.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 2.5rem 0 2rem;
    }

    .faq-header {
        margin-bottom: 1.5rem;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-wrapper {
        max-width: 100%;
    }

    .faq-toggle {
        padding: 11px 16px;
        font-size: 0.82rem;
        gap: 10px;
    }

    .faq-arrow {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .faq-answer-body {
        padding: 0.9rem 1.2rem 1rem;
        font-size: 0.8rem;
        border-radius: 0 0 18px 18px;
    }

    .faq-item {
        margin-bottom: 8px;
    }
}

/* ══════════════════════════════════════════════
   PROMO BANNER SECTION
   ══════════════════════════════════════════════ */
.promo-section {
    padding: 3rem 0 4rem;
    background: var(--hero-bg);
    position: relative;
    z-index: 2;
}

[data-theme="light"] .promo-section {
    background: #ffffff;
}

.promo-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 2.5rem 2.5rem 3.5rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[data-theme="light"] .promo-banner {
    background: linear-gradient(135deg, #7a9bb5 0%, #4e7494 30%, #2d5474 60%, #1b3a5c 100%);
}

[data-theme="dark"] .promo-banner {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 30%, #161616 60%, #121212 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── SVG wave layers ── */
.promo-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    pointer-events: none;
}

.promo-wave-1 {
    z-index: 1;
    opacity: 0.5;
    animation: promoWave1 8s ease-in-out infinite;
}

.promo-wave-2 {
    z-index: 2;
    opacity: 0.4;
    animation: promoWave2 6s ease-in-out infinite;
}

.promo-wave-3 {
    z-index: 3;
    opacity: 0.55;
    animation: promoWave3 10s ease-in-out infinite;
}

[data-theme="light"] .promo-wave-1 path {
    fill: #4a6e8a;
}

[data-theme="light"] .promo-wave-2 path {
    fill: #3a5c78;
}

[data-theme="light"] .promo-wave-3 path {
    fill: #2a4a66;
}

[data-theme="dark"] .promo-wave-1 path {
    fill: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .promo-wave-2 path {
    fill: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .promo-wave-3 path {
    fill: rgba(255, 255, 255, 0.07);
}

@keyframes promoWave1 {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-12px);
    }
}

@keyframes promoWave2 {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes promoWave3 {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-8px);
    }
}

/* ── Model image (right side, top) ── */
.promo-model {
    position: absolute;
    top: 15px;
    right: 2rem;
    width: 160px;
    height: 160px;
    z-index: 5;
}

    .promo-model img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

/* ── Discount badge (left side) ── */
.promo-discount {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    z-index: 5;
}

.promo-discount-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: floatSoft 4s ease-in-out infinite;
}

[data-theme="light"] .promo-discount-inner {
    background: linear-gradient(145deg, rgba(56, 180, 180, 0.8) 0%, rgba(40, 160, 160, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 24px rgba(40, 160, 160, 0.35);
}

[data-theme="dark"] .promo-discount-inner {
    background: linear-gradient(145deg, rgba(56, 180, 180, 0.6) 0%, rgba(40, 150, 150, 0.7) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.promo-discount-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.promo-discount-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ── Banner content ── */
.promo-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 8rem;
}

.promo-title {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.3rem;
}

.promo-sub {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 0.6rem;
}

.promo-desc {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 0.8rem;
    line-height: 1.6;
}

/* ── Contact line ── */
.promo-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.promo-phone-decor {
    height: 6px;
    width: auto;
    opacity: 0.6;
}

.promo-phone-link {
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

    .promo-phone-link:hover {
        opacity: 0.8;
        color: #fff;
    }

/* ── Countdown timer (bottom-left) ── */
.promo-countdown {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    direction: ltr;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.countdown-num {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    min-width: 28px;
    text-align: center;
    line-height: 1;
}

.countdown-label {
    font-size: 0.55rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.countdown-sep {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
}

/* ── Promo responsive ── */
@media (max-width: 991.98px) {
    .promo-banner {
        padding: 2rem 2rem 3rem;
    }

    .promo-content {
        padding: 0 5rem;
    }

    .promo-model {
        width: 100px;
        height: 100px;
        right: 1.5rem;
    }

    .promo-discount-inner {
        width: 68px;
        height: 68px;
    }

    .promo-discount-value {
        font-size: 1rem;
    }

    .promo-wave {
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .promo-section {
        padding: 2rem 0 3rem;
    }

    .promo-banner {
        padding: 5rem 1.2rem 4rem;
        border-radius: 18px;
    }

    .promo-content {
        padding: 0;
    }

    .promo-model {
        width: 80px;
        height: 80px;
        right: 1rem;
        top: -5px;
    }

    .promo-discount {
        top: 0.75rem;
        left: 1rem;
    }

    .promo-discount-inner {
        width: 58px;
        height: 58px;
    }

    .promo-discount-value {
        font-size: 0.85rem;
    }

    .promo-discount-label {
        font-size: 0.55rem;
    }

    .promo-title {
        font-size: 1rem;
    }

    .promo-sub {
        font-size: 0.72rem;
    }

    .promo-desc {
        font-size: 0.7rem;
    }

    .promo-contact {
        font-size: 0.68rem;
        gap: 4px;
    }

    .promo-phone-link {
        font-size: 0.75rem;
    }

    .promo-countdown {
        left: 1rem;
        bottom: 0.75rem;
        gap: 4px;
    }

    .countdown-num {
        font-size: 0.8rem;
        min-width: 22px;
    }

    .countdown-label {
        font-size: 0.48rem;
    }

    .promo-wave {
        height: 55px;
    }
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════ */
.about-section {
    padding: 4rem 0 5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

[data-theme="light"] .about-section {
    background: linear-gradient(160deg, #eef3f8 0%, #dce6f0 50%, #e8eff6 100%);
}

[data-theme="dark"] .about-section {
    background: #121212;
}

/* ── Header ── */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    animation: aboutFadeDown 0.8s ease both;
}

[data-theme="light"] .about-title {
    color: #1b3a5c;
}

[data-theme="dark"] .about-title {
    color: #e8ecf0;
}

.about-title-decor {
    display: block;
    margin: 0 auto 0.6rem;
    width: 120px;
    height: auto;
    opacity: 0.6;
    animation: aboutFadeDown 0.8s 0.1s ease both;
}

.about-subtitle {
    font-size: 0.82rem;
    font-weight: 400;
    margin: 0;
    animation: aboutFadeDown 0.8s 0.2s ease both;
}

[data-theme="light"] .about-subtitle {
    color: rgba(27, 58, 92, 0.5);
}

[data-theme="dark"] .about-subtitle {
    color: rgba(255, 255, 255, 0.45);
}

/* ── Body (two columns — equal width) ── */
.about-body {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    direction: rtl;
}

/* ── Text column (right side in RTL) ── */
.about-text-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: aboutSlideRight 0.9s 0.3s ease both;
}

.about-desc {
    font-size: 0.85rem;
    line-height: 2;
    margin: 0 0 2rem;
    text-align: justify;
}

[data-theme="light"] .about-desc {
    color: rgba(27, 58, 92, 0.7);
}

[data-theme="dark"] .about-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Action buttons ── */
.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.8rem;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] .about-btn-outline {
    border: 1.5px solid rgba(27, 58, 92, 0.2);
    color: #1b3a5c;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

    [data-theme="light"] .about-btn-outline:hover {
        border-color: rgba(27, 58, 92, 0.35);
        color: #102a45;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 6px 24px rgba(27, 58, 92, 0.12);
        transform: translateY(-2px);
    }

[data-theme="dark"] .about-btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #e0e4e8;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

    [data-theme="dark"] .about-btn-outline:hover {
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

.about-btn-filled {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(26, 138, 138, 0.85) 0%, rgba(21, 120, 120, 0.9) 100%);
    box-shadow: 0 4px 20px rgba(26, 138, 138, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

    .about-btn-filled:hover {
        background: linear-gradient(135deg, rgba(29, 158, 158, 0.95) 0%, rgba(24, 136, 136, 1) 100%);
        color: #fff;
        box-shadow: 0 8px 30px rgba(26, 138, 138, 0.4);
        transform: translateY(-2px);
    }

    .about-btn-filled svg {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        padding: 4px;
        width: 24px;
        height: 24px;
        transition: background 0.3s ease;
    }

    .about-btn-filled:hover svg {
        background: rgba(255, 255, 255, 0.35);
    }

/* ── Stats column (left side in RTL → 2×2 grid, same width as text) ── */
.about-stats-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
    animation: aboutSlideLeft 0.9s 0.4s ease both;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    align-content: stretch;
}

.about-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 168px;
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, background 0.4s ease;
}

.about-stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, background 0.35s ease;
}

    .about-stat-icon svg {
        width: 30px;
        height: 30px;
    }

[data-theme="light"] .about-stat-icon {
    background: rgba(26, 138, 138, 0.12);
    border: 1px solid rgba(26, 138, 138, 0.22);
    color: #157878;
}

[data-theme="dark"] .about-stat-icon {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.06);
}

[data-theme="light"] .about-stat-card:hover .about-stat-icon {
    background: rgba(26, 138, 138, 0.18);
}

[data-theme="dark"] .about-stat-card:hover .about-stat-icon {
    background: rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .about-stat-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 24px rgba(27, 58, 92, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

    [data-theme="light"] .about-stat-card:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(27, 58, 92, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

[data-theme="dark"] .about-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

    [data-theme="dark"] .about-stat-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    }

.about-stat-card:nth-child(1) {
    animation: aboutCardPop 0.6s 0.5s ease both;
}

.about-stat-card:nth-child(2) {
    animation: aboutCardPop 0.6s 0.65s ease both;
}

.about-stat-card:nth-child(3) {
    animation: aboutCardPop 0.6s 0.8s ease both;
}

.about-stat-card:nth-child(4) {
    animation: aboutCardPop 0.6s 0.95s ease both;
}

.about-stat-num {
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    font-weight: 800;
    line-height: 1;
    direction: ltr;
}

[data-theme="light"] .about-stat-num {
    color: #1b3a5c;
}

[data-theme="dark"] .about-stat-num {
    color: #e0e6ec;
}

.about-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.35;
}

[data-theme="light"] .about-stat-label {
    color: rgba(27, 58, 92, 0.5);
}

[data-theme="dark"] .about-stat-label {
    color: rgba(255, 255, 255, 0.45);
}

/* ── About animations ── */
@keyframes aboutFadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutCardPop {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── About responsive ── */
@media (max-width: 991.98px) {
    .about-body {
        gap: 2rem;
    }

    .about-stat-card {
        min-height: 150px;
        padding: 1.4rem 1rem 1.25rem;
        gap: 0.65rem;
    }

    .about-stat-icon {
        width: 56px;
        height: 56px;
    }

        .about-stat-icon svg {
            width: 26px;
            height: 26px;
        }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 3rem 0 3.5rem;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-body {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text-col {
        order: 1;
    }

    .about-stats-col {
        order: 2;
        flex: none;
        width: 100%;
    }

    .about-desc {
        font-size: 0.8rem;
        line-height: 1.9;
    }

    .about-actions {
        justify-content: center;
    }

    .about-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.8rem;
    }

    .about-stat-card {
        min-height: 132px;
        padding: 1.1rem 0.65rem 1rem;
        border-radius: 16px;
        gap: 0.5rem;
    }

    .about-stat-icon {
        width: 48px;
        height: 48px;
    }

        .about-stat-icon svg {
            width: 22px;
            height: 22px;
        }

    .about-stat-num {
        font-size: 1.15rem;
    }

    .about-stat-label {
        font-size: 0.68rem;
    }
}

/* ══════════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════════ */
.blog-section {
    padding: 4rem 0 5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

[data-theme="light"] .blog-section {
    background: var(--hero-bg);
}

[data-theme="dark"] .blog-section {
    background: #161616;
}

/* ── Header ── */
.blog-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.blog-title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 0.45rem;
    color: var(--text-primary);
}

.blog-title-decor {
    display: block;
    margin: 0 auto 0.55rem;
    width: 110px;
    height: auto;
    opacity: 0.6;
}

.blog-subtitle {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
}

/* ── Blog swiper ── */
.blog-swiper {
    overflow: visible;
    padding: 1rem 0 2rem;
}

    .blog-swiper .swiper-slide {
        height: auto;
    }

/* ── Blog card ── */
.blog-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s ease;
}

[data-theme="light"] .blog-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .blog-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-6px);
}

[data-theme="light"] .blog-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .blog-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ── Card image ── */
.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 195px;
}

    .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    pointer-events: none;
}

[data-theme="light"] .blog-card-img::after {
    background: linear-gradient(to top, rgba(11, 30, 54, 0.55) 0%, transparent 100%);
}

[data-theme="dark"] .blog-card-img::after {
    background: linear-gradient(to top, rgba(18, 18, 18, 0.7) 0%, transparent 100%);
}

/* ── Tag badge ── */
.blog-card-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(26, 138, 138, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

/* ── Card body ── */
.blog-card-body {
    padding: 1.15rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Meta ── */
.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.6rem;
    font-size: 0.68rem;
    font-weight: 500;
}

    .blog-card-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

[data-theme="light"] .blog-card-meta {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .blog-card-meta {
    color: rgba(255, 255, 255, 0.4);
}

/* ── Title ── */
.blog-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[data-theme="light"] .blog-card-title {
    color: rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] .blog-card-title {
    color: rgba(255, 255, 255, 0.88);
}

/* ── Excerpt ── */
.blog-card-excerpt {
    font-size: 0.76rem;
    line-height: 1.7;
    margin: 0 0 auto;
    padding-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[data-theme="light"] .blog-card-excerpt {
    color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .blog-card-excerpt {
    color: rgba(255, 255, 255, 0.38);
}

/* ── Read more link ── */
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 12px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

[data-theme="light"] .blog-card-link {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

    [data-theme="light"] .blog-card-link:hover {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
    }

[data-theme="dark"] .blog-card-link {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .blog-card-link:hover {
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.9);
    }

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(-4px);
}

/* ── Blog nav ── */
.blog-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════
   BLOG DETAIL (Article)
   ══════════════════════════════════════════════ */
.blog-detail-hero {
    padding: 9rem 0 2.5rem;
    text-align: center;
}

.blog-detail-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 1.1rem;
}

    .blog-detail-breadcrumb a {
        color: var(--text-secondary);
        opacity: 0.85;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

        .blog-detail-breadcrumb a:hover {
            color: var(--text-primary);
            opacity: 1;
        }

    .blog-detail-breadcrumb .bi-chevron-left {
        font-size: 0.55rem;
        opacity: 0.6;
    }

.blog-detail-title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 0.9rem;
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

    .blog-detail-meta span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        opacity: 0.9;
    }

.blog-detail-meta-cat {
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blog-detail-main {
    padding: 0 0 5.5rem;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2rem;
    align-items: start;
}

.blog-detail-heroimg {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

    .blog-detail-heroimg img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }

.blog-detail-article {
    min-width: 0;
}

.blog-detail-sidebar {
    min-width: 0;
}

.blog-detail-card {
    margin-top: 1.4rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 1.45rem 1.45rem;
}

.blog-detail-lead {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.86);
}

[data-theme="light"] .blog-detail-lead {
    color: rgba(15, 42, 77, 0.85);
}

.blog-detail-content,
.blog-detail-card {
    direction: rtl;
}

    .blog-detail-card h2 {
        font-size: 1.22rem;
        font-weight: 900;
        margin: 1.6rem 0 0.8rem;
        color: var(--text-primary);
    }

    .blog-detail-card p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.95;
        margin: 0 0 1rem;
    }

.blog-detail-list {
    padding-right: 1.25rem;
    margin: 0.4rem 0 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 0.95rem;
}

    .blog-detail-list li {
        margin: 0.35rem 0;
    }

.blog-detail-sectionhead {
    margin: 2.3rem 0 1.35rem;
    text-align: right;
}

.blog-detail-sectionhead--sm {
    margin: 0 0 1rem;
}

.blog-detail-sectionhead h2 {
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 0 0.35rem;
    color: var(--text-primary);
}

.blog-detail-sectionhead p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-secondary);
    opacity: 0.95;
}

.blog-detail-comments {
    margin-top: 1.4rem;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comment-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .comment-meta strong {
        font-weight: 900;
        color: var(--text-primary);
        font-size: 0.9rem;
    }

    .comment-meta span {
        color: var(--text-secondary);
        font-size: 0.78rem;
    }

.comment-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.85;
    margin: 0;
}

.comment-actions {
    margin-top: 0.7rem;
}

.comment-action-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0.45rem 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .comment-action-btn:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.08);
    }

.blog-detail-commentform .blog-detail-sectionhead {
    text-align: right;
}

.blog-detail-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 14px;
}

    .blog-detail-input:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(56, 103, 164, 0.25);
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.06);
    }

[data-theme="light"] .blog-detail-input {
    background: rgba(255, 255, 255, 0.75);
    color: #0f2a4d;
    border-color: rgba(15, 42, 77, 0.15);
}

    [data-theme="light"] .blog-detail-input:focus {
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
    }

.blog-detail-submit {
    border: 1px solid var(--glass-border);
    background: var(--cta-bg);
    color: var(--cta-color);
    border-radius: 14px;
    padding: 0.75rem 1.2rem;
    font-weight: 900;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .blog-detail-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    }

.blog-related-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.blog-related-item {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, background 0.2s ease;
}

    .blog-related-item:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.06);
    }

.blog-related-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(56, 103, 164, 0.9);
    box-shadow: 0 0 0 4px rgba(56, 103, 164, 0.15);
}

.blog-related-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 0.88rem;
    line-height: 1.5;
}

.blog-related-meta {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.blog-author-row {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
}

.blog-author-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.blog-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.blog-author-name {
    font-weight: 900;
    color: var(--text-primary);
}

.blog-author-role {
    color: var(--text-secondary);
    font-size: 0.82rem;
    opacity: 0.95;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.blog-detail-tag {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 800;
}

.blog-detail-share {
    display: flex;
    gap: 0.6rem;
}

.blog-detail-sharebtn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .blog-detail-sharebtn:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.06);
    }

.blog-detail-finalcta {
    margin-top: 2.4rem;
}

.blog-finalcta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.blog-finalcta-text h2 {
    font-size: 1.35rem;
}

.blog-finalcta-text p {
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
    line-height: 1.8;
}

.blog-detail-related-gridwrap .blog-detail-sectionhead {
    text-align: right;
}

@media (max-width: 991.98px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        order: 2;
    }

    .blog-detail-heroimg img {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-hero {
        padding-top: 8.3rem;
    }

    .blog-detail-card {
        padding: 1.1rem;
    }
}

/* ── Blog responsive ── */
@media (max-width: 767.98px) {
    .blog-section {
        padding: 3rem 0 3.5rem;
    }

    .blog-header {
        margin-bottom: 1.5rem;
    }

    .blog-card-img {
        height: 160px;
    }

    .blog-card-title {
        font-size: 0.85rem;
    }
}

/* ══════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════ */
.contact-section {
    padding: 4rem 0 5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

[data-theme="light"] .contact-section {
    background: linear-gradient(180deg, #f2f6fa 0%, #e8eef5 45%, #eef3f8 100%);
}

[data-theme="dark"] .contact-section {
    background: linear-gradient(180deg, #161616 0%, #121212 100%);
}

.contact-top {
    margin-bottom: 0.5rem;
}

/* ── Header ── */
.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .contact-header {
        text-align: start;
    }
}

.contact-title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 0.45rem;
}

[data-theme="light"] .contact-title {
    color: #1b3a5c;
}

[data-theme="dark"] .contact-title {
    color: #e0e0e0;
}

.contact-title-decor {
    display: block;
    margin: 0 auto 0.55rem;
    width: 110px;
    height: auto;
    opacity: 0.65;
}

@media (min-width: 992px) {
    .contact-title-decor {
        margin-inline: 0;
        margin-inline-end: auto;
    }
}

.contact-subtitle {
    font-size: 0.82rem;
    font-weight: 400;
    margin: 0;
}

[data-theme="light"] .contact-subtitle {
    color: rgba(27, 58, 92, 0.55);
}

[data-theme="dark"] .contact-subtitle {
    color: rgba(255, 255, 255, 0.45);
}

/* ── Info + map glass blocks ── */
.contact-info-glass {
    border-radius: 18px;
    padding: 1.25rem 1.15rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

[data-theme="light"] .contact-info-glass {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 32px rgba(27, 58, 92, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .contact-info-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.contact-info-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

[data-theme="light"] .contact-info-icon {
    background: rgba(43, 122, 180, 0.12);
    color: #2b7ab4;
}

[data-theme="dark"] .contact-info-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #a0c4e0;
}

.contact-info-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

[data-theme="light"] .contact-info-label {
    color: #1b3a5c;
}

[data-theme="dark"] .contact-info-label {
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-value {
    font-size: 0.78rem;
    line-height: 1.75;
    margin: 0;
}

[data-theme="light"] .contact-info-value {
    color: rgba(27, 58, 92, 0.72);
}

[data-theme="dark"] .contact-info-value {
    color: rgba(255, 255, 255, 0.6);
}

.contact-phones {
    text-align: end;
    word-break: break-word;
}

.contact-map-glass {
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 100%;
    min-height: 200px;
}

[data-theme="light"] .contact-map-glass {
    background: rgba(255, 255, 255, 0.65);
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(27, 58, 92, 0.1), inset 0 0 0 1px rgba(27, 58, 92, 0.06);
}

[data-theme="dark"] .contact-map-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 3px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.contact-map-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
}

/* ── Illustration ── */
.contact-illus-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.contact-illus-img {
    max-width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(27, 58, 92, 0.12));
    animation: contactIllusFloat 5s ease-in-out infinite;
}

[data-theme="dark"] .contact-illus-img {
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
    opacity: 0.95;
}

@keyframes contactIllusFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ── Channel cards ── */
.contact-channels {
    margin-top: 2.5rem;
}

.contact-channel-card {
    position: relative;
    text-align: center;
    padding: 2.25rem 1rem 1.35rem;
    border-radius: 18px;
    margin-top: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

[data-theme="light"] .contact-channel-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 6px 28px rgba(27, 58, 92, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .contact-channel-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

.contact-channel-card:hover {
    transform: translateY(-4px);
}

[data-theme="light"] .contact-channel-card:hover {
    box-shadow: 0 14px 40px rgba(27, 58, 92, 0.12);
}

[data-theme="dark"] .contact-channel-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.contact-channel-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(145deg, #3d5a73 0%, #1b3a5c 100%);
    box-shadow: 0 6px 20px rgba(27, 58, 92, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .contact-channel-icon {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.contact-channel-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
}

[data-theme="light"] .contact-channel-title {
    color: #1b3a5c;
}

[data-theme="dark"] .contact-channel-title {
    color: rgba(255, 255, 255, 0.9);
}

.contact-channel-link {
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease, opacity 0.2s ease;
}

[data-theme="light"] .contact-channel-link {
    color: #2b7ab4;
}

[data-theme="dark"] .contact-channel-link {
    color: rgba(255, 255, 255, 0.6);
}

.contact-channel-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* ── Contact responsive ── */
@media (max-width: 991.98px) {
    .contact-header {
        text-align: center;
    }

    .contact-title-decor {
        margin-inline: auto;
    }

    .contact-illus-img {
        max-height: 260px;
    }

    .contact-map-glass {
        min-height: 180px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0 4rem;
    }

    .contact-channels {
        margin-top: 2rem;
    }

    .contact-channel-card {
        padding: 2rem 1rem 1.2rem;
        margin-top: 1.35rem;
    }

    .contact-channel-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
    position: relative;
    z-index: 3;
    direction: rtl;
}

/* ── Footer top ── */
.footer-top {
    padding: 3rem 0 2.5rem;
}

[data-theme="light"] .footer-top {
    background: linear-gradient(160deg, #0f1c2e 0%, #0b1622 60%, #091420 100%);
}

[data-theme="dark"] .footer-top {
    background: linear-gradient(160deg, #0e0e0e 0%, #0a0a0a 60%, #080808 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Headings ── */
.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading--sm {
    font-size: 0.85rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

/* ── Contact list (right col) ── */
.footer-contact-list {
    margin: 0 0 1.25rem;
}

    .footer-contact-list li {
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        font-size: 0.78rem;
        margin-bottom: 0.65rem;
    }

.footer-contact-label {
    flex-shrink: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-contact-list a:hover {
        color: #fff;
    }

/* ── Social icons ── */
.footer-socials {
    display: flex;
    gap: 0.6rem;
    direction: ltr;
}

    .footer-socials a {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

        .footer-socials a:hover {
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

/* ── Center column (logo + newsletter) ── */
.footer-center {
    text-align: center;
}

.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 0.6rem;
    filter: brightness(1.1);
}

.footer-slogan {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.35rem;
}

.footer-newsletter-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.7rem;
}

.footer-newsletter {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

[data-theme="light"] .footer-newsletter {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .footer-newsletter {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: inherit;
}

    .footer-newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

.footer-newsletter-btn {
    flex-shrink: 0;
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.3s ease;
}

[data-theme="light"] .footer-newsletter-btn {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

    [data-theme="light"] .footer-newsletter-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

[data-theme="dark"] .footer-newsletter-btn {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.75);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

    [data-theme="dark"] .footer-newsletter-btn:hover {
        background: rgba(255, 255, 255, 0.14);
    }

/* ── Quick links (left col) ── */
.footer-links-grid {
    display: flex;
    gap: 2rem;
}

.footer-links {
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.55rem;
    }

        .footer-links li::before {
            content: "\2022";
            color: rgba(255, 255, 255, 0.3);
            margin-left: 0.4rem;
            font-size: 0.7rem;
        }

    .footer-links a {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.9);
        }

/* ── Footer bottom (licenses) ── */
.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .footer-bottom {
    background: #080f18;
}

[data-theme="dark"] .footer-bottom {
    background: #060606;
}

.footer-licenses {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-license-badge {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════════════════════
   SCROLL TO TOP BUTTON
   ══════════════════════════════════════════════ */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 1.25rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

    .scroll-top-btn.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

[data-theme="light"] .scroll-top-btn {
    background: rgba(27, 58, 92, 0.8);
    color: #fff;
    box-shadow: 0 6px 24px rgba(27, 58, 92, 0.25);
}

    [data-theme="light"] .scroll-top-btn:hover {
        background: rgba(27, 58, 92, 0.95);
        box-shadow: 0 8px 30px rgba(27, 58, 92, 0.35);
    }

[data-theme="dark"] .scroll-top-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

    [data-theme="dark"] .scroll-top-btn:hover {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
    }

/* ══════════════════════════════════════════════
   MOBILE CTA BAR
   ══════════════════════════════════════════════ */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: stretch;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
}

[data-theme="light"] .mobile-cta-bar {
    background: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(27, 58, 92, 0.1);
    box-shadow: 0 -4px 24px rgba(27, 58, 92, 0.08);
}

[data-theme="dark"] .mobile-cta-bar {
    background: rgba(18, 18, 18, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.mobile-cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    padding: 0.45rem 0.25rem;
    border-radius: 12px;
    transition: background 0.2s ease;
    font-size: 0.68rem;
    font-weight: 600;
}

[data-theme="light"] .mobile-cta-item {
    color: #1b3a5c;
}

    [data-theme="light"] .mobile-cta-item:hover,
    [data-theme="light"] .mobile-cta-item:active {
        background: rgba(27, 58, 92, 0.06);
        color: #1b3a5c;
    }

[data-theme="dark"] .mobile-cta-item {
    color: rgba(255, 255, 255, 0.75);
}

    [data-theme="dark"] .mobile-cta-item:hover,
    [data-theme="dark"] .mobile-cta-item:active {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

.mobile-cta-item i {
    font-size: 1.15rem;
}

.mobile-cta-main {
    position: relative;
}

[data-theme="light"] .mobile-cta-main {
    background: rgba(26, 138, 138, 0.12);
    color: #148080;
}

    [data-theme="light"] .mobile-cta-main:hover {
        background: rgba(26, 138, 138, 0.2);
        color: #0f6868;
    }

[data-theme="dark"] .mobile-cta-main {
    background: rgba(26, 138, 138, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

    [data-theme="dark"] .mobile-cta-main:hover {
        background: rgba(26, 138, 138, 0.25);
        color: #fff;
    }

/* ══════════════════════════════════════════════
   AUTH PAGES (LOGIN / REGISTER)
   ══════════════════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.auth-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

[data-theme="dark"] .auth-bg {
    background: radial-gradient(ellipse at 30% 20%, #1a1a1a, #0e0e0e 60%, #080808 100%);
}

[data-theme="light"] .auth-bg {
    background: radial-gradient(ellipse at 30% 20%, #1b3a5c, #0f2a4d 60%, #0b1e36 100%);
}

.auth-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: authOrbFloat 12s ease-in-out infinite;
}

[data-theme="dark"] .auth-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(26, 138, 138, 0.12);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

[data-theme="dark"] .auth-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(100, 100, 255, 0.08);
    bottom: -5%;
    left: -5%;
    animation-delay: -4s;
}

[data-theme="dark"] .auth-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

[data-theme="light"] .auth-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(56, 180, 200, 0.18);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

[data-theme="light"] .auth-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(100, 160, 220, 0.12);
    bottom: -5%;
    left: -5%;
    animation-delay: -4s;
}

[data-theme="light"] .auth-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

.auth-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    animation: authGridPulse 6s ease-in-out infinite;
}

[data-theme="light"] .auth-grid-lines {
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

@keyframes authOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

@keyframes authGridPulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.auth-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-container {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.auth-card-register .auth-container {
    max-width: 520px;
}

.auth-back-btn {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 10;
    animation: authFadeIn 0.6s 0.1s ease both;
}

    .auth-back-btn:hover {
        background: rgba(255,255,255,0.14);
        color: #fff;
        transform: translateX(4px);
    }

.auth-theme-toggle {
    position: absolute;
    top: -3rem;
    left: 0;
    z-index: 10;
    animation: authFadeIn 0.6s 0.15s ease both;
}

.auth-card {
    border-radius: 28px;
    overflow: hidden;
    animation: authCardIn 0.8s ease both;
}

[data-theme="dark"] .auth-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

[data-theme="light"] .auth-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.09) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 24px 80px rgba(0,0,0,0.25), 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.15);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.auth-card-inner {
    padding: 2.5rem 2.2rem 2rem;
}

.auth-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: authFadeIn 0.6s 0.2s ease both;
}

.auth-logo-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
}

[data-theme="dark"] .auth-logo-circle {
    background: linear-gradient(145deg, rgba(26, 138, 138, 0.3) 0%, rgba(26, 138, 138, 0.15) 100%);
    border: 1.5px solid rgba(26, 138, 138, 0.4);
    color: rgba(26, 200, 200, 0.9);
    box-shadow: 0 8px 32px rgba(26, 138, 138, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

[data-theme="light"] .auth-logo-circle {
    background: linear-gradient(145deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.9);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}

.auth-logo-circle::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.12);
    animation: authLogoSpin 20s linear infinite;
}

@keyframes authLogoSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.auth-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.4rem;
    animation: authFadeIn 0.6s 0.25s ease both;
}

[data-theme="dark"] .auth-title {
    color: #e8ecf0;
}

[data-theme="light"] .auth-title {
    color: #fff;
}

.auth-subtitle {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 400;
    margin: 0 0 2rem;
    animation: authFadeIn 0.6s 0.3s ease both;
}

[data-theme="dark"] .auth-subtitle {
    color: rgba(255,255,255,0.45);
}

[data-theme="light"] .auth-subtitle {
    color: rgba(255,255,255,0.6);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.auth-input-group {
    position: relative;
    animation: authSlideUp 0.5s ease both;
    animation-delay: calc(0.35s + var(--i, 0) * 0.06s);
}

.auth-form .auth-input-group:nth-child(1) {
    --i: 1;
}

.auth-form .auth-input-group:nth-child(2) {
    --i: 2;
}

.auth-form .auth-input-group:nth-child(3) {
    --i: 3;
}

.auth-form .auth-input-group:nth-child(4) {
    --i: 4;
}

.auth-form .auth-input-group:nth-child(5) {
    --i: 5;
}

.auth-form .auth-input-group:nth-child(6) {
    --i: 6;
}

.auth-row .auth-input-group:nth-child(1) {
    --i: 1;
}

.auth-row .auth-input-group:nth-child(2) {
    --i: 2;
}

.auth-input-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s ease;
}

.auth-input-group:focus-within .auth-input-icon {
    color: rgba(26, 180, 180, 0.8);
}

[data-theme="light"] .auth-input-group:focus-within .auth-input-icon {
    color: rgba(255,255,255,0.9);
}

.auth-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    padding-right: 44px;
    border-radius: 16px;
    border: 1.5px solid transparent;
    font-size: 0.88rem;
    font-family: var(--app-font);
    font-weight: 500;
    outline: none;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .auth-input {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
    color: #e8ecf0;
}

    [data-theme="dark"] .auth-input::placeholder {
        color: rgba(255,255,255,0.3);
    }

    [data-theme="dark"] .auth-input:focus {
        background: rgba(255,255,255,0.08);
        border-color: rgba(26, 138, 138, 0.5);
        box-shadow: 0 0 0 3px rgba(26, 138, 138, 0.12);
    }

[data-theme="light"] .auth-input {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}

    [data-theme="light"] .auth-input::placeholder {
        color: rgba(255,255,255,0.4);
    }

    [data-theme="light"] .auth-input:focus {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.4);
        box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
    }

.auth-input-label {
    display: none;
}

.auth-input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

[data-theme="dark"] .auth-input-highlight {
    background: linear-gradient(90deg, transparent, rgba(26,180,180,0.6), transparent);
}

[data-theme="light"] .auth-input-highlight {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

.auth-input-group:focus-within .auth-input-highlight {
    width: 80%;
}

.auth-toggle-pass {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    padding: 4px;
    transition: color 0.2s ease;
}

    .auth-toggle-pass:hover {
        color: rgba(255,255,255,0.7);
    }

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    animation: authSlideUp 0.5s 0.55s ease both;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    user-select: none;
}

    .auth-remember input[type="checkbox"] {
        display: none;
    }

.auth-checkbox-custom {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

    .auth-checkbox-custom::after {
        content: "\F272";
        font-family: "bootstrap-icons";
        font-size: 0.65rem;
        color: #fff;
        opacity: 0;
        transform: scale(0);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

.auth-remember input:checked + .auth-checkbox-custom {
    background: rgba(26, 138, 138, 0.6);
    border-color: rgba(26, 138, 138, 0.8);
}

    .auth-remember input:checked + .auth-checkbox-custom::after {
        opacity: 1;
        transform: scale(1);
    }

.auth-forgot {
    font-size: 0.78rem;
    color: rgba(26, 180, 180, 0.7);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

    .auth-forgot:hover {
        color: rgba(26, 200, 200, 1);
    }

[data-theme="light"] .auth-forgot {
    color: rgba(255,255,255,0.7);
}

    [data-theme="light"] .auth-forgot:hover {
        color: #fff;
    }

.auth-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 16px;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--app-font);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: authSlideUp 0.5s 0.6s ease both;
}

[data-theme="dark"] .auth-submit-btn {
    background: linear-gradient(135deg, rgba(26,138,138,0.7) 0%, rgba(20,120,120,0.8) 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(26, 138, 138, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

    [data-theme="dark"] .auth-submit-btn:hover {
        background: linear-gradient(135deg, rgba(30,158,158,0.85) 0%, rgba(24,140,140,0.95) 100%);
        box-shadow: 0 12px 40px rgba(26, 138, 138, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
        transform: translateY(-2px);
    }

[data-theme="light"] .auth-submit-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}

    [data-theme="light"] .auth-submit-btn:hover {
        background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.18) 100%);
        box-shadow: 0 12px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.25);
        transform: translateY(-2px);
    }

.auth-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.auth-submit-btn:hover::before {
    left: 100%;
}

.auth-submit-btn i {
    transition: transform 0.3s ease;
}

.auth-submit-btn:hover i {
    transform: translateX(-4px);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    animation: authFadeIn 0.5s 0.65s ease both;
}

    .auth-divider::before,
    .auth-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.1);
    }

    .auth-divider span {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.35);
        white-space: nowrap;
    }

.auth-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    animation: authFadeIn 0.5s 0.7s ease both;
}

.auth-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.35s ease;
}

[data-theme="dark"] .auth-social-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

    [data-theme="dark"] .auth-social-btn:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.18);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

[data-theme="light"] .auth-social-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
}

    [data-theme="light"] .auth-social-btn:hover {
        background: rgba(255,255,255,0.16);
        border-color: rgba(255,255,255,0.3);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

.auth-switch {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 1.25rem 0 0;
    animation: authFadeIn 0.5s 0.75s ease both;
}

    .auth-switch a {
        color: rgba(26, 180, 180, 0.8);
        font-weight: 700;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .auth-switch a:hover {
            color: rgba(26, 200, 200, 1);
        }

[data-theme="light"] .auth-switch a {
    color: rgba(255,255,255,0.85);
}

    [data-theme="light"] .auth-switch a:hover {
        color: #fff;
    }

/* ── Password strength indicator ── */
.auth-password-strength {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 4px;
    animation: authFadeIn 0.5s 0.5s ease both;
}

.auth-strength-bars {
    display: flex;
    gap: 4px;
    flex: 1;
}

.auth-strength-bar {
    height: 4px;
    flex: 1;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    transition: background 0.4s ease;
}

    .auth-strength-bar.active-weak {
        background: #ef4444;
    }

    .auth-strength-bar.active-fair {
        background: #f59e0b;
    }

    .auth-strength-bar.active-good {
        background: #22c55e;
    }

    .auth-strength-bar.active-strong {
        background: #06b6d4;
    }

.auth-strength-text {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    min-width: 50px;
    text-align: left;
    direction: ltr;
}

/* ── Auth keyframes ── */
@keyframes authCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes authSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Auth submit spinner ── */
.auth-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.75;
}

.auth-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: authSpin 0.7s linear infinite;
}

@keyframes authSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Auth responsive ── */
@media (max-width: 575.98px) {
    .auth-card-inner {
        padding: 2rem 1.5rem 1.5rem;
    }

    .auth-row {
        grid-template-columns: 1fr;
    }

    .auth-title {
        font-size: 1.35rem;
    }

    .auth-logo-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .auth-social-btn {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .auth-container {
        max-width: 100%;
    }

    .auth-back-btn,
    .auth-theme-toggle {
        top: -2.5rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .auth-container {
        max-width: 420px;
    }
}

/* push footer content up on mobile so CTA bar doesn't overlap */
@media (max-width: 991.98px) {
    body:not(.dash-page):not(.auth-page):not(.about-pg):not(.hours-pg):not(.landing-pg) {
        padding-bottom: 64px;
    }

    .scroll-top-btn {
        bottom: 5rem;
    }
}

/* ── Footer responsive ── */
@media (max-width: 767.98px) {
    .footer-top {
        padding: 2.5rem 0 2rem;
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links-grid {
        justify-content: center;
    }

    .footer-licenses {
        justify-content: center;
    }

    .footer-heading,
    .footer-heading--sm {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* ══════════════════════════════════════════════
   DASHBOARD PAGE
   ══════════════════════════════════════════════ */
.dash-page {
    overflow-x: hidden;
}

/* ── Dashboard header ── */
.dash-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="dark"] .dash-header {
    background: rgba(18, 18, 18, 0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

[data-theme="light"] .dash-header {
    background: rgba(11, 30, 54, 0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dash-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.5rem;
    max-width: 100%;
}

.dash-header-right,
.dash-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dash-header-center {
    flex: 1;
    max-width: 420px;
    margin: 0 1.5rem;
}

/* ── Sidebar toggle (hamburger) ── */
.dash-sidebar-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

    .dash-sidebar-toggle span {
        width: 16px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* ── Dashboard logo ── */
.dash-logo {
    text-decoration: none;
}

.dash-logo-slot {
    min-width: 72px;
    height: 36px;
    border-radius: 10px;
    border: 1px dashed var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ── Search bar ── */
.dash-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    width: 100%;
}

[data-theme="dark"] .dash-search {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .dash-search {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.dash-search i {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dash-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--app-font);
    font-size: 0.82rem;
}

    .dash-search input::placeholder {
        color: var(--text-secondary);
    }

/* ── Notification button ── */
.dash-notif-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .dash-notif-btn:hover {
        background: var(--glass-hover);
    }

.dash-notif-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── User chip ── */
.dash-user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 6px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.25s ease;
}

[data-theme="dark"] .dash-user-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .dash-user-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.dash-user-chip:hover {
    background: var(--glass-hover);
}

.dash-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

    .dash-user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dash-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.dash-user-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-user-role {
    font-size: 0.62rem;
    color: rgba(26, 180, 180, 0.8);
    font-weight: 600;
}

.dash-user-chip .bi-chevron-down {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

/* ══════════════════════════════════════════════
   DASHBOARD LAYOUT
   ══════════════════════════════════════════════ */
.dash-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
}

/* ── Sidebar ── */
.dash-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .dash-sidebar {
    background: rgba(14, 14, 14, 0.95);
    border-left: 1px solid rgba(255,255,255,0.06);
}

[data-theme="light"] .dash-sidebar {
    background: rgba(8, 22, 40, 0.95);
    border-left: 1px solid rgba(255,255,255,0.1);
}

.dash-sidebar::-webkit-scrollbar {
    width: 4px;
}

.dash-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
}

/* ── Sidebar head (profile) ── */
.dash-sidebar-head {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dash-sidebar-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

    .dash-sidebar-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dash-online-dot {
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid var(--hero-bg);
}

.dash-sidebar-user {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .dash-sidebar-user strong {
        font-size: 0.88rem;
        color: var(--text-primary);
    }

.dash-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    width: fit-content;
    background: linear-gradient(135deg, rgba(245,158,11,0.2) 0%, rgba(217,119,6,0.15) 100%);
    color: #f59e0b;
    border: 1px solid rgba(245,158,11,0.25);
}

/* ── Sidebar nav ── */
.dash-sidebar-nav {
    flex: 1;
    padding: 0.75rem 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-nav-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 0.75rem 0.5rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

    .dash-nav-item:hover {
        color: var(--text-primary);
        background: var(--glass-bg);
    }

    .dash-nav-item.active {
        color: var(--text-primary);
    }

[data-theme="dark"] .dash-nav-item.active {
    background: rgba(26, 138, 138, 0.12);
    color: rgba(26, 200, 200, 0.95);
}

[data-theme="light"] .dash-nav-item.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.dash-nav-item i {
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
}

.dash-nav-badge {
    margin-right: auto;
    margin-left: 0;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* ── Sidebar footer ── */
.dash-sidebar-footer {
    padding: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.dash-logout {
    color: rgba(239, 68, 68, 0.7) !important;
}

    .dash-logout:hover {
        color: #ef4444 !important;
        background: rgba(239, 68, 68, 0.08) !important;
    }

/* ── Sidebar overlay (mobile) ── */
.dash-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 89;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

    .dash-sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

/* ── Sidebar responsive ── */
@media (max-width: 1199.98px) {
    .dash-sidebar {
        transform: translateX(100%);
    }

        .dash-sidebar.open {
            transform: translateX(0);
        }
}

@media (min-width: 1200px) {
    .dash-sidebar {
        position: sticky;
        top: 64px;
        height: calc(100vh - 64px);
    }
}

/* ══════════════════════════════════════════════
   DASHBOARD MAIN CONTENT
   ══════════════════════════════════════════════ */
.dash-main {
    flex: 1;
    min-width: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1200px) {
    .dash-main {
        padding: 2rem;
        gap: 1.75rem;
    }
}

/* ── Welcome banner ── */
.dash-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.75rem 2rem;
    border-radius: 20px;
    animation: authFadeIn 0.6s ease both;
}

[data-theme="dark"] .dash-welcome {
    background: linear-gradient(135deg, rgba(26, 138, 138, 0.1) 0%, rgba(26, 138, 138, 0.04) 50%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(26, 138, 138, 0.15);
}

[data-theme="light"] .dash-welcome {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(56,180,200,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.15);
}

.dash-welcome-text h1 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.35rem;
}

.dash-wave-hand {
    display: inline-block;
    animation: dashWave 1.5s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes dashWave {
    0%, 100% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(14deg);
    }

    30% {
        transform: rotate(-8deg);
    }

    45% {
        transform: rotate(14deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.dash-welcome-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ── Dashboard buttons ── */
.dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--app-font);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.dash-btn-primary {
    background: linear-gradient(135deg, rgba(26,138,138,0.7) 0%, rgba(20,120,120,0.8) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 138, 138, 0.2);
}

    .dash-btn-primary:hover {
        background: linear-gradient(135deg, rgba(30,158,158,0.85) 0%, rgba(24,140,140,0.95) 100%);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(26, 138, 138, 0.3);
    }

/* ── Stats grid ── */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 991.98px) {
    .dash-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .dash-stats-grid {
        grid-template-columns: 1fr;
    }
}

.dash-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: authSlideUp 0.5s ease both;
}

    .dash-stat-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .dash-stat-card:nth-child(2) {
        animation-delay: 0.15s;
    }

    .dash-stat-card:nth-child(3) {
        animation-delay: 0.2s;
    }

    .dash-stat-card:nth-child(4) {
        animation-delay: 0.25s;
    }

[data-theme="dark"] .dash-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .dash-stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
}

.dash-stat-card:hover {
    transform: translateY(-3px);
}

[data-theme="dark"] .dash-stat-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

[data-theme="light"] .dash-stat-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dash-stat-icon--teal {
    background: rgba(26, 138, 138, 0.12);
    color: rgba(26, 200, 200, 0.9);
    border: 1px solid rgba(26, 138, 138, 0.2);
}

.dash-stat-icon--blue {
    background: rgba(59, 130, 246, 0.12);
    color: rgba(96, 165, 250, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.dash-stat-icon--gold {
    background: rgba(245, 158, 11, 0.12);
    color: rgba(251, 191, 36, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.dash-stat-icon--rose {
    background: rgba(244, 63, 94, 0.12);
    color: rgba(251, 113, 133, 0.9);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.dash-stat-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    direction: ltr;
    text-align: right;
}

.dash-stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ── Two-column grid ── */
.dash-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 991.98px) {
    .dash-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* ── Dashboard card ── */
.dash-card {
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: authFadeIn 0.5s ease both;
}

[data-theme="dark"] .dash-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .dash-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
}

.dash-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .dash-card-head h3 {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .dash-card-head h3 i {
            font-size: 1rem;
            opacity: 0.6;
        }

.dash-card-link {
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

[data-theme="dark"] .dash-card-link {
    color: rgba(26, 180, 180, 0.7);
}

    [data-theme="dark"] .dash-card-link:hover {
        color: rgba(26, 200, 200, 1);
    }

[data-theme="light"] .dash-card-link {
    color: rgba(255,255,255,0.6);
}

    [data-theme="light"] .dash-card-link:hover {
        color: #fff;
    }

.dash-card-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1px solid var(--glass-border);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--app-font);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

    .dash-card-edit-btn:hover {
        background: var(--glass-bg);
        color: var(--text-primary);
    }

.dash-card-body {
    padding: 1.25rem 1.5rem;
}

/* ── Appointment items ── */
.dash-appt-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    transition: background 0.25s ease;
}

    .dash-appt-item + .dash-appt-item {
        margin-top: 0.5rem;
    }

[data-theme="dark"] .dash-appt-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

[data-theme="light"] .dash-appt-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.dash-appt-item:hover {
    background: var(--glass-bg);
}

.dash-appt-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    padding: 8px;
    border-radius: 12px;
    flex-shrink: 0;
}

[data-theme="dark"] .dash-appt-date {
    background: rgba(26, 138, 138, 0.1);
    border: 1px solid rgba(26, 138, 138, 0.2);
}

[data-theme="light"] .dash-appt-date {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
}

.dash-appt-day {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.dash-appt-month {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 2px;
}

.dash-appt-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .dash-appt-info strong {
        font-size: 0.82rem;
        color: var(--text-primary);
    }

    .dash-appt-info span {
        font-size: 0.7rem;
        color: var(--text-secondary);
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

.dash-appt-status {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.dash-status--pending {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.dash-status--confirmed {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ── VIP grid ── */
.dash-vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 575.98px) {
    .dash-vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dash-vip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

[data-theme="dark"] .dash-vip-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

[data-theme="light"] .dash-vip-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.dash-vip-item:hover {
    background: var(--glass-bg);
    transform: translateY(-2px);
}

.dash-vip-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.dash-vip-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ── Table ── */
.dash-card-body--table {
    padding: 0;
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

    .dash-table th {
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--text-secondary);
        padding: 0.85rem 1.25rem;
        text-align: right;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .dash-table td {
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--text-primary);
        padding: 0.85rem 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .dash-table tbody tr {
        transition: background 0.2s ease;
    }

        .dash-table tbody tr:hover {
            background: var(--glass-bg);
        }

        .dash-table tbody tr:last-child td {
            border-bottom: none;
        }

.dash-table-icon {
    margin-left: 6px;
    opacity: 0.5;
}

.dash-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

.dash-badge--done {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ── Profile card ── */
.dash-profile-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-profile-avatar-lg {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

    .dash-profile-avatar-lg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dash-avatar-edit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 26px;
    background: rgba(0,0,0,0.55);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.dash-profile-avatar-lg:hover .dash-avatar-edit {
    opacity: 1;
}

.dash-profile-name-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .dash-profile-name-wrap h4 {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0;
    }

.dash-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dash-profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

    .dash-profile-row:last-child {
        border-bottom: none;
    }

.dash-profile-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .dash-profile-label i {
        font-size: 0.85rem;
        opacity: 0.6;
    }

.dash-profile-value {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ── Message list ── */
.dash-msg-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-msg-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    transition: background 0.25s ease;
}

[data-theme="dark"] .dash-msg-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

[data-theme="light"] .dash-msg-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.dash-msg-item:hover {
    background: var(--glass-bg);
}

.dash-msg-unread {
    position: relative;
}

[data-theme="dark"] .dash-msg-unread {
    border-color: rgba(26, 138, 138, 0.15);
    background: rgba(26, 138, 138, 0.04);
}

[data-theme="light"] .dash-msg-unread {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}

.dash-msg-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

[data-theme="dark"] .dash-msg-avatar {
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .dash-msg-avatar {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.12);
}

.dash-msg-body {
    flex: 1;
    min-width: 0;
}

.dash-msg-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

    .dash-msg-top strong {
        font-size: 0.82rem;
        color: var(--text-primary);
    }

.dash-msg-time {
    font-size: 0.65rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.dash-msg-body p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Dashboard footer adjustment ── */
.dash-footer {
    margin-right: 0;
}

@media (min-width: 1200px) {
    .dash-footer {
        margin-right: 260px;
    }
}

/* ── Dashboard responsive ── */
@media (max-width: 767.98px) {
    .dash-header-inner {
        padding: 0 1rem;
    }

    .dash-welcome {
        padding: 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .dash-welcome-text h1 {
        font-size: 1.1rem;
    }

    .dash-card-body {
        padding: 1rem;
    }

    .dash-appt-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .dash-appt-status {
        width: 100%;
        justify-content: center;
    }

    .dash-profile-top {
        flex-direction: column;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════
   CONTACT PAGE (STANDALONE)
   ══════════════════════════════════════════════ */
.contact-pg {
    overflow-x: hidden;
}

/* ── Contact page header ── */
.cpg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

[data-theme="dark"] .cpg-header {
    background: rgba(18, 18, 18, 0.8);
}

[data-theme="light"] .cpg-header {
    background: rgba(11, 30, 54, 0.8);
}

/* ── Hero banner ── */
.cpg-hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

[data-theme="dark"] .cpg-hero {
    background: radial-gradient(ellipse at 50% 0%, #1e1e1e, #121212 70%);
}

[data-theme="light"] .cpg-hero {
    background: radial-gradient(ellipse at 50% 0%, #1b3a5c, #0b1e36 70%);
}

.cpg-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cpg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: authOrbFloat 14s ease-in-out infinite;
}

.cpg-orb-1 {
    width: 380px;
    height: 380px;
    top: -20%;
    right: 10%;
}

.cpg-orb-2 {
    width: 260px;
    height: 260px;
    bottom: -15%;
    left: 15%;
    animation-delay: -5s;
}

[data-theme="dark"] .cpg-orb-1 {
    background: rgba(26,138,138,0.1);
}

[data-theme="dark"] .cpg-orb-2 {
    background: rgba(100,100,255,0.06);
}

[data-theme="light"] .cpg-orb-1 {
    background: rgba(56,180,200,0.15);
}

[data-theme="light"] .cpg-orb-2 {
    background: rgba(100,160,220,0.1);
}

.cpg-hero-content {
    position: relative;
    z-index: 1;
}

.cpg-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    animation: authFadeIn 0.6s 0.1s ease both;
}

    .cpg-breadcrumb a {
        color: var(--text-secondary);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: color 0.2s ease;
    }

        .cpg-breadcrumb a:hover {
            color: var(--text-primary);
        }

    .cpg-breadcrumb .bi-chevron-left {
        font-size: 0.55rem;
        color: var(--text-secondary);
        opacity: 0.5;
    }

    .cpg-breadcrumb > span {
        color: var(--text-primary);
        font-weight: 600;
    }

.cpg-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.6rem;
    animation: authFadeIn 0.6s 0.2s ease both;
}

.cpg-hero-sub {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    animation: authFadeIn 0.6s 0.3s ease both;
}

/* ══════ QUICK CONTACT CARDS ══════ */
.cpg-quick {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .cpg-quick {
    background: #121212;
}

[data-theme="light"] .cpg-quick {
    background: linear-gradient(180deg, #eef3f8 0%, #e8eef5 100%);
}

.cpg-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .cpg-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .cpg-quick-grid {
        grid-template-columns: 1fr;
    }
}

.cpg-qcard {
    position: relative;
    padding: 2.25rem 1.5rem 1.75rem;
    border-radius: 22px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
    animation: authSlideUp 0.6s ease both;
    animation-delay: var(--delay, 0s);
}

[data-theme="dark"] .cpg-qcard {
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

[data-theme="light"] .cpg-qcard {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(27,58,92,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.cpg-qcard:hover {
    transform: translateY(-6px);
}

[data-theme="dark"] .cpg-qcard:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

[data-theme="light"] .cpg-qcard:hover {
    box-shadow: 0 16px 48px rgba(27,58,92,0.12);
}

.cpg-qcard-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.15rem;
    transition: transform 0.3s ease;
}

.cpg-qcard:hover .cpg-qcard-icon {
    transform: scale(1.1) rotate(-3deg);
}

.cpg-qcard-icon--phone {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.2);
}

.cpg-qcard-icon--loc {
    background: rgba(59,130,246,0.12);
    color: #60a5fa;
    border: 1px solid rgba(59,130,246,0.2);
}

.cpg-qcard-icon--clock {
    background: rgba(245,158,11,0.12);
    color: #fbbf24;
    border: 1px solid rgba(245,158,11,0.2);
}

.cpg-qcard-icon--mail {
    background: rgba(244,63,94,0.12);
    color: #fb7185;
    border: 1px solid rgba(244,63,94,0.2);
}

.cpg-qcard h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

[data-theme="dark"] .cpg-qcard h3 {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-qcard h3 {
    color: #1b3a5c;
}

.cpg-qcard-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .cpg-qcard-links a {
        font-size: 0.78rem;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 6px 0;
        border-radius: 8px;
        transition: all 0.25s ease;
    }

[data-theme="dark"] .cpg-qcard-links a {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-qcard-links a {
    color: rgba(27,58,92,0.65);
}

.cpg-qcard-links a:hover {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-qcard-links a:hover {
    color: #1b3a5c;
}

.cpg-qcard-text {
    font-size: 0.78rem;
    line-height: 1.85;
    margin: 0;
}

[data-theme="dark"] .cpg-qcard-text {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-qcard-text {
    color: rgba(27,58,92,0.65);
}

.cpg-qcard-schedule {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.78rem;
}

[data-theme="dark"] .cpg-qcard-schedule span {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-qcard-schedule span {
    color: rgba(27,58,92,0.65);
}

.cpg-qcard-schedule strong {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-qcard-schedule strong {
    color: #1b3a5c;
}

/* ══════ FORM + MAP SECTION ══════ */
.cpg-form-section {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .cpg-form-section {
    background: #161616;
}

[data-theme="light"] .cpg-form-section {
    background: #f6f6f6;
}

.cpg-form-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 991.98px) {
    .cpg-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Form card ── */
.cpg-form-card {
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: authFadeIn 0.6s 0.15s ease both;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cpg-form-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}

[data-theme="light"] .cpg-form-card {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 12px 48px rgba(27,58,92,0.08);
}

.cpg-form-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

[data-theme="light"] .cpg-form-head {
    border-bottom-color: rgba(27,58,92,0.08);
}

.cpg-form-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

[data-theme="dark"] .cpg-form-icon {
    background: rgba(26,138,138,0.12);
    color: rgba(26,200,200,0.9);
    border: 1px solid rgba(26,138,138,0.2);
}

[data-theme="light"] .cpg-form-icon {
    background: rgba(27,58,92,0.08);
    color: #1b3a5c;
    border: 1px solid rgba(27,58,92,0.12);
}

.cpg-form-head h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

[data-theme="dark"] .cpg-form-head h2 {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-form-head h2 {
    color: #1b3a5c;
}

.cpg-form-head p {
    font-size: 0.78rem;
    margin: 0;
}

[data-theme="dark"] .cpg-form-head p {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-form-head p {
    color: rgba(27,58,92,0.55);
}

/* ── Form fields ── */
.cpg-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cpg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575.98px) {
    .cpg-form-row {
        grid-template-columns: 1fr;
    }
}

.cpg-field {
    position: relative;
}

.cpg-field-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 0.95rem;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s ease;
}

[data-theme="dark"] .cpg-field-icon {
    color: rgba(255,255,255,0.3);
}

[data-theme="light"] .cpg-field-icon {
    color: rgba(27,58,92,0.35);
}

.cpg-field:focus-within .cpg-field-icon {
    color: rgba(26,180,180,0.8);
}

[data-theme="light"] .cpg-field:focus-within .cpg-field-icon {
    color: #1b3a5c;
}

.cpg-field--textarea .cpg-field-icon {
    top: 18px;
    transform: none;
}

.cpg-field input,
.cpg-field select,
.cpg-field textarea {
    width: 100%;
    padding: 14px 14px 14px 14px;
    padding-right: 44px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-family: var(--app-font);
    font-weight: 500;
    outline: none;
    transition: all 0.35s ease;
    border: 1.5px solid transparent;
    position: relative;
    z-index: 1;
}

.cpg-field textarea {
    resize: vertical;
    min-height: 120px;
}

.cpg-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

[data-theme="dark"] .cpg-field input,
[data-theme="dark"] .cpg-field select,
[data-theme="dark"] .cpg-field textarea {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: #e8ecf0;
}

    [data-theme="dark"] .cpg-field input::placeholder,
    [data-theme="dark"] .cpg-field textarea::placeholder {
        color: rgba(255,255,255,0.3);
    }

    [data-theme="dark"] .cpg-field input:focus,
    [data-theme="dark"] .cpg-field select:focus,
    [data-theme="dark"] .cpg-field textarea:focus {
        background: rgba(255,255,255,0.07);
        border-color: rgba(26,138,138,0.45);
        box-shadow: 0 0 0 3px rgba(26,138,138,0.1);
    }

[data-theme="light"] .cpg-field input,
[data-theme="light"] .cpg-field select,
[data-theme="light"] .cpg-field textarea {
    background: rgba(27,58,92,0.04);
    border-color: rgba(27,58,92,0.1);
    color: #1b3a5c;
}

    [data-theme="light"] .cpg-field input::placeholder,
    [data-theme="light"] .cpg-field textarea::placeholder {
        color: rgba(27,58,92,0.4);
    }

    [data-theme="light"] .cpg-field input:focus,
    [data-theme="light"] .cpg-field select:focus,
    [data-theme="light"] .cpg-field textarea:focus {
        background: rgba(27,58,92,0.06);
        border-color: rgba(27,58,92,0.3);
        box-shadow: 0 0 0 3px rgba(27,58,92,0.06);
    }

.cpg-field-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
}

[data-theme="dark"] .cpg-field-line {
    background: linear-gradient(90deg, transparent, rgba(26,180,180,0.6), transparent);
}

[data-theme="light"] .cpg-field-line {
    background: linear-gradient(90deg, transparent, rgba(27,58,92,0.5), transparent);
}

.cpg-field:focus-within .cpg-field-line {
    width: 80%;
}

/* ── Submit button ── */
.cpg-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 16px;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--app-font);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    margin-top: 0.5rem;
}

[data-theme="dark"] .cpg-submit-btn {
    background: linear-gradient(135deg, rgba(26,138,138,0.7), rgba(20,120,120,0.8));
    color: #fff;
    box-shadow: 0 8px 28px rgba(26,138,138,0.2);
}

    [data-theme="dark"] .cpg-submit-btn:hover {
        background: linear-gradient(135deg, rgba(30,158,158,0.85), rgba(24,140,140,0.95));
        box-shadow: 0 12px 40px rgba(26,138,138,0.3);
        transform: translateY(-2px);
    }

[data-theme="light"] .cpg-submit-btn {
    background: linear-gradient(135deg, #1b3a5c, #2a5478);
    color: #fff;
    box-shadow: 0 8px 28px rgba(27,58,92,0.2);
}

    [data-theme="light"] .cpg-submit-btn:hover {
        background: linear-gradient(135deg, #224a6c, #345e82);
        box-shadow: 0 12px 40px rgba(27,58,92,0.3);
        transform: translateY(-2px);
    }

.cpg-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.6s ease;
}

.cpg-submit-btn:hover::before {
    left: 100%;
}

.cpg-submit-btn i {
    transition: transform 0.3s ease;
}

.cpg-submit-btn:hover i {
    transform: translateX(-4px);
}

.cpg-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

/* ── Success message ── */
.cpg-form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    animation: authFadeIn 0.5s ease both;
}

    .cpg-form-success.visible {
        display: block;
    }

.cpg-success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
    animation: cpgSuccessPop 0.6s ease both;
}

@keyframes cpgSuccessPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cpg-form-success h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
}

[data-theme="dark"] .cpg-form-success h3 {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-form-success h3 {
    color: #1b3a5c;
}

.cpg-form-success p {
    font-size: 0.82rem;
    margin: 0;
}

[data-theme="dark"] .cpg-form-success p {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-form-success p {
    color: rgba(27,58,92,0.6);
}

/* ── Map card ── */
.cpg-map-card {
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: authFadeIn 0.6s 0.25s ease both;
}

[data-theme="dark"] .cpg-map-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}

[data-theme="light"] .cpg-map-card {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 12px 48px rgba(27,58,92,0.08);
}

.cpg-map-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

[data-theme="light"] .cpg-map-head {
    border-bottom-color: rgba(27,58,92,0.08);
}

.cpg-map-head i {
    font-size: 1.15rem;
    opacity: 0.6;
}

.cpg-map-head h2 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

[data-theme="dark"] .cpg-map-head h2 {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-map-head h2 {
    color: #1b3a5c;
}

.cpg-map-wrap {
    position: relative;
    width: 100%;
    min-height: 340px;
}

.cpg-map-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.cpg-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 2rem;
    color: #ef4444;
    filter: drop-shadow(0 4px 12px rgba(239,68,68,0.4));
    z-index: 2;
}

.cpg-pin-pulse {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(239,68,68,0.3);
    animation: cpgPulse 2s ease-in-out infinite;
}

@keyframes cpgPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-50%) scale(2.5);
        opacity: 0;
    }
}

.cpg-map-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

[data-theme="light"] .cpg-map-footer {
    border-top-color: rgba(27,58,92,0.08);
}

.cpg-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .cpg-map-link {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
}

    [data-theme="dark"] .cpg-map-link:hover {
        background: rgba(255,255,255,0.1);
        color: var(--text-primary);
    }

[data-theme="light"] .cpg-map-link {
    background: rgba(27,58,92,0.05);
    border: 1px solid rgba(27,58,92,0.1);
    color: rgba(27,58,92,0.65);
}

    [data-theme="light"] .cpg-map-link:hover {
        background: rgba(27,58,92,0.1);
        color: #1b3a5c;
    }

/* ══════ SOCIAL MEDIA SECTION ══════ */
.cpg-social-section {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .cpg-social-section {
    background: #121212;
}

[data-theme="light"] .cpg-social-section {
    background: linear-gradient(180deg, #e8eef5, #eef3f8);
}

.cpg-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

    .cpg-section-head h2 {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
        font-weight: 800;
        margin: 0 0 0.4rem;
    }

[data-theme="dark"] .cpg-section-head h2 {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-section-head h2 {
    color: #1b3a5c;
}

.cpg-section-head p {
    font-size: 0.82rem;
    margin: 0;
}

[data-theme="dark"] .cpg-section-head p {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-section-head p {
    color: rgba(27,58,92,0.55);
}

.cpg-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 991.98px) {
    .cpg-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .cpg-social-grid {
        grid-template-columns: 1fr;
    }
}

.cpg-social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    text-decoration: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    overflow: hidden;
    animation: authSlideUp 0.5s ease both;
    animation-delay: var(--delay, 0s);
}

[data-theme="dark"] .cpg-social-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

[data-theme="light"] .cpg-social-card {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 20px rgba(27,58,92,0.05);
}

.cpg-social-card:hover {
    transform: translateY(-4px);
}

[data-theme="dark"] .cpg-social-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

[data-theme="light"] .cpg-social-card:hover {
    box-shadow: 0 12px 40px rgba(27,58,92,0.1);
}

.cpg-social-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cpg-social-card:hover .cpg-social-icon {
    transform: scale(1.1);
}

.cpg-social--insta .cpg-social-icon {
    background: linear-gradient(135deg, rgba(228,64,95,0.15), rgba(131,58,180,0.15));
    color: #e4405f;
    border: 1px solid rgba(228,64,95,0.2);
}

.cpg-social--tg .cpg-social-icon {
    background: rgba(36,161,222,0.12);
    color: #24a1de;
    border: 1px solid rgba(36,161,222,0.2);
}

.cpg-social--wa .cpg-social-icon {
    background: rgba(37,211,102,0.12);
    color: #25d366;
    border: 1px solid rgba(37,211,102,0.2);
}

.cpg-social--yt .cpg-social-icon {
    background: rgba(255,0,0,0.1);
    color: #ff0000;
    border: 1px solid rgba(255,0,0,0.18);
}

.cpg-social--tt .cpg-social-icon {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.12);
}

[data-theme="light"] .cpg-social--tt .cpg-social-icon {
    background: rgba(27,58,92,0.06);
    color: #1b3a5c;
    border-color: rgba(27,58,92,0.12);
}

.cpg-social--li .cpg-social-icon {
    background: rgba(10,102,194,0.12);
    color: #0a66c2;
    border: 1px solid rgba(10,102,194,0.2);
}

.cpg-social-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

    .cpg-social-body strong {
        font-size: 0.85rem;
        font-weight: 700;
    }

[data-theme="dark"] .cpg-social-body strong {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-social-body strong {
    color: #1b3a5c;
}

.cpg-social-body span {
    font-size: 0.72rem;
    font-weight: 500;
}

[data-theme="dark"] .cpg-social-body span {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-social-body span {
    color: rgba(27,58,92,0.55);
}

.cpg-social-follow {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    flex-shrink: 0;
}

    .cpg-social-follow span {
        font-size: 0.95rem;
        font-weight: 800;
    }

[data-theme="dark"] .cpg-social-follow span {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-social-follow span {
    color: #1b3a5c;
}

.cpg-social-follow small {
    font-size: 0.6rem;
    font-weight: 500;
}

[data-theme="dark"] .cpg-social-follow small {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-social-follow small {
    color: rgba(27,58,92,0.5);
}

.cpg-social-arrow {
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(6px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

[data-theme="dark"] .cpg-social-arrow {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-social-arrow {
    color: rgba(27,58,92,0.4);
}

.cpg-social-card:hover .cpg-social-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ══════ CTA BANNER ══════ */
.cpg-cta {
    padding: 3rem 0 4rem;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .cpg-cta {
    background: #161616;
}

[data-theme="light"] .cpg-cta {
    background: #f6f6f6;
}

.cpg-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cpg-cta-banner {
    background: linear-gradient(135deg, rgba(26,138,138,0.12), rgba(26,138,138,0.04));
    border: 1px solid rgba(26,138,138,0.18);
}

[data-theme="light"] .cpg-cta-banner {
    background: linear-gradient(135deg, #1b3a5c, #2a5478);
    border: 1px solid rgba(255,255,255,0.15);
}

.cpg-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .cpg-cta-text > i {
        font-size: 2rem;
        flex-shrink: 0;
    }

[data-theme="dark"] .cpg-cta-text > i {
    color: rgba(26,200,200,0.6);
}

[data-theme="light"] .cpg-cta-text > i {
    color: rgba(255,255,255,0.6);
}

.cpg-cta-text h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.2rem;
}

[data-theme="dark"] .cpg-cta-text h2 {
    color: var(--text-primary);
}

[data-theme="light"] .cpg-cta-text h2 {
    color: #fff;
}

.cpg-cta-text p {
    font-size: 0.8rem;
    margin: 0;
}

[data-theme="dark"] .cpg-cta-text p {
    color: var(--text-secondary);
}

[data-theme="light"] .cpg-cta-text p {
    color: rgba(255,255,255,0.7);
}

.cpg-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cpg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.cpg-cta-btn--fill {
    color: #fff;
    border: none;
}

[data-theme="dark"] .cpg-cta-btn--fill {
    background: linear-gradient(135deg, rgba(26,138,138,0.7), rgba(20,120,120,0.85));
    box-shadow: 0 6px 20px rgba(26,138,138,0.2);
}

    [data-theme="dark"] .cpg-cta-btn--fill:hover {
        background: linear-gradient(135deg, rgba(30,158,158,0.85), rgba(24,140,140,0.95));
        color: #fff;
        transform: translateY(-2px);
    }

[data-theme="light"] .cpg-cta-btn--fill {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

    [data-theme="light"] .cpg-cta-btn--fill:hover {
        background: rgba(255,255,255,0.3);
        color: #fff;
        transform: translateY(-2px);
    }

.cpg-cta-btn--outline {
    border: 1.5px solid;
}

[data-theme="dark"] .cpg-cta-btn--outline {
    border-color: rgba(255,255,255,0.15);
    color: var(--text-secondary);
}

    [data-theme="dark"] .cpg-cta-btn--outline:hover {
        border-color: rgba(255,255,255,0.3);
        color: var(--text-primary);
        transform: translateY(-2px);
    }

[data-theme="light"] .cpg-cta-btn--outline {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
}

    [data-theme="light"] .cpg-cta-btn--outline:hover {
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.1);
        color: #fff;
        transform: translateY(-2px);
    }

/* ── Contact page responsive ── */
@media (max-width: 767.98px) {
    .cpg-hero {
        padding: 7rem 0 3rem;
    }

    .cpg-hero-title {
        font-size: 1.8rem;
    }

    .cpg-quick {
        padding: 3rem 0;
    }

    .cpg-form-section {
        padding: 3rem 0;
    }

    .cpg-form-card {
        padding: 1.5rem;
    }

    .cpg-cta-banner {
        padding: 1.75rem 1.5rem;
        text-align: center;
        flex-direction: column;
    }

    .cpg-cta-text {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .cpg-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .cpg-cta-btn {
        flex: 1;
        justify-content: center;
    }

    .cpg-map-wrap {
        min-height: 240px;
    }

    .cpg-map-img {
        min-height: 240px;
    }
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════ */
.about-pg {
    font-family: var(--app-font);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── About header (own header, not shared cpg-header) ── */
.abp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: .75rem 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .3s, border-color .3s;
}

[data-theme="dark"] .abp-header {
    background: rgba(18,18,18,.82);
}

[data-theme="light"] .abp-header {
    background: rgba(11,30,54,.82);
}

/* ── Section backgrounds ── */
[data-theme="dark"] .abp-section-light {
    background: #181818;
    color: #e8e8e8;
}

[data-theme="light"] .abp-section-light {
    background: #f0f4f9;
    color: #1a1a2e;
}

[data-theme="dark"] .abp-section-white {
    background: #111;
    color: #e8e8e8;
}

[data-theme="light"] .abp-section-white {
    background: #fff;
    color: #1a1a2e;
}

/* ── Section heading ── */
.abp-sec-head {
    text-align: center;
    margin-bottom: 2.8rem;
}

    .abp-sec-head h2 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: .5rem;
    }

[data-theme="light"] .abp-sec-head h2 {
    color: #0f2a4d;
}

.abp-sec-head p {
    font-size: .88rem;
    opacity: .65;
}

/* ── Hero ── */
.abp-hero {
    position: relative;
    padding: 9rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

[data-theme="dark"] .abp-hero {
    background: radial-gradient(ellipse at 50% 0%, #1e1e1e, #121212 70%);
    color: #e8e8e8;
}

[data-theme="light"] .abp-hero {
    background: radial-gradient(ellipse at 50% 0%, #1b3a5c, #0b1e36 70%);
    color: #f5f7fa;
}

.abp-hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.abp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: authOrbFloat 14s ease-in-out infinite;
}

.abp-orb-1 {
    width: 380px;
    height: 380px;
    top: -20%;
    right: 10%;
}

.abp-orb-2 {
    width: 260px;
    height: 260px;
    bottom: -15%;
    left: 15%;
    animation-delay: -5s;
}

[data-theme="dark"] .abp-orb-1 {
    background: rgba(26,138,138,.1);
}

[data-theme="dark"] .abp-orb-2 {
    background: rgba(100,100,255,.06);
}

[data-theme="light"] .abp-orb-1 {
    background: rgba(56,180,200,.15);
}

[data-theme="light"] .abp-orb-2 {
    background: rgba(100,160,220,.1);
}

.abp-hero-content {
    position: relative;
    z-index: 1;
}

.abp-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    margin-bottom: 1rem;
    animation: abpFadeUp .6s .1s ease both;
}

    .abp-breadcrumb a {
        color: rgba(255,255,255,.6);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: color .2s;
    }

        .abp-breadcrumb a:hover {
            color: #fff;
        }

    .abp-breadcrumb .bi-chevron-left {
        font-size: .55rem;
        opacity: .5;
        color: rgba(255,255,255,.5);
    }

    .abp-breadcrumb > span {
        color: #fff;
        font-weight: 600;
    }

.abp-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 .6rem;
    animation: abpFadeUp .6s .2s ease both;
}

.abp-hero-sub {
    font-size: .92rem;
    color: rgba(255,255,255,.65);
    margin: 0;
    animation: abpFadeUp .6s .3s ease both;
}

/* ── Story ── */
.abp-story {
    padding: 5rem 0;
}

.abp-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.abp-story-img-wrap {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.abp-story-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 1.2rem;
    display: block;
}

.abp-story-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 1rem;
    padding: .8rem 1.3rem;
    text-align: center;
    line-height: 1.3;
}

[data-theme="dark"] .abp-story-badge {
    background: rgba(30,30,30,.85);
    border-color: rgba(255,255,255,.12);
}

.abp-badge-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f2a4d;
}

[data-theme="dark"] .abp-badge-num {
    color: #fff;
}

.abp-badge-text {
    display: block;
    font-size: .78rem;
    opacity: .6;
}

.abp-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    opacity: .6;
    margin-bottom: .6rem;
}

    .abp-kicker i {
        font-size: .4rem;
        color: #3b82f6;
    }

.abp-story-text-col h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

[data-theme="light"] .abp-story-text-col h2 {
    color: #0f2a4d;
}

.abp-story-text-col p {
    font-size: .92rem;
    line-height: 1.9;
    margin-bottom: .6rem;
    opacity: .7;
}

.abp-story-highlights {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: 1.2rem;
}

.abp-highlight {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    padding: .6rem 1rem;
    border-radius: .7rem;
    transition: transform .3s, background .3s, box-shadow .3s;
}

[data-theme="light"] .abp-highlight {
    background: rgba(59,130,246,.06);
    border: 1px solid rgba(59,130,246,.12);
}

[data-theme="dark"] .abp-highlight {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
}

.abp-highlight:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 16px rgba(59,130,246,.1);
}

.abp-highlight i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* ── Values Grid ── */
.abp-values {
    padding: 5rem 0;
}

.abp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.abp-val-card {
    border-radius: 1.1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay, 0s);
    transition: transform .4s, box-shadow .4s, border-color .4s;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .abp-val-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

[data-theme="dark"] .abp-val-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.abp-val-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 1.1rem 1.1rem 0 0;
    opacity: 0;
    transition: opacity .4s;
}

.abp-val-card:hover::before {
    opacity: 1;
}

.abp-val-card:nth-child(1)::before {
    background: #00c896;
}

.abp-val-card:nth-child(2)::before {
    background: #3b82f6;
}

.abp-val-card:nth-child(3)::before {
    background: #f59e0b;
}

.abp-val-card:nth-child(4)::before {
    background: #ef4444;
}

.abp-val-card:nth-child(5)::before {
    background: #8b5cf6;
}

.abp-val-card:nth-child(6)::before {
    background: #10b981;
}

.abp-val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

[data-theme="light"] .abp-val-card:hover {
    border-color: #cbd5e1;
}

[data-theme="dark"] .abp-val-card:hover {
    border-color: rgba(255,255,255,.18);
}

.abp-val-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
}

.abp-val--teal {
    background: rgba(0, 200, 150, .1);
    color: #00c896;
}

.abp-val--blue {
    background: rgba(59, 130, 246, .1);
    color: #3b82f6;
}

.abp-val--gold {
    background: rgba(245, 158, 11, .1);
    color: #f59e0b;
}

.abp-val--rose {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

.abp-val--purple {
    background: rgba(139, 92, 246, .1);
    color: #8b5cf6;
}

.abp-val--green {
    background: rgba(16, 185, 129, .1);
    color: #10b981;
}

.abp-val-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .55rem;
}

[data-theme="light"] .abp-val-card h3 {
    color: #1e293b;
}

.abp-val-card p {
    font-size: .82rem;
    line-height: 1.75;
    margin: 0;
    opacity: .65;
}

/* ── Stats Counter ── */
.abp-counter {
    padding: 4rem 0;
}

.abp-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.abp-counter-item {
    border-radius: 1.1rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: transform .35s, box-shadow .35s;
}

[data-theme="light"] .abp-counter-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

[data-theme="dark"] .abp-counter-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.abp-counter-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.abp-counter-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: .7rem;
}

.abp-counter-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: .3rem;
    direction: ltr;
}

[data-theme="light"] .abp-counter-num {
    color: #0f2a4d;
}

.abp-counter-label {
    font-size: .82rem;
    opacity: .6;
}

/* ── Team ── */
.abp-team {
    padding: 5rem 0;
}

.abp-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.abp-team-card {
    border-radius: 1.2rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay, 0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .abp-team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

[data-theme="dark"] .abp-team-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.abp-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.abp-team-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

    .abp-team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s, filter .5s;
    }

.abp-team-card:hover .abp-team-img img {
    transform: scale(1.08);
}

.abp-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,42,77,.92) 0%, rgba(15,42,77,.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity .4s;
}

.abp-team-card:hover .abp-team-overlay {
    opacity: 1;
}

.abp-team-socials {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .7rem;
}

    .abp-team-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: .92rem;
        text-decoration: none;
        transform: translateY(12px);
        opacity: 0;
        transition: transform .35s, opacity .35s, background .3s;
    }

.abp-team-card:hover .abp-team-socials a {
    transform: translateY(0);
    opacity: 1;
}

    .abp-team-card:hover .abp-team-socials a:nth-child(1) {
        transition-delay: .05s;
    }

    .abp-team-card:hover .abp-team-socials a:nth-child(2) {
        transition-delay: .1s;
    }

    .abp-team-card:hover .abp-team-socials a:nth-child(3) {
        transition-delay: .15s;
    }

.abp-team-socials a:hover {
    background: rgba(255,255,255,.3);
}

.abp-team-bio {
    font-size: .75rem;
    color: rgba(255,255,255,.8);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.abp-team-info {
    padding: 1.2rem;
    text-align: center;
}

    .abp-team-info h3 {
        font-size: .95rem;
        font-weight: 700;
        margin-bottom: .25rem;
    }

[data-theme="light"] .abp-team-info h3 {
    color: #1e293b;
}

.abp-team-role {
    display: inline-block;
    font-size: .78rem;
    color: #3b82f6;
    font-weight: 500;
}

/* ── Teaser ── */
.abp-teaser {
    padding: 4.5rem 0;
}

.abp-teaser-frame {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,.1);
}

[data-theme="light"] .abp-teaser-frame {
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .abp-teaser-frame {
    border: 1px solid rgba(255,255,255,.08);
}

.abp-teaser-media {
    position: relative;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    cursor: pointer;
}

.abp-teaser-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.abp-teaser-media:hover .abp-teaser-poster {
    transform: scale(1.04);
}

.abp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: rgba(59, 130, 246, .9);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background .3s, transform .3s;
}

    .abp-play-btn:hover {
        background: #3b82f6;
        transform: translate(-50%, -50%) scale(1.1);
    }

.abp-play-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, .4);
    animation: abpRipple 1.6s ease-out infinite;
}

@keyframes abpRipple {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.abp-teaser-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
    z-index: 1;
}

    .abp-teaser-overlay h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: .2rem;
    }

    .abp-teaser-overlay p {
        font-size: .82rem;
        color: rgba(255,255,255,.7);
        margin: 0;
    }

/* ── Equipment ── */
.abp-equip {
    padding: 5rem 0;
}

.abp-equip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.abp-equip-card {
    border-radius: 1.1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay, 0s);
    transition: transform .35s, box-shadow .35s, border-color .35s;
}

[data-theme="light"] .abp-equip-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .abp-equip-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.abp-equip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.abp-equip-icon {
    width: 52px;
    height: 52px;
    border-radius: .8rem;
    background: rgba(59, 130, 246, .08);
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: .9rem;
}

.abp-equip-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .45rem;
}

[data-theme="light"] .abp-equip-card h4 {
    color: #1e293b;
}

.abp-equip-card p {
    font-size: .82rem;
    line-height: 1.75;
    margin: 0;
    opacity: .6;
}

/* ── Timeline (vertical, RTL-friendly) ── */
.abp-timeline {
    padding: 5rem 0;
}

.abp-tl-wrap {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding-right: 2.4rem;
}

.abp-tl-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    border-radius: 3px;
}

.abp-tl-item {
    position: relative;
    padding-bottom: 2.2rem;
    padding-right: .6rem;
    opacity: 0;
    transform: translateY(25px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay, 0s);
}

.abp-tl-dot {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    right: -2.6rem;
    top: .1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    color: #fff;
    background: #3b82f6;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(59,130,246,.3);
}

[data-theme="dark"] .abp-tl-dot {
    border-color: #181818;
}

.abp-tl-card {
    border-radius: 1rem;
    padding: 1.4rem 1.5rem;
    transition: transform .35s, box-shadow .35s;
}

[data-theme="light"] .abp-tl-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

[data-theme="dark"] .abp-tl-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.abp-tl-card:hover {
    transform: translateX(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.abp-tl-year {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: .2rem .7rem;
    border-radius: 2rem;
    margin-bottom: .5rem;
}

.abp-tl-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

[data-theme="light"] .abp-tl-card h4 {
    color: #1e293b;
}

.abp-tl-card p {
    font-size: .82rem;
    opacity: .6;
    line-height: 1.7;
    margin: 0;
}

/* ── Lead Capture ── */
.abp-lead {
    padding: 5rem 0;
}

.abp-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.abp-lead-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.abp-lead-box {
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
}

[data-theme="light"] .abp-lead-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

[data-theme="dark"] .abp-lead-box {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.abp-lead-head {
    text-align: center;
    margin-bottom: 1.8rem;
}

    .abp-lead-head i {
        font-size: 2.4rem;
        color: #3b82f6;
        margin-bottom: .7rem;
        display: block;
    }

    .abp-lead-head h2 {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: .5rem;
    }

[data-theme="light"] .abp-lead-head h2 {
    color: #0f2a4d;
}

.abp-lead-head p {
    font-size: .85rem;
    opacity: .6;
    margin: 0;
}

.abp-lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.abp-lead-field {
    position: relative;
    display: flex;
    align-items: center;
}

    .abp-lead-field i {
        position: absolute;
        right: 1rem;
        font-size: 1rem;
        color: #3b82f6;
        z-index: 1;
    }

    .abp-lead-field input,
    .abp-lead-field select {
        width: 100%;
        padding: .85rem 1rem .85rem 1rem;
        padding-right: 2.8rem;
        border-radius: .7rem;
        font-family: var(--app-font);
        font-size: .88rem;
        outline: none;
        transition: border-color .3s, box-shadow .3s;
    }

[data-theme="light"] .abp-lead-field input,
[data-theme="light"] .abp-lead-field select {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #1e293b;
}

[data-theme="dark"] .abp-lead-field input,
[data-theme="dark"] .abp-lead-field select {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #e8e8e8;
}

.abp-lead-field input:focus,
.abp-lead-field select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.abp-lead-field select {
    cursor: pointer;
}

.abp-lead-submit {
    width: 100%;
    padding: .9rem;
    border: none;
    border-radius: .7rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-family: var(--app-font);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: transform .3s, box-shadow .3s;
}

    .abp-lead-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(59,130,246,.3);
    }

.abp-lead-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

    .abp-lead-trust span {
        font-size: .75rem;
        opacity: .5;
        display: flex;
        align-items: center;
        gap: .3rem;
    }

    .abp-lead-trust i {
        color: #10b981;
        font-size: .8rem;
    }

/* ── Final CTA ── */
.abp-final-cta {
    padding: 4rem 0;
}

[data-theme="dark"] .abp-final-cta {
    background: #121212;
}

[data-theme="light"] .abp-final-cta {
    background: #0f2a4d;
}

.abp-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 2.5rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(139,92,246,.1));
    border: 1px solid rgba(255,255,255,.1);
}

.abp-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

    .abp-cta-text > i {
        font-size: 2.4rem;
        color: #3b82f6;
    }

    .abp-cta-text h2 {
        font-size: 1.15rem;
        font-weight: 700;
        margin: 0 0 .2rem;
        color: #fff;
    }

    .abp-cta-text p {
        font-size: .82rem;
        margin: 0;
        color: rgba(255,255,255,.6);
    }

.abp-cta-actions {
    display: flex;
    gap: .8rem;
    flex-shrink: 0;
}

.abp-cta-btn {
    padding: .7rem 1.4rem;
    border-radius: .6rem;
    font-size: .85rem;
    font-weight: 600;
    font-family: var(--app-font);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
}

    .abp-cta-btn:hover {
        transform: translateY(-2px);
    }

.abp-cta-btn--fill {
    background: #3b82f6;
    color: #fff;
}

    .abp-cta-btn--fill:hover {
        box-shadow: 0 8px 20px rgba(59,130,246,.3);
        color: #fff;
    }

.abp-cta-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
}

    .abp-cta-btn--outline:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
    }

/* ── Shared animation ── */
@keyframes abpFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── About responsive ── */
@media (max-width: 991.98px) {
    .abp-hero {
        padding-top: 7rem;
    }

    .abp-story-grid {
        grid-template-columns: 1fr;
    }

    .abp-story-img {
        height: 300px;
    }

    .abp-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abp-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abp-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abp-equip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abp-lead-grid {
        grid-template-columns: 1fr;
    }

    .abp-lead-photo {
        height: 360px;
    }

    .abp-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .abp-cta-text {
        flex-direction: column;
    }

    body.about-pg {
        padding-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .abp-hero {
        padding: 7rem 0 3rem;
    }

    .abp-story {
        padding: 3rem 0;
    }

    .abp-story-img {
        height: 240px;
    }

    .abp-values-grid,
    .abp-equip-grid {
        grid-template-columns: 1fr;
    }

    .abp-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .abp-counter-num {
        font-size: 1.6rem;
    }

    .abp-team-grid {
        grid-template-columns: 1fr;
    }

    .abp-teaser-media {
        aspect-ratio: 16 / 10;
    }

    .abp-lead-box {
        padding: 1.5rem 1.2rem;
    }

    .abp-lead-photo {
        height: 280px;
    }
}

/* ══════════════════════════════════════════════
   HOURS PAGE
   ══════════════════════════════════════════════ */
.hours-pg {
    font-family: var(--app-font);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Header ── */
.hrs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: .75rem 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .3s;
}

[data-theme="dark"] .hrs-header {
    background: rgba(18,18,18,.82);
}

[data-theme="light"] .hrs-header {
    background: rgba(11,30,54,.82);
}

/* ── Section backgrounds ── */
[data-theme="dark"] .hrs-sec-light {
    background: #181818;
    color: #e8e8e8;
}

[data-theme="light"] .hrs-sec-light {
    background: #f0f4f9;
    color: #1a1a2e;
}

[data-theme="dark"] .hrs-sec-white {
    background: #111;
    color: #e8e8e8;
}

[data-theme="light"] .hrs-sec-white {
    background: #fff;
    color: #1a1a2e;
}

/* ── Section heading ── */
.hrs-sec-head {
    text-align: center;
    margin-bottom: 2.8rem;
}

    .hrs-sec-head h2 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: .5rem;
    }

[data-theme="light"] .hrs-sec-head h2 {
    color: #0f2a4d;
}

.hrs-sec-head p {
    font-size: .88rem;
    opacity: .6;
}

/* ── Hero ── */
.hrs-hero {
    position: relative;
    padding: 9.5rem 0 4.5rem;
    text-align: center;
    overflow: hidden;
}

[data-theme="dark"] .hrs-hero {
    background: radial-gradient(ellipse at 50% 0%, #1e1e1e, #121212 70%);
    color: #e8e8e8;
}

[data-theme="light"] .hrs-hero {
    background: radial-gradient(ellipse at 50% 0%, #1b3a5c, #0b1e36 70%);
    color: #f5f7fa;
}

.hrs-hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hrs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: authOrbFloat 14s ease-in-out infinite;
}

.hrs-orb-1 {
    width: 340px;
    height: 340px;
    top: -18%;
    right: 8%;
}

.hrs-orb-2 {
    width: 220px;
    height: 220px;
    bottom: -10%;
    left: 12%;
    animation-delay: -5s;
}

.hrs-orb-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 50%;
    animation-delay: -9s;
}

[data-theme="dark"] .hrs-orb-1 {
    background: rgba(59,130,246,.08);
}

[data-theme="dark"] .hrs-orb-2 {
    background: rgba(139,92,246,.06);
}

[data-theme="dark"] .hrs-orb-3 {
    background: rgba(16,185,129,.05);
}

[data-theme="light"] .hrs-orb-1 {
    background: rgba(59,130,246,.12);
}

[data-theme="light"] .hrs-orb-2 {
    background: rgba(139,92,246,.1);
}

[data-theme="light"] .hrs-orb-3 {
    background: rgba(16,185,129,.08);
}

.hrs-hero-content {
    position: relative;
    z-index: 1;
}

.hrs-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    margin-bottom: 1.5rem;
    animation: abpFadeUp .6s .1s ease both;
}

    .hrs-breadcrumb a {
        color: rgba(255,255,255,.6);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: color .2s;
    }

        .hrs-breadcrumb a:hover {
            color: #fff;
        }

    .hrs-breadcrumb .bi-chevron-left {
        font-size: .55rem;
        opacity: .5;
        color: rgba(255,255,255,.5);
    }

    .hrs-breadcrumb > span {
        color: #fff;
        font-weight: 600;
    }

.hrs-hero-clock {
    margin-bottom: 1.5rem;
    animation: abpFadeUp .6s .15s ease both;
}

.hrs-clock-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(59,130,246,.3);
    background: rgba(59,130,246,.08);
    font-size: 2.2rem;
    color: #3b82f6;
    animation: hrsPulse 3s ease-in-out infinite;
}

@keyframes hrsPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59,130,246,.2);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(59,130,246,0);
    }
}

.hrs-hero-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 .6rem;
    animation: abpFadeUp .6s .2s ease both;
}

.hrs-hero-sub {
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    margin: 0 0 1.5rem;
    animation: abpFadeUp .6s .3s ease both;
}

/* ── Live status ── */
.hrs-live-status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.2rem;
    border-radius: 2rem;
    font-size: .82rem;
    font-weight: 600;
    animation: abpFadeUp .6s .4s ease both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .hrs-live-status.hrs-is-open {
        background: rgba(16,185,129,.12);
        border: 1px solid rgba(16,185,129,.25);
        color: #34d399;
    }

    .hrs-live-status.hrs-is-closed {
        background: rgba(239,68,68,.12);
        border: 1px solid rgba(239,68,68,.25);
        color: #f87171;
    }

.hrs-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.hrs-is-open .hrs-status-dot {
    background: #34d399;
    animation: hrsDotBlink 1.4s ease-in-out infinite;
}

.hrs-is-closed .hrs-status-dot {
    background: #f87171;
}

@keyframes hrsDotBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* ── Weekly schedule grid ── */
.hrs-schedule {
    padding: 5rem 0;
}

.hrs-week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.hrs-day-card {
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    transition: transform .4s, box-shadow .4s, border-color .4s;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .hrs-day-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .hrs-day-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.hrs-day-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.hrs-day-card.hrs-day--today {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59,130,246,.15);
}

[data-theme="light"] .hrs-day-card.hrs-day--today {
    background: rgba(59,130,246,.04);
}

[data-theme="dark"] .hrs-day-card.hrs-day--today {
    background: rgba(59,130,246,.08);
}

.hrs-day-name {
    font-size: .85rem;
    font-weight: 700;
}

[data-theme="light"] .hrs-day-name {
    color: #0f2a4d;
}

.hrs-day-icon {
    font-size: 1.6rem;
    color: #3b82f6;
}

.hrs-day--closed .hrs-day-icon {
    color: #94a3b8;
}

.hrs-day-time {
    font-size: .82rem;
    font-weight: 600;
    direction: ltr;
}

[data-theme="light"] .hrs-day-time {
    color: #334155;
}

.hrs-day--closed .hrs-day-time {
    color: #94a3b8;
}

/* progress bar */
.hrs-day-bar {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    margin-top: .2rem;
}

[data-theme="light"] .hrs-day-bar {
    background: #e2e8f0;
}

[data-theme="dark"] .hrs-day-bar {
    background: rgba(255,255,255,.06);
}

.hrs-bar-fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

    .hrs-bar-fill.hrs-bar-animated {
        width: var(--fill);
    }

.hrs-day--closed .hrs-bar-fill {
    background: #cbd5e1;
}

/* tags */
.hrs-day-tag {
    font-size: .68rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 2rem;
}

.hrs-tag--open {
    background: rgba(16,185,129,.1);
    color: #10b981;
}

.hrs-tag--half {
    background: rgba(245,158,11,.1);
    color: #f59e0b;
}

.hrs-tag--closed {
    background: rgba(148,163,184,.1);
    color: #94a3b8;
}

/* ── Departments ── */
.hrs-depts {
    padding: 5rem 0;
}

.hrs-dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hrs-dept-card {
    border-radius: 1.1rem;
    padding: 1.6rem 1.3rem;
    opacity: 0;
    transform: translateY(25px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay, 0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .hrs-dept-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

[data-theme="dark"] .hrs-dept-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.hrs-dept-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,.1);
}

.hrs-dept-top {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.2rem;
}

.hrs-dept-icon {
    width: 44px;
    height: 44px;
    border-radius: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hrs-dept--skin {
    background: rgba(59,130,246,.1);
    color: #3b82f6;
}

.hrs-dept--laser {
    background: rgba(245,158,11,.1);
    color: #f59e0b;
}

.hrs-dept--injection {
    background: rgba(239,68,68,.1);
    color: #ef4444;
}

.hrs-dept--consult {
    background: rgba(16,185,129,.1);
    color: #10b981;
}

.hrs-dept-top h3 {
    font-size: .92rem;
    font-weight: 700;
    margin: 0;
}

[data-theme="light"] .hrs-dept-top h3 {
    color: #1e293b;
}

.hrs-dept-times {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

    .hrs-dept-times li {
        display: flex;
        justify-content: space-between;
        font-size: .82rem;
        padding: .45rem .6rem;
        border-radius: .5rem;
    }

[data-theme="light"] .hrs-dept-times li {
    background: #f8fafc;
}

[data-theme="dark"] .hrs-dept-times li {
    background: rgba(255,255,255,.03);
}

.hrs-dept-times li span:first-child {
    opacity: .6;
}

.hrs-dept-times li span:last-child {
    font-weight: 600;
    direction: ltr;
}

.hrs-dept-closed span:last-child {
    color: #94a3b8;
}

/* ── Notes ── */
.hrs-notes {
    padding: 5rem 0;
}

.hrs-notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hrs-note-card {
    border-radius: 1.1rem;
    padding: 1.8rem 1.4rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay, 0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .hrs-note-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .hrs-note-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.hrs-note-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,.1);
}

.hrs-note-num {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .7rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrs-note-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

[data-theme="light"] .hrs-note-card h3 {
    color: #1e293b;
}

.hrs-note-card p {
    font-size: .82rem;
    line-height: 1.75;
    margin: 0;
    opacity: .6;
}

.hrs-note-bg-icon {
    position: absolute;
    bottom: -.3rem;
    left: -.2rem;
    font-size: 4rem;
    opacity: .04;
    transform: rotate(-12deg);
}

/* ── Booking CTA ── */
.hrs-booking {
    padding: 5rem 0;
}

.hrs-booking-card {
    border-radius: 1.4rem;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
    color: #fff;
}

    .hrs-booking-card::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -30%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
    }

    .hrs-booking-card::after {
        content: "";
        position: absolute;
        bottom: -40%;
        left: -20%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
    }

.hrs-booking-content {
    position: relative;
    z-index: 1;
}

.hrs-booking-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    opacity: .9;
}

.hrs-booking-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem;
    color: #fff;
}

.hrs-booking-card p {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}

.hrs-booking-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hrs-book-btn {
    padding: .8rem 1.6rem;
    border-radius: .7rem;
    font-size: .88rem;
    font-weight: 600;
    font-family: var(--app-font);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
}

    .hrs-book-btn:hover {
        transform: translateY(-2px);
    }

.hrs-book--fill {
    background: #fff;
    color: #2563eb;
}

    .hrs-book--fill:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,.15);
        color: #2563eb;
    }

.hrs-book--outline {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
}

    .hrs-book--outline:hover {
        background: rgba(255,255,255,.2);
        color: #fff;
    }

.hrs-booking-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .hrs-booking-badges span {
        font-size: .78rem;
        color: rgba(255,255,255,.7);
        display: flex;
        align-items: center;
        gap: .3rem;
    }

    .hrs-booking-badges i {
        font-size: .85rem;
    }

/* ── Hours responsive ── */
@media (max-width: 991.98px) {
    .hrs-hero {
        padding-top: 7.5rem;
    }

    .hrs-week-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hrs-dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hrs-notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.hours-pg {
        padding-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .hrs-hero {
        padding: 7rem 0 3rem;
    }

    .hrs-week-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hrs-dept-grid,
    .hrs-notes-grid {
        grid-template-columns: 1fr;
    }

    .hrs-booking-card {
        padding: 2.5rem 1.2rem;
    }

        .hrs-booking-card h2 {
            font-size: 1.2rem;
        }
}

/* ══════════════════════════════════════════════
   LANDING PAGE (Services)
   ══════════════════════════════════════════════ */
.landing-pg {
    font-family: var(--app-font);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Header ── */
.lnd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: .75rem 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .3s;
}

[data-theme="dark"] .lnd-header {
    background: rgba(18,18,18,.82);
}

[data-theme="light"] .lnd-header {
    background: rgba(11,30,54,.82);
}

/* ── Section bg helpers ── */
[data-theme="dark"] .lnd-sec-light {
    background: #181818;
    color: #e8e8e8;
}

[data-theme="light"] .lnd-sec-light {
    background: #f0f4f9;
    color: #1a1a2e;
}

[data-theme="dark"] .lnd-sec-white {
    background: #111;
    color: #e8e8e8;
}

[data-theme="light"] .lnd-sec-white {
    background: #fff;
    color: #1a1a2e;
}

/* ── Section heading ── */
.lnd-sec-head {
    text-align: center;
    margin-bottom: 3rem;
}

    .lnd-sec-head h2 {
        font-size: 1.65rem;
        font-weight: 800;
        margin-bottom: .5rem;
    }

[data-theme="light"] .lnd-sec-head h2 {
    color: #0f2a4d;
}

.lnd-sec-head p {
    font-size: .88rem;
    opacity: .6;
}

/* ── Buttons ── */
.lnd-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .8rem 1.6rem;
    border-radius: .65rem;
    font-size: .88rem;
    font-weight: 700;
    font-family: var(--app-font);
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    border: none;
}

    .lnd-btn:hover {
        transform: translateY(-2px);
    }

.lnd-btn--primary {
    background: linear-gradient(135deg,#3b82f6,#2563eb);
    color: #fff;
}

    .lnd-btn--primary:hover {
        box-shadow: 0 10px 28px rgba(59,130,246,.35);
        color: #fff;
    }

.lnd-btn--glass {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    backdrop-filter: blur(8px);
}

    .lnd-btn--glass:hover {
        background: rgba(255,255,255,.18);
        color: #fff;
    }

.lnd-btn--white {
    background: #fff;
    color: #2563eb;
}

    .lnd-btn--white:hover {
        box-shadow: 0 10px 28px rgba(0,0,0,.12);
        color: #2563eb;
    }

.lnd-btn--glass-white {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
}

    .lnd-btn--glass-white:hover {
        background: rgba(255,255,255,.22);
        color: #fff;
    }

/* ══════ HERO ══════ */
.lnd-hero {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

[data-theme="dark"] .lnd-hero {
    color: #e8e8e8;
}

[data-theme="light"] .lnd-hero {
    color: #f5f7fa;
}

.lnd-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lnd-hero-gradient {
    position: absolute;
    inset: 0;
}

[data-theme="dark"] .lnd-hero-gradient {
    background: radial-gradient(ellipse at 30% 20%, #1a1a2e, #121212 60%);
}

[data-theme="light"] .lnd-hero-gradient {
    background: radial-gradient(ellipse at 30% 20%, #1b3a5c, #0b1e36 60%);
}

.lnd-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.lnd-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: authOrbFloat 16s ease-in-out infinite;
}

.lnd-orb-1 {
    width: 400px;
    height: 400px;
    top: -15%;
    right: 5%;
}

.lnd-orb-2 {
    width: 280px;
    height: 280px;
    bottom: -10%;
    left: 10%;
    animation-delay: -6s;
}

.lnd-orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 40%;
    animation-delay: -11s;
}

[data-theme="dark"] .lnd-orb-1 {
    background: rgba(59,130,246,.08);
}

[data-theme="dark"] .lnd-orb-2 {
    background: rgba(139,92,246,.06);
}

[data-theme="dark"] .lnd-orb-3 {
    background: rgba(16,185,129,.04);
}

[data-theme="light"] .lnd-orb-1 {
    background: rgba(59,130,246,.14);
}

[data-theme="light"] .lnd-orb-2 {
    background: rgba(139,92,246,.1);
}

[data-theme="light"] .lnd-orb-3 {
    background: rgba(16,185,129,.06);
}

.lnd-hero-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lnd-hero-text {
    max-width: 600px;
}

.lnd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    margin-bottom: 1.2rem;
    animation: abpFadeUp .5s .1s ease both;
}

    .lnd-breadcrumb a, .lnd-breadcrumb span {
        color: rgba(255,255,255,.5);
        text-decoration: none;
    }

        .lnd-breadcrumb a:hover {
            color: #fff;
        }

    .lnd-breadcrumb .bi-chevron-left {
        font-size: .5rem;
        opacity: .4;
    }

    .lnd-breadcrumb > span:last-child span {
        color: #fff;
        font-weight: 600;
    }

.lnd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 2rem;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.25);
    color: #34d399;
    margin-bottom: 1.2rem;
    animation: abpFadeUp .5s .15s ease both;
}

.lnd-hero h1 {
    font-size: clamp(1.8rem,4.5vw,2.8rem);
    font-weight: 900;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 1.2rem;
    animation: abpFadeUp .6s .2s ease both;
}

.lnd-hero-accent {
    background: linear-gradient(135deg,#60a5fa,#a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lnd-hero-desc {
    font-size: .92rem;
    line-height: 1.9;
    color: rgba(255,255,255,.7);
    margin-bottom: 1.8rem;
    animation: abpFadeUp .6s .3s ease both;
}

    .lnd-hero-desc strong {
        color: #fff;
    }

.lnd-hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
    animation: abpFadeUp .6s .35s ease both;
}

.lnd-hero-trust {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    animation: abpFadeUp .6s .4s ease both;
}

.lnd-trust-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
}

    .lnd-trust-item i {
        color: #34d399;
        font-size: .9rem;
    }

/* ── Hero visual ── */
.lnd-hero-visual {
    display: flex;
    justify-content: center;
    animation: abpFadeUp .7s .3s ease both;
}

.lnd-hero-img-frame {
    position: relative;
    border-radius: 1.4rem;
    overflow: hidden;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.08);
}

    .lnd-hero-img-frame img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
    }

.lnd-hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    border-radius: .8rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: .78rem;
    animation: lndFloat 3s ease-in-out infinite;
}

    .lnd-hero-float-card i {
        font-size: 1.3rem;
        color: #60a5fa;
    }

    .lnd-hero-float-card strong {
        display: block;
        font-size: .95rem;
        font-weight: 800;
    }

    .lnd-hero-float-card span {
        opacity: .7;
        font-size: .7rem;
    }

.lnd-float-1 {
    bottom: 5rem;
    left: -2rem;
    animation-delay: 0s;
}

.lnd-float-2 {
    top: 3rem;
    right: -1.5rem;
    animation-delay: -1.5s;
}

@keyframes lndFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ══════ STATS ══════ */
.lnd-stats {
    padding: 3rem 0;
}

.lnd-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
}

.lnd-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    transition: transform .35s;
}

[data-theme="light"] .lnd-stat-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .lnd-stat-item {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

.lnd-stat-item:hover {
    transform: translateY(-4px);
}

.lnd-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    direction: ltr;
    margin-bottom: .2rem;
}

[data-theme="light"] .lnd-stat-num {
    color: #0f2a4d;
}

.lnd-stat-label {
    font-size: .8rem;
    opacity: .55;
}

/* ══════ WHAT IS ══════ */
.lnd-what {
    padding: 5rem 0;
}

.lnd-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lnd-what-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.lnd-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: .7rem;
}

.lnd-what-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

[data-theme="light"] .lnd-what-text h2 {
    color: #0f2a4d;
}

.lnd-what-text p {
    font-size: .9rem;
    line-height: 1.9;
    opacity: .7;
    margin-bottom: .5rem;
}

.lnd-what-text strong {
    opacity: 1;
}

[data-theme="light"] .lnd-what-text strong {
    color: #1e293b;
}

.lnd-what-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: 1.2rem;
}

    .lnd-what-checks span {
        display: flex;
        align-items: center;
        gap: .4rem;
        font-size: .82rem;
        font-weight: 500;
    }

    .lnd-what-checks i {
        color: #10b981;
        font-size: 1rem;
    }

/* ══════ METHODS ══════ */
.lnd-methods {
    padding: 5rem 0;
}

.lnd-methods-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.6rem;
}

.lnd-method-card {
    border-radius: 1.2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay,0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .lnd-method-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .lnd-method-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.lnd-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.lnd-method--featured {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 1px rgba(59,130,246,.2);
}

[data-theme="light"] .lnd-method--featured {
    background: rgba(59,130,246,.03);
}

[data-theme="dark"] .lnd-method--featured {
    background: rgba(59,130,246,.06);
}

.lnd-method-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    padding: .2rem .7rem;
    border-radius: 2rem;
    background: rgba(59,130,246,.1);
    color: #3b82f6;
    margin-bottom: .8rem;
}

.lnd-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(59,130,246,.08);
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lnd-method-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

[data-theme="light"] .lnd-method-card h3 {
    color: #1e293b;
}

.lnd-method-card > p {
    font-size: .82rem;
    line-height: 1.75;
    opacity: .6;
    margin-bottom: 1rem;
}

.lnd-method-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    text-align: right;
}

    .lnd-method-features li {
        font-size: .8rem;
        display: flex;
        align-items: center;
        gap: .35rem;
    }

    .lnd-method-features i {
        color: #10b981;
        font-size: .85rem;
    }

.lnd-method-cta {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
    transition: gap .3s;
}

    .lnd-method-cta:hover {
        gap: .6rem;
        color: #2563eb;
    }

/* ══════ CTA STRIP ══════ */
.lnd-cta-strip {
    padding: 0;
}

.lnd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-radius: 1.2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg,#3b82f6,#7c3aed);
    color: #fff;
}

.lnd-cta-txt h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 .2rem;
    color: #fff;
}

    .lnd-cta-txt h2 i {
        margin-left: .4rem;
    }

.lnd-cta-txt p {
    font-size: .82rem;
    margin: 0;
    opacity: .8;
}

/* ══════ PROCESS ══════ */
.lnd-process {
    padding: 5rem 0;
}

.lnd-steps-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1.2rem;
}

.lnd-step {
    text-align: center;
    padding: 1.8rem 1rem;
    border-radius: 1.1rem;
    position: relative;
    opacity: 0;
    transform: translateY(25px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay,0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .lnd-step {
    background: #fff;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .lnd-step {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.lnd-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.lnd-step-num {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .5rem;
    background: linear-gradient(135deg,#3b82f6,#8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lnd-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59,130,246,.08);
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .8rem;
}

.lnd-step h3 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

[data-theme="light"] .lnd-step h3 {
    color: #1e293b;
}

.lnd-step p {
    font-size: .78rem;
    line-height: 1.7;
    opacity: .55;
    margin: 0;
}

/* ══════ GALLERY ══════ */
.lnd-gallery {
    padding: 5rem 0;
}

.lnd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.2rem;
}

.lnd-gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(25px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay,0s);
    cursor: pointer;
}

    .lnd-gallery-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform .5s;
    }

    .lnd-gallery-item:hover img {
        transform: scale(1.06);
    }

.lnd-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,42,77,.7), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity .35s;
}

.lnd-gallery-item:hover .lnd-gallery-overlay {
    opacity: 1;
}

.lnd-gallery-tag {
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    background: rgba(59,130,246,.7);
    padding: .25rem .7rem;
    border-radius: 2rem;
    backdrop-filter: blur(6px);
}

/* ══════ LEAD FORM ══════ */
.lnd-lead-section {
    padding: 5rem 0;
}

[data-theme="dark"] .lnd-lead-section {
    background: radial-gradient(ellipse at 50% 50%,#1a1a2e,#121212 70%);
    color: #e8e8e8;
}

[data-theme="light"] .lnd-lead-section {
    background: radial-gradient(ellipse at 50% 50%,#1b3a5c,#0b1e36 70%);
    color: #f5f7fa;
}

.lnd-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lnd-lead-visual {
    position: relative;
}

    .lnd-lead-visual img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 1.2rem;
        box-shadow: 0 20px 50px rgba(0,0,0,.2);
    }

.lnd-lead-visual-card {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1.2rem;
    border-radius: .8rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    animation: lndFloat 3s ease-in-out infinite;
}

    .lnd-lead-visual-card i {
        font-size: 1.6rem;
        color: #60a5fa;
    }

    .lnd-lead-visual-card strong {
        display: block;
        font-size: .85rem;
    }

    .lnd-lead-visual-card span {
        font-size: .72rem;
        opacity: .7;
    }

.lnd-lead-box {
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.12);
}

.lnd-lead-head {
    text-align: center;
    margin-bottom: 1.8rem;
}

    .lnd-lead-head h2 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: .5rem;
        color: #fff;
    }

        .lnd-lead-head h2 i {
            color: #60a5fa;
            margin-left: .4rem;
        }

    .lnd-lead-head p {
        font-size: .82rem;
        color: rgba(255,255,255,.6);
        margin: 0;
    }

.lnd-lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lnd-field {
    position: relative;
}

    .lnd-field i:first-child {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #60a5fa;
        font-size: .95rem;
        z-index: 1;
    }

    .lnd-field textarea ~ i:first-child {
        top: 1.1rem;
        transform: none;
    }

    .lnd-field input, .lnd-field select, .lnd-field textarea {
        width: 100%;
        padding: .85rem 1rem .85rem 1rem;
        padding-right: 2.8rem;
        border-radius: .7rem;
        font-family: var(--app-font);
        font-size: .85rem;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        color: #fff;
        outline: none;
        resize: vertical;
        transition: border-color .3s, box-shadow .3s;
    }

        .lnd-field input::placeholder, .lnd-field textarea::placeholder {
            color: rgba(255,255,255,.4);
        }

    .lnd-field select {
        cursor: pointer;
        color: rgba(255,255,255,.5);
    }

        .lnd-field select option {
            background: #1a1a2e;
            color: #fff;
        }

        .lnd-field input:focus, .lnd-field select:focus, .lnd-field textarea:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59,130,246,.15);
        }

.lnd-submit-btn {
    width: 100%;
    padding: .9rem;
    border: none;
    border-radius: .7rem;
    background: linear-gradient(135deg,#3b82f6,#2563eb);
    color: #fff;
    font-family: var(--app-font);
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}

    .lnd-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(59,130,246,.35);
    }

.lnd-submit-spinner {
    display: none;
    animation: authSpin .8s linear infinite;
}

.lnd-submit-btn.lnd-loading .lnd-submit-spinner {
    display: inline-flex;
}

.lnd-lead-trust {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

    .lnd-lead-trust span {
        font-size: .72rem;
        color: rgba(255,255,255,.45);
        display: flex;
        align-items: center;
        gap: .3rem;
    }

    .lnd-lead-trust i {
        color: #34d399;
        font-size: .78rem;
    }

/* ══════ WHY US ══════ */
.lnd-why {
    padding: 5rem 0;
}

.lnd-why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.lnd-why-card {
    border-radius: 1.1rem;
    padding: 1.8rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay,0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .lnd-why-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .lnd-why-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.lnd-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.lnd-why-icon {
    width: 56px;
    height: 56px;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.lnd-why--blue {
    background: rgba(59,130,246,.1);
    color: #3b82f6;
}

.lnd-why--green {
    background: rgba(16,185,129,.1);
    color: #10b981;
}

.lnd-why--purple {
    background: rgba(139,92,246,.1);
    color: #8b5cf6;
}

.lnd-why--gold {
    background: rgba(245,158,11,.1);
    color: #f59e0b;
}

.lnd-why--rose {
    background: rgba(239,68,68,.1);
    color: #ef4444;
}

.lnd-why--teal {
    background: rgba(20,184,166,.1);
    color: #14b8a6;
}

.lnd-why-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .45rem;
}

[data-theme="light"] .lnd-why-card h3 {
    color: #1e293b;
}

.lnd-why-card p {
    font-size: .8rem;
    line-height: 1.75;
    opacity: .6;
    margin: 0;
}

/* ══════ REVIEWS ══════ */
.lnd-reviews {
    padding: 5rem 0;
}

.lnd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.lnd-review-card {
    border-radius: 1.1rem;
    padding: 1.8rem 1.5rem;
    opacity: 0;
    transform: translateY(25px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay,0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .lnd-review-card {
    background: #fff;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .lnd-review-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.lnd-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.lnd-review-stars {
    margin-bottom: .8rem;
}

    .lnd-review-stars i {
        color: #f59e0b;
        font-size: .85rem;
        margin-left: .1rem;
    }

.lnd-review-text {
    font-size: .85rem;
    line-height: 1.8;
    opacity: .7;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.lnd-review-author {
    display: flex;
    align-items: center;
    gap: .7rem;
}

    .lnd-review-author img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(59,130,246,.2);
    }

    .lnd-review-author strong {
        display: block;
        font-size: .85rem;
        font-weight: 700;
    }

[data-theme="light"] .lnd-review-author strong {
    color: #1e293b;
}

.lnd-review-author span {
    font-size: .72rem;
    opacity: .5;
}

/* ══════ COMMENTS (hair transplant / landing) ══════ */
.lnd-comments {
    padding: 5rem 0;
}

.lnd-comments-glass {
    border-radius: 1.25rem;
    padding: 1.5rem 1.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .lnd-comments-glass {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(15, 42, 77, 0.1);
    box-shadow: 0 18px 48px rgba(15, 42, 77, 0.08);
}

.lnd-comments-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    font-size: 0.8rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .lnd-comments-breadcrumb {
    border-bottom-color: rgba(15, 42, 77, 0.08);
}

.lnd-comments-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

[data-theme="light"] .lnd-comments-breadcrumb a {
    color: rgba(15, 42, 77, 0.55);
}

.lnd-comments-breadcrumb a:hover {
    color: #3b82f6;
}

.lnd-comments-breadcrumb .bi-chevron-left {
    font-size: 0.5rem;
    opacity: 0.45;
}

.lnd-comments-breadcrumb > span[aria-current="page"] {
    font-weight: 700;
    color: var(--text-primary);
}

.lnd-comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.lnd-comment-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

[data-theme="light"] .lnd-comment-item {
    background: rgba(248, 250, 252, 0.9);
    border-color: rgba(226, 232, 240, 0.95);
}

.lnd-comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.lnd-comment-item--reply {
    margin-right: 1.5rem;
    border-color: rgba(59, 130, 246, 0.22);
    background: rgba(59, 130, 246, 0.06);
}

[data-theme="light"] .lnd-comment-item--reply {
    background: rgba(59, 130, 246, 0.05);
}

.lnd-comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.25);
}

.lnd-comment-avatar--staff {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #3b82f6;
    font-size: 1.25rem;
}

.lnd-comment-body {
    flex: 1;
    min-width: 0;
}

.lnd-comment-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.45rem;
}

    .lnd-comment-meta strong {
        font-size: 0.88rem;
        font-weight: 800;
    }

[data-theme="light"] .lnd-comment-meta strong {
    color: #0f2a4d;
}

.lnd-comment-time {
    font-size: 0.72rem;
    opacity: 0.55;
}

.lnd-comment-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.lnd-comment-text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.85;
    opacity: 0.82;
}

.lnd-comment-reply {
    margin-top: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-radius: 0.55rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .lnd-comment-reply:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
    }

[data-theme="light"] .lnd-comment-reply {
    border-color: rgba(15, 42, 77, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

.lnd-comment-form-wrap {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .lnd-comment-form-wrap {
    border-top-color: rgba(15, 42, 77, 0.08);
}

.lnd-comment-form-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

[data-theme="light"] .lnd-comment-form-title {
    color: #0f2a4d;
}

.lnd-comment-form-title i {
    color: #3b82f6;
}

.lnd-comment-form-hint {
    font-size: 0.78rem;
    opacity: 0.6;
    margin: 0 0 1rem;
}

.lnd-comment-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    opacity: 0.9;
}

.lnd-comment-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 0.65rem 0.85rem;
    font-family: var(--app-font);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .lnd-comment-input:focus {
        border-color: rgba(59, 130, 246, 0.45);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    }

[data-theme="light"] .lnd-comment-input {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 42, 77, 0.12);
    color: #0f2a4d;
}

.lnd-comment-textarea {
    resize: vertical;
    min-height: 120px;
}

.lnd-comment-submit {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem;
}

@media (max-width: 767.98px) {
    .lnd-comment-item--reply {
        margin-right: 0;
    }
}

/* ══════ INLINE LEAD ══════ */
.lnd-inline-lead {
    padding: 2rem 0;
}

.lnd-inline-lead-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg,#10b981,#059669);
    color: #fff;
}

.lnd-inline-lead-txt h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 .2rem;
    color: #fff;
}

    .lnd-inline-lead-txt h2 i {
        margin-left: .4rem;
    }

.lnd-inline-lead-txt p {
    font-size: .82rem;
    margin: 0;
    opacity: .8;
}

.lnd-inline-form {
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
}

.lnd-inline-field {
    position: relative;
    display: flex;
    align-items: center;
}

    .lnd-inline-field i {
        position: absolute;
        right: .8rem;
        color: rgba(255,255,255,.5);
        font-size: .9rem;
    }

    .lnd-inline-field input {
        padding: .7rem 1rem .7rem .7rem;
        padding-right: 2.4rem;
        border-radius: .6rem;
        border: 1px solid rgba(255,255,255,.3);
        background: rgba(255,255,255,.12);
        color: #fff;
        font-family: var(--app-font);
        font-size: .85rem;
        outline: none;
        width: 200px;
        backdrop-filter: blur(6px);
    }

        .lnd-inline-field input::placeholder {
            color: rgba(255,255,255,.5);
        }

        .lnd-inline-field input:focus {
            border-color: #fff;
        }

/* ══════ PRICING ══════ */
.lnd-pricing {
    padding: 5rem 0;
}

.lnd-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.6rem;
    align-items: start;
}

.lnd-price-card {
    border-radius: 1.2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
    animation: abpFadeUp .6s ease forwards;
    animation-delay: var(--delay,0s);
    transition: transform .4s, box-shadow .4s;
}

[data-theme="light"] .lnd-price-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .lnd-price-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.lnd-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.lnd-price--featured {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 1px rgba(59,130,246,.15);
    transform: scale(1.03);
}

[data-theme="light"] .lnd-price--featured {
    background: rgba(59,130,246,.03);
}

.lnd-price--featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.lnd-price-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: .35rem;
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg,#3b82f6,#8b5cf6);
}

.lnd-price-head {
    margin-bottom: 1rem;
    padding-top: .5rem;
}

.lnd-price--featured .lnd-price-head {
    padding-top: 1.2rem;
}

.lnd-price-head h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

[data-theme="light"] .lnd-price-head h3 {
    color: #0f2a4d;
}

.lnd-price-tag {
    font-size: .7rem;
    font-weight: 600;
    padding: .15rem .6rem;
    border-radius: 2rem;
    background: rgba(59,130,246,.1);
    color: #3b82f6;
}

.lnd-price-amount {
    margin-bottom: 1.2rem;
}

.lnd-price-from {
    display: block;
    font-size: .75rem;
    opacity: .5;
    margin-bottom: .1rem;
}

.lnd-price-num {
    font-size: 2.4rem;
    font-weight: 900;
    direction: ltr;
    background: linear-gradient(135deg,#3b82f6,#8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lnd-price-unit {
    font-size: .8rem;
    opacity: .5;
    margin-right: .3rem;
}

.lnd-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    text-align: right;
}

    .lnd-price-features li {
        font-size: .8rem;
        display: flex;
        align-items: center;
        gap: .35rem;
    }

    .lnd-price-features i {
        color: #10b981;
        font-size: .85rem;
    }

.lnd-price-btn {
    display: inline-block;
    width: 100%;
    padding: .75rem;
    border-radius: .6rem;
    font-size: .85rem;
    font-weight: 700;
    font-family: var(--app-font);
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
}

[data-theme="light"] .lnd-price-btn {
    background: #0f2a4d;
    color: #fff;
}

[data-theme="dark"] .lnd-price-btn {
    background: rgba(59,130,246,.15);
    color: #60a5fa;
    border: 1px solid rgba(59,130,246,.2);
}

.lnd-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    color: #fff;
}

.lnd-price--featured .lnd-price-btn {
    background: linear-gradient(135deg,#3b82f6,#2563eb);
    color: #fff;
    border: none;
}

/* ══════ FAQ ══════ */
.lnd-faq {
    padding: 5rem 0;
}

.lnd-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.lnd-faq-item {
    border-radius: .9rem;
    overflow: hidden;
    transition: box-shadow .3s;
}

[data-theme="light"] .lnd-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
}

[data-theme="dark"] .lnd-faq-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.lnd-faq-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.lnd-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 700;
    list-style: none;
}

    .lnd-faq-item summary::-webkit-details-marker {
        display: none;
    }

[data-theme="light"] .lnd-faq-item summary {
    color: #1e293b;
}

.lnd-faq-item summary i {
    font-size: .7rem;
    transition: transform .3s;
    color: #3b82f6;
}

.lnd-faq-item[open] summary i {
    transform: rotate(180deg);
}

.lnd-faq-body {
    padding: 0 1.4rem 1.2rem;
}

    .lnd-faq-body p {
        font-size: .85rem;
        line-height: 1.85;
        opacity: .65;
        margin: 0;
    }

/* ══════ FINAL CTA ══════ */
.lnd-final-cta {
    padding: 5rem 0;
}

[data-theme="dark"] .lnd-final-cta {
    background: #0a0a0a;
}

[data-theme="light"] .lnd-final-cta {
    background: #0b1e36;
}

.lnd-final-card {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(59,130,246,.2), rgba(139,92,246,.15));
    border: 1px solid rgba(255,255,255,.08);
}

    .lnd-final-card h2 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: .6rem;
        color: #fff;
    }

    .lnd-final-card p {
        font-size: .9rem;
        color: rgba(255,255,255,.6);
        margin-bottom: 2rem;
    }

.lnd-final-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ══════ LANDING RESPONSIVE ══════ */
@media (max-width: 991.98px) {
    .lnd-hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .lnd-hero-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lnd-hero-text {
        max-width: 100%;
    }

    .lnd-hero-actions {
        justify-content: center;
    }

    .lnd-hero-trust {
        justify-content: center;
    }

    .lnd-hero-img-frame {
        max-width: 360px;
        margin: 0 auto;
    }

        .lnd-hero-img-frame img {
            height: 400px;
        }

    .lnd-float-1 {
        left: 0;
    }

    .lnd-float-2 {
        right: 0;
    }

    .lnd-stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .lnd-what-grid {
        grid-template-columns: 1fr;
    }

    .lnd-methods-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .lnd-steps-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .lnd-gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .lnd-lead-grid {
        grid-template-columns: 1fr;
    }

    .lnd-lead-visual img {
        height: 360px;
    }

    .lnd-why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .lnd-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .lnd-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .lnd-inline-lead-card {
        flex-direction: column;
        text-align: center;
    }

    .lnd-inline-form {
        width: 100%;
    }

    .lnd-inline-field {
        flex: 1;
    }

        .lnd-inline-field input {
            width: 100%;
        }

    .lnd-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .lnd-price--featured {
        transform: none;
    }

        .lnd-price--featured:hover {
            transform: translateY(-8px);
        }

    body.landing-pg {
        padding-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .lnd-hero {
        padding: 6.5rem 0 2.5rem;
    }

        .lnd-hero h1 {
            font-size: 1.5rem;
        }

    .lnd-hero-img-frame img {
        height: 340px;
    }

    .lnd-stats-grid {
        gap: 1rem;
    }

    .lnd-stat-num {
        font-size: 1.5rem;
    }

    .lnd-steps-grid {
        grid-template-columns: 1fr;
    }

    .lnd-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lnd-lead-box {
        padding: 1.5rem 1.2rem;
    }

    .lnd-lead-visual img {
        height: 280px;
    }

    .lnd-final-card {
        padding: 2.5rem 1.2rem;
    }

        .lnd-final-card h2 {
            font-size: 1.2rem;
        }
}







/* =========================
   DESKTOP MULTI LEVEL MENU
   ========================= */

.glass-nav {
    overflow: visible;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

    .nav-desktop > .nav-item,
    .nav-desktop .desktop-menu-item {
        position: relative;
        list-style: none;
    }

    /* ردیف آیتم اصلی */
    .nav-desktop .desktop-item-row {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        position: relative;
        z-index: 2;
    }

    /* لینک‌های منو */
    .nav-desktop .nav-link {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        white-space: nowrap;
        position: relative;
    }

    /* فلش */
    .nav-desktop .desktop-menu-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        line-height: 1;
        pointer-events: none;
        color: inherit;
        opacity: 0.9;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    /* والدی که زیرمنو دارد */
    .nav-desktop .desktop-menu-item.has-children {
        position: relative;
    }

    /* زیرمنو پایه */
    .nav-desktop .submenu,
    .nav-desktop .dropdown-menu-glass {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        display: block;
        margin: 0;
        padding: 0.5rem;
        list-style: none;
        /* مهم‌ترین بخش برای حل عرض */
        width: max-content;
        min-width: max-content !important;
        max-width: min(92vw, 22rem);
        white-space: nowrap;
        background: var(--drop-bg);
        border: 1px solid var(--glass-border);
        border-radius: 1rem;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
        z-index: 1200;
    }

        /* آیتم‌های داخل زیرمنو */
        .nav-desktop .submenu > .nav-item,
        .nav-desktop .submenu > .desktop-menu-item,
        .nav-desktop .dropdown-menu-glass > .nav-item,
        .nav-desktop .dropdown-menu-glass > .desktop-menu-item {
            position: relative;
            list-style: none;
        }

        /* لینک داخل زیرمنو */
        .nav-desktop .submenu .nav-link,
        .nav-desktop .dropdown-menu-glass .nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            width: 100%;
            min-width: max-content;
            padding: 0.75rem 0.95rem;
            border-radius: 0.8rem;
            white-space: nowrap;
            line-height: 1.8;
            color: var(--text-primary);
            text-decoration: none;
        }

        /* اگر آیتم child فلش دارد */
        .nav-desktop .submenu .desktop-item-row,
        .nav-desktop .dropdown-menu-glass .desktop-item-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.65rem;
            white-space: nowrap;
        }

        .nav-desktop .submenu .desktop-menu-arrow,
        .nav-desktop .dropdown-menu-glass .desktop-menu-arrow {
            flex: 0 0 auto;
        }

    /* سطح اول */
    .nav-desktop .submenu-level-1 {
        top: calc(100% + 12px);
        right: 0;
        left: auto;
    }

    /* سطح دوم و سوم و بیشتر - در RTL به سمت چپ باز می‌شوند */
    .nav-desktop .submenu-level-2,
    .nav-desktop .submenu-level-3,
    .nav-desktop .submenu-level-4,
    .nav-desktop .submenu-level-5 {
        top: -0.5rem;
        right: calc(100% + 10px);
        left: auto;
        transform: translateY(0) scale(0.98);
        transform-origin: top right;
    }

/* باز شدن level 1 با hover */
@media (min-width: 992px) {
    .nav-desktop .desktop-menu-item.has-children:hover > .submenu-level-1,
    .nav-desktop .desktop-menu-item.has-children:focus-within > .submenu-level-1 {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    /* باز شدن level 2+ با hover روی آیتم والد */
    .nav-desktop .submenu .desktop-menu-item.has-children:hover > .submenu,
    .nav-desktop .submenu .desktop-menu-item.has-children:focus-within > .submenu,
    .nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children:hover > .submenu,
    .nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children:focus-within > .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    /* چرخش فلش‌ها */
    .nav-desktop > .desktop-menu-item.has-children:hover > .desktop-item-row .desktop-menu-arrow,
    .nav-desktop > .desktop-menu-item.has-children:focus-within > .desktop-item-row .desktop-menu-arrow {
        transform: rotate(180deg);
    }

    .nav-desktop .submenu .desktop-menu-item.has-children:hover > .desktop-item-row .desktop-menu-arrow,
    .nav-desktop .submenu .desktop-menu-item.has-children:focus-within > .desktop-item-row .desktop-menu-arrow,
    .nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children:hover > .desktop-item-row .desktop-menu-arrow,
    .nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children:focus-within > .desktop-item-row .desktop-menu-arrow {
        transform: translateX(-2px);
    }

    /* hover آیتم‌ها */
    .nav-desktop .submenu .nav-link:hover,
    .nav-desktop .submenu .nav-link.active,
    .nav-desktop .dropdown-menu-glass .nav-link:hover,
    .nav-desktop .dropdown-menu-glass .nav-link.active {
        background: var(--glass-hover);
    }

    /* پل بین منوها تا هنگام حرکت موس بسته نشود */
    .nav-desktop .desktop-menu-item.has-children > .submenu-level-1::before {
        content: "";
        position: absolute;
        top: -14px;
        right: 0;
        left: 0;
        height: 14px;
    }

    .nav-desktop .submenu .desktop-menu-item.has-children > .submenu::before,
    .nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children > .submenu::before {
        content: "";
        position: absolute;
        top: 0;
        right: -12px;
        width: 12px;
        height: 100%;
    }
}

/* موبایل و تبلت: hover غیرفعال */
@media (max-width: 991.98px) {
    .nav-desktop .submenu,
    .nav-desktop .dropdown-menu-glass {
        display: none !important;
    }
}


/* =========================
   ARROW / ROW TUNING
   ========================= */

/* ردیف کلی آیتم */
.nav-desktop .desktop-item-row {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* سطح اول: فلش نزدیک متن باشد */
.nav-desktop > .desktop-menu-item > .desktop-item-row,
.nav-desktop > .nav-item.desktop-menu-item > .desktop-item-row {
    gap: 0.32rem;
}

/* زیرمنوها: فلش کاملاً مشخص و در انتهای ردیف */
.nav-desktop .submenu .desktop-item-row,
.nav-desktop .dropdown-menu-glass .desktop-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    width: 100%;
    min-width: max-content;
}

    /* لینک داخل زیرمنو کل عرض مفید را بگیرد */
    .nav-desktop .submenu .desktop-item-row > .nav-link,
    .nav-desktop .dropdown-menu-glass .desktop-item-row > .nav-link {
        flex: 1 1 auto;
        min-width: 0;
    }

/* فلش عمومی */
.nav-desktop .desktop-menu-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
    transition: transform 0.22s ease, opacity 0.22s ease, color 0.22s ease;
    pointer-events: none;
}

    /* فلش سطح اول */
    .nav-desktop .desktop-menu-arrow.is-root-arrow {
        font-size: 0.72rem;
        margin-right: 0.05rem;
        opacity: 0.92;
    }

    /* فلش سطح دوم و سوم */
    .nav-desktop .desktop-menu-arrow.is-sub-arrow {
        font-size: 0.78rem;
        opacity: 0.9;
        color: var(--text-secondary);
        margin-right: 0;
        margin-left: 0;
    }

/* وقتی آیتم زیرمنو child دارد، کمی تاکید بصری بیشتر */
.nav-desktop .submenu .desktop-menu-item.has-children > .desktop-item-row,
.nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children > .desktop-item-row {
    padding-left: 0.1rem;
}

/* hover روی آیتم child => فلش واضح‌تر */
.nav-desktop .submenu .desktop-menu-item.has-children:hover > .desktop-item-row .desktop-menu-arrow,
.nav-desktop .submenu .desktop-menu-item.has-children:focus-within > .desktop-item-row .desktop-menu-arrow,
.nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children:hover > .desktop-item-row .desktop-menu-arrow,
.nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children:focus-within > .desktop-item-row .desktop-menu-arrow {
    color: var(--text-primary);
    opacity: 1;
    transform: translateX(-2px);
}

/* فلش سطح اول هنگام باز بودن */
.nav-desktop > .desktop-menu-item.has-children:hover > .desktop-item-row .desktop-menu-arrow.is-root-arrow,
.nav-desktop > .desktop-menu-item.has-children:focus-within > .desktop-item-row .desktop-menu-arrow.is-root-arrow {
    transform: rotate(180deg);
}

/* فلش زیرمنو همیشه در دید باشد */
.nav-desktop .submenu .desktop-menu-item.has-children > .desktop-item-row .desktop-menu-arrow,
.nav-desktop .dropdown-menu-glass .desktop-menu-item.has-children > .desktop-item-row .desktop-menu-arrow {
    visibility: visible;
}

/* برای اینکه فلش سطح اول خیلی از آیتم جدا نشود */
.nav-desktop > .desktop-menu-item.has-children > .desktop-item-row > .nav-link {
    padding-left: 0;
}

/* اگر هنوز فاصله زیاد بود این را کمتر کن */
.nav-desktop > .desktop-menu-item.has-children > .desktop-item-row.has-arrow {
    gap: 0.22rem;
}


/* =========================
   MOBILE MENU
   ========================= */

.mobile-nav,
.mobile-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-item {
    width: 100%;
}

    .mobile-menu-item + .mobile-menu-item {
        margin-top: 0.2rem;
    }

/* ردیف آیتم دارای زیرمنو */
.mobile-menu-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.75rem;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
}

/* لینک اصلی */
.mobile-menu-link {
    display: flex;
    align-items: center;
    min-width: 0;
    width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.9;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* متن داخل لینک */
.mobile-menu-text {
    display: block;
    min-width: 0;
    white-space: normal;
}

/* آیتمی که زیرمنو ندارد */
.mobile-menu-link--single {
    display: flex;
    width: 100%;
}

/* دکمه فلش */
.mobile-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    border: 0;
    border-radius: 0.85rem;
    background: var(--glass-bg);
    color: var(--text-primary);
    flex: 0 0 2.75rem;
    align-self: center;
}

    /* فلش همیشه وسط بماند */
    .mobile-submenu-toggle .submenu-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        line-height: 1;
        transition: transform 0.25s ease;
    }

    /* چرخش فلش هنگام باز بودن */
    .mobile-submenu-toggle[aria-expanded="true"] .submenu-arrow {
        transform: rotate(180deg);
    }

/* زیرمنو */
.mobile-submenu {
    margin-top: 0.35rem;
    margin-right: 0.85rem;
    padding-right: 0.75rem;
    border-right: 1px solid var(--glass-border);
}

    /* لینک‌های داخل زیرمنو */
    .mobile-submenu .mobile-menu-link {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 0.95rem;
    }

/* levelهای پایین‌تر */
.mobile-menu-item.level-2 > .mobile-menu-row .mobile-menu-link,
.mobile-menu-item.level-2 > .mobile-menu-link {
    padding-right: 0.35rem;
}

.mobile-menu-item.level-3 > .mobile-menu-row .mobile-menu-link,
.mobile-menu-item.level-3 > .mobile-menu-link {
    padding-right: 0.55rem;
}

/* hover / active */
.mobile-menu-link:hover,
.mobile-menu-link.active,
.mobile-submenu-toggle:hover {
    background: var(--glass-hover);
}

/* اگر عنوان خیلی خیلی بلند شد، باز هم فلش نیفتد */
.mobile-menu-item.has-children > .mobile-menu-row > .mobile-submenu-toggle {
    justify-self: end;
}







.page-comments .section-box,
.page-comments .comment-form-card,
.page-comments .comment-card {
    box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.06);
}

.page-comments .comment-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .page-comments .comment-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.08);
    }

.page-comments .form-control,
.page-comments .page-link {
    border-width: 1px;
}

    .page-comments .form-control:focus {
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.12);
    }

.page-comments .pagination .page-link {
    min-width: 44px;
    text-align: center;
}
.photo-wave-card__overlay {
    position: absolute;
    bottom: -5px;
    z-index: 99;
    left: -40px;
    right: -40px;
}

 

[data-theme="light"] .teaser-wave-path {
    background-color: rgb(255, 255, 255);
}


.shaylin-ai-avatar {
    --avatar-size: 192px;
    --circle-size: 163px;
    position: relative;
    width: var(--avatar-size);
    height: var(--avatar-size);
    isolation: isolate;
    overflow: hidden;
}

/* Glow / Ellipse 161 */
.shaylin-ai-avatar__shadow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

    .shaylin-ai-avatar__shadow::before {
        content: "";
        position: absolute;
        left: 6px;
        top: 2px;
        width: 170px;
        height: 140px;
        border-radius: 50%;
        background: radial-gradient( ellipse at 46% 40%, rgba(194, 233, 245, 0.44) 0%, rgba(194, 233, 245, 0.34) 18%, rgba(194, 233, 245, 0.22) 36%, rgba(194, 233, 245, 0.12) 54%, rgba(194, 233, 245, 0.05) 70%, rgba(194, 233, 245, 0.00) 86% ), radial-gradient( ellipse at 58% 56%, rgba(194, 233, 245, 0.24) 0%, rgba(194, 233, 245, 0.10) 38%, rgba(194, 233, 245, 0.00) 72% );
        filter: blur(9px);
        transform: translate(2px, 8px);
        opacity: 0.95;
    }

/* Main circle / Frame 4 */
.shaylin-ai-avatar__circle {
    position: absolute;
    left: 4px;
    top: 5px;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 1px solid #16476a;
    background: linear-gradient(145deg, #7a879a 0%, #748194 42%, #6f7b8d 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -10px 18px rgba(23, 35, 49, 0.08);
}

    /* Soft rotating animated layer */
    .shaylin-ai-avatar__circle::before {
        content: "";
        position: absolute;
        inset: -22%;
        z-index: 0;
        border-radius: 50%;
        background: conic-gradient( from 0deg, rgba(255, 255, 255, 0.16) 0deg, rgba(255, 255, 255, 0.06) 55deg, rgba(122, 155, 199, 0.08) 120deg, rgba(255, 255, 255, 0.00) 185deg, rgba(255, 255, 255, 0.10) 255deg, rgba(119, 144, 180, 0.08) 320deg, rgba(255, 255, 255, 0.16) 360deg );
        opacity: 0.7;
        animation: shaylinAvatarRotate 18s linear infinite;
        transform-origin: center;
    }

    /* Light shaping over the bg */
    .shaylin-ai-avatar__circle::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        border-radius: 50%;
        background: radial-gradient( circle at 34% 28%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.10) 16%, rgba(255, 255, 255, 0.00) 42% ), radial-gradient( circle at 72% 74%, rgba(40, 52, 70, 0.16) 0%, rgba(40, 52, 70, 0.00) 48% );
    }

/* Face image */
.shaylin-ai-avatar__face {
    position: absolute;
    left: 0%;
    top: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center top;
    user-select: none;
    -webkit-user-drag: none;
    transform: translateZ(0);
}

@keyframes shaylinAvatarRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}