/* =====================================================
   Yewole Stand-In Services – Modern Stylesheet v2.0
   Author: Outtabox-Tech
   ===================================================== */

/* ---------- 1. CSS Variables / Theme ---------- */
:root {
    --c-primary: #0b646d;
    --c-primary-600: #0a5860;
    --c-primary-700: #084952;
    --c-primary-50: #e7f3f4;
    --c-accent: #dcaa4b;
    --c-accent-600: #c8932f;
    --c-accent-50: #fbf3e3;

    --c-dark: #0a1f2e;
    --c-ink: #1a2a36;
    --c-text: #475569;
    --c-muted: #7b8794;

    --c-bg: #ffffff;
    --c-bg-soft: #f7fafb;
    --c-bg-alt: #f1f5f6;
    --c-border: #e6ecee;
    --c-border-strong: #d1dade;

    --grad-primary: linear-gradient(135deg, #0b646d 0%, #0a4a52 100%);
    --grad-accent: linear-gradient(135deg, #dcaa4b 0%, #c8932f 100%);
    --grad-hero: linear-gradient(135deg, #0b646d 0%, #0a4a52 50%, #084952 100%);
    --grad-text: linear-gradient(135deg, #dcaa4b 0%, #f3c878 50%, #dcaa4b 100%);

    --shadow-xs: 0 1px 2px rgba(11, 100, 109, 0.06);
    --shadow-sm: 0 2px 8px rgba(11, 100, 109, 0.08);
    --shadow-md: 0 8px 24px rgba(11, 100, 109, 0.10);
    --shadow-lg: 0 20px 48px rgba(11, 100, 109, 0.14);
    --shadow-xl: 0 30px 80px rgba(11, 100, 109, 0.20);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --container: 1200px;
    --header-h: 78px;
    --topbar-h: 38px;

    --t-fast: 0.18s ease;
    --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent-600); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); color: var(--c-ink); margin: 0; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
input, textarea, select, button { font-family: inherit; }

/* ---------- 3. Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.site-main { display: block; min-height: 60vh; }

/* ---------- 4. Buttons ---------- */
.btn-solid, .btn-ghost, .btn-ghost-dark, .btn-solid-light, .btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all var(--t-base);
    white-space: nowrap;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn-solid {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(11, 100, 109, 0.25);
}
.btn-solid:hover {
    background: var(--c-primary-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 100, 109, 0.32);
}
.btn-ghost {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.btn-ghost:hover {
    background: var(--c-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-ghost-dark {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-border-strong);
}
.btn-ghost-dark:hover {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
    transform: translateY(-2px);
}
.btn-solid-light {
    background: #fff;
    color: var(--c-primary);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.btn-solid-light:hover {
    background: var(--c-accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn-ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- 5. Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-inner {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--c-primary);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.preloader-ring:nth-child(2) {
    inset: 12px;
    border-top-color: var(--c-accent);
    animation-duration: 1.6s;
    animation-direction: reverse;
}
.preloader-ring:nth-child(3) {
    inset: 24px;
    border-top-color: var(--c-primary-700);
    animation-duration: 2s;
}
.preloader-text {
    font-family: var(--font-sans);
    font-weight: 800;
    color: var(--c-primary);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 6. Top Bar ---------- */
.topbar {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.83rem;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar-left a, .topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--t-fast);
}
.topbar-left a:hover { color: var(--c-accent); }
.topbar-left i { color: var(--c-accent); font-size: 0.9rem; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.topbar-right a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--t-fast);
}
.topbar-right a:hover {
    color: var(--c-dark);
    background: var(--c-accent);
    transform: translateY(-2px);
}

/* ---------- 7. Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    height: var(--header-h);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--c-primary-50);
    padding: 4px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-family: var(--font-sans);
    font-weight: 800;
    color: var(--c-primary);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}
.brand-tag {
    font-size: 0.72rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* Primary Nav (desktop) */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    justify-content: flex-end;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list > li { position: relative; }
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--c-ink);
    font-weight: 600;
    font-size: 0.94rem;
    border-radius: var(--radius-sm);
    transition: all var(--t-fast);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--c-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--t-base);
}
.nav-link:hover, .nav-link.active {
    color: var(--c-primary);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link-accent {
    color: var(--c-accent-600);
    font-weight: 700;
}
.nav-link-accent i { font-size: 0.85rem; }
.nav-link-accent::after { background: var(--c-accent-600); }
.nav-link-accent:hover { color: var(--c-accent-600); }
.nav-caret {
    font-size: 0.7rem;
    transition: transform var(--t-base);
    color: var(--c-muted);
}

/* Submenu (dropdown) */
.nav-item-has-children:hover > .submenu,
.nav-item-has-children:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-item-has-children:hover > .nav-link .nav-caret { transform: rotate(180deg); }
.submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-border);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--t-base);
    z-index: 50;
}
.submenu li { display: block; }
.submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--c-ink);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--t-fast);
    position: relative;
}
.submenu a i { color: var(--c-accent); width: 18px; text-align: center; }
.submenu a:hover {
    background: var(--c-primary-50);
    color: var(--c-primary);
}
.submenu-divider {
    height: 1px;
    background: var(--c-border);
    margin: 6px 0;
}
.logout-link { color: #c0392b !important; }
.logout-link i { color: #c0392b !important; }

/* Account nav variant */
.nav-account .nav-account-link {
    background: var(--c-primary-50);
    color: var(--c-primary);
    padding: 6px 14px 6px 6px;
    border-radius: var(--radius-pill);
}
.nav-account .nav-account-link:hover { background: var(--c-primary); color: #fff; }
.nav-account .nav-account-link:hover::after { display: none; }
.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-sans);
}
.nav-badge {
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.5;
}
.submenu-badge {
    margin-left: auto;
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 700;
}

/* CTA buttons in nav (desktop) */
.nav-cta-desktop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}
.nav-cta-mobile { display: none; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: background var(--t-fast);
    z-index: 60;
}
.menu-toggle:hover { background: var(--c-bg-soft); }
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: all var(--t-base);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 8. Hero ---------- */
.hero {
    position: relative;
    background: var(--grad-hero);
    color: #fff;
    padding: 90px 0 110px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.hero-blob-1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.5), transparent 70%);
    top: -100px; right: -80px;
}
.hero-blob-2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    bottom: -100px; left: -80px;
}
.hero-blob-3 {
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.3), transparent 70%);
    bottom: 30%; right: 20%;
}
.hero-grid {
    position: absolute;
    inset: 0;
    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);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--c-primary-50);
    color: var(--c-primary);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}
.eyebrow-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(8px);
}
.eyebrow-light .eyebrow-dot { background: var(--c-accent); }
.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 170, 75, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(220, 170, 75, 0); }
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.text-accent { color: var(--c-accent); }
.text-grad {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.92rem;
}
.hero-trust i { color: var(--c-accent); }

/* Hero visual */
.hero-visual {
    position: relative;
    height: 460px;
}
.hero-card-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}
.hero-card-main img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero-card-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, var(--c-accent) 25%, transparent 50%, var(--c-accent) 75%, transparent 100%);
    filter: blur(30px);
    opacity: 0.5;
    animation: spin 8s linear infinite;
    z-index: -1;
}
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-14px); }
}
.hero-float {
    position: absolute;
    background: #fff;
    color: var(--c-ink);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    animation: floatB 5s ease-in-out infinite;
}
.hero-float strong {
    display: block;
    font-size: 0.95rem;
    color: var(--c-ink);
    font-weight: 700;
}
.hero-float small {
    display: block;
    font-size: 0.75rem;
    color: var(--c-muted);
}
.float-ico {
    width: 42px;
    height: 42px;
    background: var(--c-primary-50);
    color: var(--c-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.float-ico.accent { background: var(--c-accent-50); color: var(--c-accent-600); }
.float-ico.dark { background: #0a1f2e; color: var(--c-accent); }
.hero-float-1 { top: 30px; left: -20px; animation-delay: 0s; }
.hero-float-2 { bottom: 50px; right: -20px; animation-delay: 1.5s; }
.hero-float-3 { top: 50%; right: -10px; animation-delay: 3s; }
@keyframes floatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- 9. Sections ---------- */
.section {
    padding: 90px 0;
    position: relative;
}
.section-alt { background: var(--c-bg-soft); }
.section-dark {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}
.section-head {
    margin-bottom: 50px;
    max-width: 720px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head .btn-ghost-dark { flex-shrink: 0; }
.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.section-head .eyebrow { margin-bottom: 12px; }
.section-title {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 800;
    color: var(--c-ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.section-title.light { color: #fff; }
.section-sub {
    font-size: 1.05rem;
    color: var(--c-text);
    margin-top: 14px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.section-sub.light { color: rgba(255, 255, 255, 0.78); }
.section-cta { text-align: center; margin-top: 40px; }

/* ---------- 10. Stats Bar ---------- */
.stats-bar {
    background: #fff;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    gap: 20px;
}
.stat { text-align: center; padding: 10px; position: relative; }
.stat + .stat::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--c-border);
}
.stat-num {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}
.stat-label {
    color: var(--c-muted);
    font-size: 0.92rem;
    margin-top: 6px;
    font-weight: 500;
}

/* ---------- 11. About Preview ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform var(--t-slow);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-deco {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 100, 109, 0.2), transparent 50%);
    pointer-events: none;
}
.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--c-accent);
    color: #fff;
    padding: 22px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 200px;
}
.about-badge-num {
    font-family: var(--font-sans);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}
.about-badge-text {
    font-size: 0.8rem;
    margin-top: 4px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}
.about-content p {
    color: var(--c-text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}
.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-ink);
    font-weight: 500;
    font-size: 0.92rem;
}
.about-feat i { color: var(--c-primary); font-size: 1rem; }

/* ---------- 12. Mission / Vision / Values ---------- */
.mvv-bg { position: absolute; inset: 0; pointer-events: none; }
.mvv-blob {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.18), transparent 70%);
    border-radius: 50%;
    top: -150px; right: -100px;
    filter: blur(60px);
}
.mvv-blob.two {
    top: auto; right: auto;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(11, 100, 109, 0.4), transparent 70%);
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.mvv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--t-base);
}
.mvv-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: var(--c-accent);
}
.mvv-ico {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: rgba(220, 170, 75, 0.15);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.mvv-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.mvv-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------- 13. Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    transition: all var(--t-base);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}
.service-card.featured::before { background: var(--grad-accent); transform: scaleX(1); }
.service-pill {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.service-ico {
    width: 70px; height: 70px;
    border-radius: var(--radius-md);
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all var(--t-base);
}
.service-card.featured .service-ico {
    background: rgba(255, 255, 255, 0.15);
    color: var(--c-accent);
}
.service-card:hover .service-ico {
    background: var(--c-primary);
    color: #fff;
    transform: rotate(-8deg);
}
.service-tag {
    display: inline-block;
    background: var(--c-accent-50);
    color: var(--c-accent-600);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.service-card.featured .service-tag {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.service-card.featured h3 { color: #fff; }
.service-card p {
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.service-card.featured p { color: rgba(255, 255, 255, 0.85); }
.service-list {
    margin: 0 0 22px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--c-text);
}
.service-card.featured .service-list li { color: rgba(255, 255, 255, 0.9); }
.service-list i { color: var(--c-accent); font-size: 0.85rem; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 0.92rem;
    transition: gap var(--t-base);
}
.service-link:hover { gap: 14px; color: var(--c-accent-600); }
.service-card.featured .service-link { color: var(--c-accent); }

/* ---------- 14. Steps ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    transition: all var(--t-base);
    position: relative;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-primary);
}
.step-num {
    position: absolute;
    top: 16px; right: 22px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-accent);
    opacity: 0.4;
}
.step-ico {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: all var(--t-base);
}
.step:hover .step-ico {
    background: var(--c-primary);
    color: #fff;
    transform: scale(1.08);
}
.step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--c-ink);
}
.step p {
    color: var(--c-text);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ---------- 15. Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--c-border);
    transition: all var(--t-base);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-accent);
}
.why-ico {
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--c-primary-50), var(--c-accent-50));
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--c-ink);
}
.why-card p {
    color: var(--c-text);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------- 16. Testimonials ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.t-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--t-base);
    position: relative;
}
.t-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 22px;
    font-size: 4rem;
    color: var(--c-accent);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}
.t-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}
.t-stars {
    color: var(--c-accent);
    margin-bottom: 14px;
    font-size: 0.92rem;
    letter-spacing: 2px;
}
.t-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 22px;
    font-size: 0.97rem;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.t-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}
.t-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}
.t-author small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

/* ---------- 17. CTA Section ---------- */
.cta-section { padding: 60px 0 100px; }
.cta-card {
    background: var(--grad-hero);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta-card::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.3), transparent 70%);
    border-radius: 50%;
    top: -150px; right: -100px;
    pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
    max-width: 500px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

/* ---------- 18. News Section ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
    color: inherit;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.news-card:hover .news-readmore { color: var(--c-accent-600); gap: 12px; }
.news-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--c-bg-alt);
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.news-card:hover .news-thumb img { transform: scale(1.08); }
.news-date {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(11, 100, 109, 0.92);
    color: #fff;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.news-body h3 {
    font-size: 1.08rem;
    line-height: 1.4;
    color: var(--c-ink);
    margin-bottom: 10px;
    transition: color var(--t-fast);
}
.news-card:hover h3 { color: var(--c-primary); }
.news-body p {
    color: var(--c-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}
.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: auto;
    transition: all var(--t-base);
}

/* ---------- 19. Footer ---------- */
.site-footer {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-ornament {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    display: flex;
}
.footer-ornament span {
    flex: 1;
    background: var(--c-primary);
    opacity: 0.4;
}
.footer-ornament span:nth-child(1) { background: var(--c-accent); opacity: 0.8; flex: 0 0 30%; }
.footer-ornament span:nth-child(2) { background: var(--c-primary); flex: 0 0 20%; }
.footer-ornament span:nth-child(3) { background: var(--c-accent); opacity: 0.6; flex: 0 0 15%; }
.footer-ornament span:nth-child(4) { background: var(--c-primary); opacity: 0.4; }

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}
.footer-logo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.93rem;
    margin-bottom: 20px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social a:hover {
    background: var(--c-accent);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--c-accent);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--c-accent);
    border-radius: 2px;
}
.footer-col ul li {
    padding: 6px 0;
}
.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--t-fast);
    font-size: 0.92rem;
}
.footer-col ul a i {
    color: var(--c-accent);
    font-size: 0.7rem;
    transition: transform var(--t-base);
}
.footer-col ul a:hover {
    color: var(--c-accent);
    transform: translateX(4px);
}
.footer-col ul a:hover i { transform: translateX(3px); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.contact-ico {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}
.footer-contact small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.footer-contact a, .footer-contact span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--c-accent); }

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.newsletter-input-wrap i {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}
.newsletter-input-wrap input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    color: #fff;
    font-size: 0.9rem;
    transition: all var(--t-fast);
}
.newsletter-input-wrap input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-input-wrap input:focus {
    outline: none;
    border-color: var(--c-accent);
    background: rgba(255, 255, 255, 0.1);
}
.newsletter-form .btn-solid {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(220, 170, 75, 0.3);
    justify-content: center;
}
.newsletter-form .btn-solid:hover { background: var(--c-accent-600); }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--c-accent); font-weight: 600; }
.footer-heart {
    color: #e74c3c;
    display: inline-block;
    animation: beat 1.5s ease-in-out infinite;
}
@keyframes beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-bottom-links a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom-links a:hover { color: var(--c-accent); }
.footer-bottom-links .dot {
    width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* ---------- 20. Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    left: 22px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px 12px 14px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--t-base);
}
.whatsapp-float:hover {
    background: #1ebe5a;
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
    font-size: 1.5rem;
}
.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    background: #25D366;
    animation: pulseWa 2s ease-out infinite;
    z-index: -1;
}
@keyframes pulseWa {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- 21. Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--t-base);
    z-index: 998;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--c-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- 22. Reveal Animation ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- 23. Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { height: 380px; max-width: 420px; margin: 0 auto; }
    .hero-title { font-size: clamp(2rem, 5vw, 3.2rem); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat + .stat::before { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .mvv-grid, .services-grid, .why-grid, .testimonial-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand, .footer-newsletter { grid-column: span 3; }
    .footer-newsletter { max-width: 480px; }
    .cta-card { grid-template-columns: 1fr; text-align: center; padding: 44px 32px; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }
    .container { padding: 0 18px; }
    .topbar { display: none; }
    .site-header { top: 0; }
    .menu-toggle { display: inline-flex; }
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        right: 0;
        bottom: 0;
        width: min(86%, 360px);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 20px 18px 30px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform var(--t-base);
        overflow-y: auto;
        z-index: 99;
    }
    .primary-nav.open { transform: translateX(0); }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        margin-bottom: 16px;
    }
    .nav-link {
        width: 100%;
        padding: 14px 12px;
        justify-content: space-between;
        font-size: 1rem;
        border-bottom: 1px solid var(--c-border);
        border-radius: 0;
    }
    .nav-link::after { display: none; }
    .nav-item-has-children .nav-link .nav-caret { transition: transform var(--t-base); }
    .nav-item-has-children.open > .nav-link .nav-caret { transform: rotate(180deg); }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--c-bg-soft);
        margin: 4px 0 8px;
        padding: 6px 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: var(--radius-sm);
    }
    .nav-item-has-children.open .submenu {
        max-height: 600px;
    }
    .submenu a { padding: 10px 12px; }
    .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 4px;
    }
    .nav-cta-mobile a { padding: 12px; text-align: center; }
    .nav-cta-desktop { display: none; }
    .nav-account .nav-account-link { width: 100%; }
    .nav-account .nav-account-link::after { display: none; }

    .hero { padding: 50px 0 80px; }
    .hero-visual { height: 320px; }
    .hero-card-main { width: 240px; height: 240px; }
    .hero-float { padding: 10px 14px; min-width: 0; }
    .hero-float strong { font-size: 0.85rem; }
    .hero-float small { font-size: 0.7rem; }
    .float-ico { width: 36px; height: 36px; font-size: 0.95rem; }
    .hero-float-1 { left: 0; top: 10px; }
    .hero-float-2 { right: 0; bottom: 30px; }
    .hero-float-3 { right: 0; top: 50%; }

    .stats-bar { margin-top: -30px; }
    .stats-grid { padding: 22px 18px; gap: 16px; }
    .stat-num { font-size: 1.6rem; }

    .section { padding: 60px 0; }
    .section-head { margin-bottom: 36px; }

    .mvv-grid, .services-grid, .why-grid, .testimonial-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-badge { right: 10px; bottom: 10px; padding: 14px 16px; }
    .about-badge-num { font-size: 1.8rem; }
    .about-badge-text { font-size: 0.7rem; }

    .cta-card { padding: 36px 22px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn-solid-light, .cta-actions .btn-ghost-light { width: 100%; justify-content: center; }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand, .footer-newsletter { grid-column: span 2; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .whatsapp-float { left: 14px; bottom: 14px; padding: 10px 14px; }
    .whatsapp-label { display: none; }
    .back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .hero-trust { gap: 14px; }
    .hero-trust li { font-size: 0.85rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions a { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand, .footer-newsletter { grid-column: span 1; }
    .brand-tag { display: none; }
    .nav-cta-mobile { display: flex; }
}

/* Body scroll lock helper */
body.no-scroll { overflow: hidden; }

/* =====================================================
   24. Page Hero (sub-pages like about, services, contact)
   ===================================================== */
.page-hero {
    position: relative;
    background: var(--grad-hero);
    color: #fff;
    padding: 80px 0 70px;
    overflow: hidden;
    text-align: center;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.35), transparent 70%);
    border-radius: 50%;
    top: -100px; right: -80px;
    filter: blur(40px);
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    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);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.page-hero-inner {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.page-hero h1 .text-accent { color: var(--c-accent); }
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.4); }
.breadcrumb .current { color: var(--c-accent); font-weight: 600; }

/* =====================================================
   25. Story / Content Blocks
   ===================================================== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }
.story-content h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.story-content p { color: var(--c-text); line-height: 1.8; margin-bottom: 14px; }
.story-content .eyebrow { margin-bottom: 12px; }
.story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}
.story-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.story-image:hover img { transform: scale(1.04); }
.story-image-deco {
    position: absolute;
    width: 180px; height: 180px;
    background: var(--c-accent);
    border-radius: var(--radius-lg);
    bottom: -30px; right: -30px;
    z-index: -1;
    opacity: 0.3;
}
.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.story-stat {
    background: var(--c-bg-soft);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border-left: 3px solid var(--c-accent);
}
.story-stat-num {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}
.story-stat-label {
    color: var(--c-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* =====================================================
   26. Service Tier Detail (services page)
   ===================================================== */
.tier-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    overflow: hidden;
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.tier-head {
    padding: 36px 30px 26px;
    text-align: center;
    position: relative;
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-border);
}
.tier-card.featured .tier-head {
    background: var(--c-primary);
    color: #fff;
    border-bottom-color: transparent;
}
.tier-ico {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
}
.tier-card.featured .tier-ico { background: var(--c-accent); color: #fff; }
.tier-card.tier-companion .tier-ico { color: #0b646d; }
.tier-card.tier-specialist .tier-ico { color: #c8932f; }
.tier-card.tier-bridge .tier-ico { color: #e07b39; }
.tier-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: var(--c-primary-50);
    color: var(--c-primary);
}
.tier-card.tier-companion .tier-pill { background: #e7f3f4; color: #0b646d; }
.tier-card.tier-specialist .tier-pill { background: #fbf3e3; color: #c8932f; }
.tier-card.tier-bridge .tier-pill { background: #fef0e8; color: #c95d1a; }
.tier-card.featured .tier-pill { background: rgba(255, 255, 255, 0.2); color: #fff; }
.tier-head h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--c-ink);
}
.tier-card.featured .tier-head h3 { color: #fff; }
.tier-featured-flag {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tier-body {
    padding: 26px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tier-body p {
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.tier-features {
    margin: 0 0 18px;
    flex: 1;
}
.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--c-text);
    font-size: 0.92rem;
    border-bottom: 1px dashed var(--c-border);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li i {
    color: var(--c-accent);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.tier-best-for {
    background: var(--c-primary-50);
    border-left: 3px solid var(--c-primary);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--c-ink);
    margin-bottom: 20px;
}
.tier-card.featured .tier-best-for {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border-left-color: var(--c-accent);
}
.tier-best-for strong { color: var(--c-primary); }
.tier-card.featured .tier-best-for strong { color: var(--c-accent); }
.tier-actions { margin-top: auto; }
.tier-actions .btn-solid, .tier-actions .btn-ghost { width: 100%; justify-content: center; }
.tier-card.featured .tier-actions .btn-solid { background: var(--c-accent); }
.tier-card.featured .tier-actions .btn-solid:hover { background: var(--c-accent-600); }

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

/* Security Triad */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.security-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    border-top: 4px solid var(--c-primary);
    padding: 32px 28px;
    transition: all var(--t-base);
}
.security-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.security-card.alt { border-top-color: var(--c-accent); }
.security-card .s-ico {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.security-card.alt .s-ico { background: var(--c-accent-50); color: var(--c-accent-600); }
.security-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.security-card > p { color: var(--c-text); margin-bottom: 18px; line-height: 1.7; font-size: 0.95rem; }
.security-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
}
.security-card ul li:last-child { border-bottom: none; }
.security-card ul li i {
    color: var(--c-primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.security-card.alt ul li i { color: var(--c-accent-600); }
.security-card ul li strong { color: var(--c-ink); }

/* Ops Standards */
.ops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.ops-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--t-base);
    height: 100%;
}
.ops-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-primary); }
.ops-ico {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: all var(--t-base);
}
.ops-card:hover .ops-ico { background: var(--c-primary); color: #fff; transform: scale(1.08); }
.ops-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.ops-card p { color: var(--c-text); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* Booking Types */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.booking-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    color: #fff;
    transition: all var(--t-base);
}
.booking-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-6px); border-color: var(--c-accent); }
.booking-ico {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(220, 170, 75, 0.18);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
}
.booking-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.booking-card p { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.booking-pill {
    display: inline-block;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =====================================================
   27. Contact page
   ===================================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-border);
    transition: all var(--t-base);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--c-primary); }
.contact-info-ico {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.contact-info-card.accent .contact-info-ico { background: var(--c-accent-50); color: var(--c-accent-600); }
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-info-card p {
    color: var(--c-text);
    margin: 0;
    line-height: 1.7;
    font-size: 0.92rem;
}
.contact-info-card a { color: var(--c-primary); font-weight: 500; }
.contact-info-card a:hover { color: var(--c-accent-600); }

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: flex-start;
}
.contact-aside h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 14px; }
.contact-aside p { color: var(--c-text); line-height: 1.8; margin-bottom: 24px; }
.contact-channels { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    transition: all var(--t-base);
}
.contact-channel:hover { background: #fff; box-shadow: var(--shadow-sm); border-color: var(--c-primary); }
.contact-channel .ch-ico {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.contact-channel.accent .ch-ico { background: var(--c-accent); }
.contact-channel .ch-info small {
    display: block;
    color: var(--c-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.contact-channel .ch-info strong,
.contact-channel .ch-info a {
    color: var(--c-ink);
    font-size: 0.95rem;
    font-weight: 600;
}
.contact-channel .ch-info a:hover { color: var(--c-primary); }

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.1), transparent 70%);
    border-radius: 50%;
    top: -80px; right: -80px;
    pointer-events: none;
}
.contact-form {
    position: relative;
    z-index: 2;
}
.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.contact-form > p {
    color: var(--c-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.form-group .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.form-group .input-wrap i {
    position: absolute;
    left: 14px;
    color: var(--c-muted);
    font-size: 0.95rem;
}
.form-control-modern {
    width: 100%;
    padding: 13px 14px 13px 40px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--c-ink);
    background: #fff;
    transition: all var(--t-fast);
    font-family: inherit;
}
textarea.form-control-modern {
    padding: 14px 14px 14px 40px;
    min-height: 130px;
    resize: vertical;
}
.form-control-modern:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.12);
}
.form-control-modern::placeholder { color: var(--c-muted); }
.form-submit { margin-top: 8px; }
.form-submit .btn-solid { width: 100%; justify-content: center; padding: 14px 28px; }
.form-status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: #e8f5e9;
    color: #1b5e20;
    font-weight: 500;
    font-size: 0.92rem;
    display: none;
}
.form-status.show { display: block; }

/* FAQ-style quick info */
.quick-info {
    margin-top: 24px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-md);
    padding: 22px;
    border-left: 4px solid var(--c-accent);
}
.quick-info h4 {
    font-size: 0.95rem;
    color: var(--c-ink);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.quick-info h4 i { color: var(--c-accent); }
.quick-info p {
    color: var(--c-text);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive additions */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image { max-width: 480px; margin: 0 auto; }
    .tiers-grid, .security-grid, .booking-grid { grid-template-columns: 1fr 1fr; }
    .ops-grid { grid-template-columns: 1fr 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; max-width: 480px; margin: -40px auto 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .page-hero { padding: 60px 0 80px; }
    .tiers-grid, .security-grid, .booking-grid, .ops-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 26px 20px; }
    .story-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .breadcrumb { font-size: 0.8rem; padding: 5px 12px; }
}

/* =====================================================
   28. How It Works — Timeline
   ===================================================== */
.role-tabs {
    display: inline-flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 18px;
    flex-wrap: wrap;
}
.role-tab {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--t-base);
    cursor: pointer;
}
.role-tab:hover { color: #fff; }
.role-tab.active {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(220, 170, 75, 0.35);
}

.timeline {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--c-primary) 8%, var(--c-primary) 92%, transparent);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 50px 50px;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-marker {
    position: absolute;
    top: 14px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px #fff, 0 0 0 9px var(--c-primary), var(--shadow-md);
    z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-marker { right: -26px; }
.timeline-item:nth-child(even) .timeline-marker { left: -26px; }
.timeline-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    position: relative;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--c-primary); }
.timeline-card::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 16px; height: 16px;
    background: #fff;
    border-top: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
}
.timeline-item:nth-child(odd) .timeline-card::before {
    right: -9px;
    transform: rotate(45deg);
}
.timeline-item:nth-child(even) .timeline-card::before {
    left: -9px;
    transform: rotate(-135deg);
}
.timeline-ico {
    width: 54px; height: 54px;
    border-radius: var(--radius-md);
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.timeline-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--c-ink);
}
.timeline-card p {
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.timeline-list {
    display: inline-block;
    text-align: left;
    margin: 6px 0 14px;
}
.timeline-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: var(--c-text);
    font-size: 0.88rem;
}
.timeline-list i { color: var(--c-accent); font-size: 0.85rem; }

@media (max-width: 768px) {
    .timeline::before { left: 22px; transform: none; }
    .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 30px 60px;
    }
    .timeline-marker, .timeline-item:nth-child(odd) .timeline-marker, .timeline-item:nth-child(even) .timeline-marker {
        left: -4px;
        right: auto;
        width: 44px; height: 44px;
        font-size: 0.95rem;
    }
    .timeline-card::before,
    .timeline-item:nth-child(odd) .timeline-card::before,
    .timeline-item:nth-child(even) .timeline-card::before {
        left: -9px; right: auto;
        transform: rotate(-135deg);
    }
    .timeline-ico { margin-bottom: 10px; }
}

/* Caregiver steps grid (uses existing steps-grid + step styles) */

/* =====================================================
   29. FAQ Accordion
   ===================================================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--t-base);
}
.faq-item:hover { border-color: var(--c-primary); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    color: var(--c-ink);
    font-size: 1rem;
    transition: color var(--t-fast);
    cursor: pointer;
}
.faq-question:hover { color: var(--c-primary); }
.faq-question .faq-ico {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all var(--t-base);
}
.faq-item.open .faq-ico { background: var(--c-accent); color: #fff; transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--c-text);
    line-height: 1.75;
    font-size: 0.95rem;
    border-top: 1px solid var(--c-border);
    padding-top: 16px;
    margin-top: 4px;
}

/* =====================================================
   30. Team Cards
   ===================================================== */
.team-section {
    background: var(--c-bg-soft);
    padding: 80px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
}
.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    text-align: center;
    position: relative;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--c-primary); }
.team-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-primary-50), var(--c-accent-50));
}
.team-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.team-card:hover .team-img img { transform: scale(1.08); }
.team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 100, 109, 0.7));
    opacity: 0;
    transition: opacity var(--t-base);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}
.team-card:hover .team-img-overlay { opacity: 1; }
.team-social {
    display: flex;
    gap: 10px;
    transform: translateY(10px);
    transition: transform var(--t-base);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-fast);
}
.team-social a:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); }
.team-body { padding: 22px 20px 26px; }
.team-body h3 { font-size: 1.15rem; color: var(--c-ink); margin-bottom: 4px; }
.team-role {
    display: inline-block;
    background: var(--c-accent-50);
    color: var(--c-accent-600);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin: 6px 0 10px;
    letter-spacing: 0.04em;
}
.team-body p { color: var(--c-text); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* =====================================================
   31. Book Care Form (multi-section)
   ===================================================== */
.booking-page-hero {
    background: var(--grad-hero);
    color: #fff;
    padding: 70px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.booking-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    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);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.booking-page-hero .container { position: relative; z-index: 2; }
.booking-page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 10px; }
.booking-page-hero .breadcrumb { margin-top: 14px; }

.booking-wrap {
    max-width: 920px;
    margin: -60px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 5;
}
.booking-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--c-border);
}
.booking-form-head {
    padding: 30px 36px 20px;
    background: linear-gradient(135deg, var(--c-bg-soft), #fff);
    border-bottom: 1px solid var(--c-border);
}
.booking-form-head h2 { font-size: 1.5rem; margin-bottom: 4px; }
.booking-form-head p { color: var(--c-muted); margin: 0; font-size: 0.92rem; }
.booking-form-body { padding: 30px 36px 36px; }
.booking-alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid;
}
.booking-alert.danger { background: #fdecea; color: #8b1a1a; border-color: #e74c3c; }
.booking-alert.success { background: #e8f5e9; color: #1b5e20; border-color: #2e7d32; }
.booking-alert.warning { background: #fff8e1; color: #8a5a00; border-color: #f5a623; }
.booking-alert i { font-size: 1.1rem; }

.booking-section {
    margin-bottom: 30px;
    padding-bottom: 28px;
    border-bottom: 1px dashed var(--c-border);
}
.booking-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.booking-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-primary);
    font-weight: 700;
    margin-bottom: 16px;
}
.booking-section-title .step-pill {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}
.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.booking-row-3 { grid-template-columns: repeat(3, 1fr); }
.booking-row-1 { grid-template-columns: 1fr; }
.booking-field { margin-bottom: 0; }
.booking-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.booking-field small.hint {
    display: block;
    color: var(--c-muted);
    font-size: 0.78rem;
    margin-top: 6px;
}
.input-wrap-modern {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrap-modern > i {
    position: absolute;
    left: 14px;
    color: var(--c-muted);
    font-size: 0.92rem;
    z-index: 1;
    pointer-events: none;
}
.input-modern,
.select-modern,
.textarea-modern {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--c-ink);
    background: #fff;
    transition: all var(--t-fast);
    font-family: inherit;
}
.select-modern { padding-left: 14px; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8794' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }
.textarea-modern { padding: 12px 14px; min-height: 80px; resize: vertical; }
.input-modern:focus,
.select-modern:focus,
.textarea-modern:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.12);
}
.input-modern::placeholder,
.textarea-modern::placeholder { color: var(--c-muted); }

.day-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.day-checkbox {
    position: relative;
    cursor: pointer;
    user-select: none;
}
.day-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.day-checkbox span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 40px;
    padding: 0 12px;
    background: var(--c-bg-soft);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--c-ink);
    font-size: 0.85rem;
    transition: all var(--t-fast);
}
.day-checkbox:hover span { border-color: var(--c-primary); }
.day-checkbox input:checked + span {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

.booking-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--c-border);
}
.booking-actions .btn-solid { flex: 1; justify-content: center; }

@media (max-width: 768px) {
    .booking-form-head, .booking-form-body { padding: 22px 20px; }
    .booking-row, .booking-row-3 { grid-template-columns: 1fr; }
    .booking-actions { flex-direction: column; }
    .booking-actions .btn-solid, .booking-actions .btn-ghost { width: 100%; }
}

/* =====================================================
   32. Trust strip (dark stats)
   ===================================================== */
.trust-strip {
    background: var(--grad-hero);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.trust-strip::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.3), transparent 70%);
    border-radius: 50%;
    top: -150px; right: -100px;
    pointer-events: none;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.trust-item { text-align: center; padding: 14px; }
.trust-item .trust-ico {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.trust-item h3 {
    color: var(--c-accent);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.trust-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   33. Auth Pages (split layout)
   ===================================================== */
.auth-page {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: stretch;
    background: var(--c-bg-soft);
}
.auth-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    width: 100%;
    min-height: calc(100vh - 78px);
}
.auth-info {
    background: var(--grad-hero);
    color: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.auth-info::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.3), transparent 70%);
    border-radius: 50%;
    top: -120px; left: -120px;
    filter: blur(40px);
    pointer-events: none;
}
.auth-info::after {
    content: '';
    position: absolute;
    inset: 0;
    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);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}
.auth-info-inner { position: relative; z-index: 2; max-width: 480px; }
.auth-info h1 {
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.auth-info h1 .text-accent { color: var(--c-accent); }
.auth-info p.lead { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.auth-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}
.auth-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.92);
}
.auth-perk .ap-ico {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.auth-perk strong { color: #fff; display: block; font-size: 0.95rem; margin-bottom: 2px; }
.auth-perk small { color: rgba(255, 255, 255, 0.7); font-size: 0.82rem; }
.auth-trust-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.auth-trust-strip .dots { color: var(--c-accent); letter-spacing: 4px; }

.auth-form-side {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.auth-form-wrap {
    width: 100%;
    max-width: 480px;
}
.auth-form-head {
    text-align: center;
    margin-bottom: 30px;
}
.auth-form-head h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.auth-form-head p {
    color: var(--c-muted);
    margin: 0;
    font-size: 0.95rem;
}
.auth-form-head .auth-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.auth-form .form-group { margin-bottom: 14px; position: relative; }
.auth-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.auth-form .input-wrap-modern {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.auth-form .input-wrap-modern > i:not(.toggle-eye) {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-muted);
    font-size: 0.95rem;
    z-index: 1;
    pointer-events: none;
}
.auth-form .input-wrap-modern > .toggle-eye {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: auto !important;
    color: var(--c-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    z-index: 5;
    transition: color var(--t-fast);
    pointer-events: auto !important;
    background: transparent;
    border: none;
    cursor: pointer;
}
.auth-form .input-wrap-modern > .toggle-eye:hover { color: var(--c-primary); }
.auth-form .input-modern,
.auth-form .select-modern {
    flex: 1;
    width: 100%;
    min-width: 0;
    padding: 12px 48px 12px 42px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--c-ink);
    background: #fff;
    transition: all var(--t-fast);
    font-family: inherit;
}
.auth-form .select-modern {
    padding-left: 14px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8794' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
}
.auth-form .input-modern:focus,
.auth-form .select-modern:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.12);
}
.auth-form .input-modern::placeholder { color: var(--c-muted); }
.toggle-eye {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: auto !important;
    color: var(--c-muted);
    cursor: pointer !important;
    font-size: 1rem;
    padding: 6px !important;
    z-index: 5 !important;
    transition: color var(--t-fast);
    pointer-events: auto !important;
    background: transparent;
    border: none;
    line-height: 1;
}
.toggle-eye:hover { color: var(--c-primary); }
.toggle-eye:hover { color: var(--c-primary); }
.auth-form .checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 18px;
}
.auth-form .checkbox-row input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--c-primary);
    cursor: pointer;
}
.auth-form .checkbox-row label {
    margin: 0;
    font-weight: 500;
    color: var(--c-text);
    font-size: 0.9rem;
    cursor: pointer;
}
.auth-form .checkbox-row a { color: var(--c-primary); font-weight: 600; }
.auth-form-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.auth-form-row-between .checkbox-row { margin: 0; }
.auth-form-row-between a { color: var(--c-primary); font-weight: 600; font-size: 0.88rem; }
.auth-form .btn-solid { width: 100%; justify-content: center; padding: 14px 28px; font-size: 1rem; }
.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: var(--c-muted);
    font-size: 0.85rem;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: var(--c-border);
    z-index: 0;
}
.auth-divider span {
    background: #fff;
    padding: 0 14px;
    position: relative;
    z-index: 1;
}
.auth-foot {
    text-align: center;
    margin-top: 22px;
    color: var(--c-muted);
    font-size: 0.92rem;
}
.auth-foot a { color: var(--c-primary); font-weight: 700; }

.auth-alert {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 4px solid;
}
.auth-alert.danger { background: #fdecea; color: #8b1a1a; border-color: #e74c3c; }
.auth-alert.success { background: #e8f5e9; color: #1b5e20; border-color: #2e7d32; }
.auth-alert i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.auth-alert ul { margin: 4px 0 0 0; padding-left: 18px; }
.auth-alert li { padding: 2px 0; }

@media (max-width: 1024px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-info { padding: 50px 30px; }
    .auth-form-side { padding: 40px 24px; }
}
@media (max-width: 768px) {
    .auth-info { padding: 40px 24px; text-align: center; }
    .auth-info-inner { max-width: 100%; }
    .auth-perk { text-align: left; }
    .auth-form .form-row { grid-template-columns: 1fr; }
    .auth-form-side { padding: 30px 18px; }
}

/* =====================================================
   34. Caregiver Application extras
   ===================================================== */
.cg-section {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    margin-bottom: 22px;
    border: 1px solid var(--c-border);
    border-top: 3px solid var(--c-primary);
    box-shadow: var(--shadow-sm);
}
.cg-section h3 {
    font-size: 1.1rem;
    color: var(--c-ink);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cg-section h3 i { color: var(--c-primary); }
.cg-section .sub {
    color: var(--c-muted);
    font-size: 0.88rem;
    margin: 0 0 18px;
}
.cg-divider { height: 1px; background: var(--c-border); margin: 14px 0; }

.tier-radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 4px;
}
.tier-radio {
    position: relative;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    cursor: pointer;
    transition: all var(--t-base);
    background: #fff;
    text-align: center;
}
.tier-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tier-radio:hover { border-color: var(--c-primary); background: var(--c-primary-50); }
.tier-radio.selected {
    border-color: var(--c-primary);
    background: var(--c-primary-50);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.1);
}
.tier-radio-title {
    display: block;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.tier-radio-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.qual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.qual-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--c-bg-soft);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--t-base);
}
.qual-card:hover { border-color: var(--c-primary); background: #fff; }
.qual-card input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--c-primary); cursor: pointer; }
.qual-card .q-text strong { display: block; color: var(--c-ink); font-size: 0.95rem; }
.qual-card .q-text small { color: var(--c-muted); font-size: 0.82rem; }

.file-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.file-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px dashed var(--c-border-strong);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    cursor: pointer;
    transition: all var(--t-fast);
}
.file-input-wrap:hover { border-color: var(--c-primary); background: var(--c-primary-50); }
.file-input-wrap i { color: var(--c-primary); margin-right: 8px; }
.file-input-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-input-wrap .file-name {
    color: var(--c-text);
    font-size: 0.88rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tier-radio-group { grid-template-columns: 1fr; }
    .qual-row { grid-template-columns: 1fr; }
    .file-row { grid-template-columns: 1fr; }
    .cg-section { padding: 22px 20px; }
}

/* =====================================================
   35. Dashboard
   ===================================================== */
.dashboard-page {
    background: var(--c-bg-soft);
    min-height: 100vh;
}
.dashboard-hero {
    background: var(--grad-hero);
    color: #fff;
    padding: 50px 0 90px;
    position: relative;
    overflow: hidden;
}
.dashboard-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.3), transparent 70%);
    border-radius: 50%;
    top: -150px; right: -100px;
    pointer-events: none;
}
.dashboard-hero .container { position: relative; z-index: 2; }
.dashboard-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 6px; }
.dashboard-hero .breadcrumb { margin-top: 6px; }

.profile-banner {
    background: linear-gradient(135deg, #fff, var(--c-bg-soft));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 26px 30px;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid var(--c-border);
}
.profile-banner .avatar-xl {
    width: 78px; height: 78px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: var(--shadow-sm);
}
.profile-banner .avatar-xl img { width: 100%; height: 100%; object-fit: cover; }
.profile-banner h2 { font-size: 1.4rem; margin-bottom: 4px; color: var(--c-ink); }
.profile-banner .meta-line { color: var(--c-muted); font-size: 0.9rem; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.profile-banner .meta-line .badge-pill {
    background: var(--c-primary-50);
    color: var(--c-primary);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.78rem;
}
.profile-banner .meta-line .badge-pill.gold { background: var(--c-accent-50); color: var(--c-accent-600); }
.profile-banner .meta-line .badge-pill.green { background: #e6f4ea; color: #1b5e20; }
.profile-banner .meta-line .badge-pill.red { background: #fdecea; color: #8b1a1a; }
.profile-banner .meta-line .badge-pill.amber { background: #fff3cd; color: #8a5a00; }
.profile-banner .actions { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }

.dashboard-body { padding: 30px 0 80px; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card.dark {
    background: var(--grad-hero);
    color: #fff;
    border: none;
}
.stat-card.gold {
    background: var(--grad-accent);
    color: #fff;
    border: none;
}
.stat-card .stat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 500;
}
.stat-card .stat-head small { color: rgba(0,0,0,0.5); font-size: 0.78rem; }
.stat-card.dark .stat-head small, .stat-card.gold .stat-head small { color: rgba(255, 255, 255, 0.85); }
.stat-card .stat-ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.stat-card .stat-ico.light { background: var(--c-primary-50); color: var(--c-primary); }
.stat-card .stat-ico.gold { background: var(--c-accent-50); color: var(--c-accent-600); }
.stat-card .stat-ico.green { background: #e6f4ea; color: #2e7d32; }
.stat-card .stat-ico.purple { background: #f0e8fa; color: #6a1b9a; }
.stat-card .stat-ico.orange { background: #ffeacc; color: #e65100; }
.stat-card .stat-value {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.1;
    color: inherit;
    margin: 4px 0 6px;
}
.stat-card .stat-foot {
    font-size: 0.82rem;
    margin-top: auto;
}
.stat-card.dark .stat-foot a, .stat-card.gold .stat-foot a { color: #fff; text-decoration: underline; }

@media (max-width: 1024px) {
    .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .stat-grid { grid-template-columns: 1fr; }
    .profile-banner { flex-direction: column; text-align: center; padding: 22px 20px; }
    .profile-banner .actions { margin-left: 0; justify-content: center; }
}

.dash-alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid;
    font-size: 0.92rem;
}
.dash-alert.success { background: #e8f5e9; color: #1b5e20; border-color: #2e7d32; }
.dash-alert.warning { background: #fff8e1; color: #8a5a00; border-color: #f5a623; }
.dash-alert.danger  { background: #fdecea; color: #8b1a1a; border-color: #e74c3c; }
.dash-alert i { font-size: 1.2rem; }
.dash-alert .close-x { margin-left: auto; cursor: pointer; opacity: 0.6; }
.dash-alert .close-x:hover { opacity: 1; }

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.quick-actions .qa-title {
    width: 100%;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-primary);
    font-weight: 700;
    margin-bottom: 4px;
}
.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: var(--c-bg-soft);
    color: var(--c-ink);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--t-fast);
    border: 1px solid var(--c-border);
}
.action-link:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); border-color: var(--c-primary); }
.action-link.primary { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.action-link.primary:hover { background: var(--c-primary-600); }
.action-link.gold { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.action-link.gold:hover { background: var(--c-accent-600); }
.action-link.info { background: #0c8fa0; color: #fff; border-color: #0c8fa0; }

.dash-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 22px;
}
.dash-card-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-bg-soft);
    flex-wrap: wrap;
    gap: 10px;
}
.dash-card-head h3 { font-size: 1.05rem; color: var(--c-ink); margin: 0; display: flex; align-items: center; gap: 8px; }
.dash-card-head h3 i { color: var(--c-primary); }
.dash-card-body { padding: 0; }
.dash-card-body.padded { padding: 22px; }

.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table thead th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-muted);
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-border);
    font-weight: 600;
}
.data-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
    font-size: 0.92rem;
    vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--c-bg-soft); }
.data-table .ref-cell { font-family: var(--font-sans); font-weight: 700; color: var(--c-primary); }
.data-table .muted { color: var(--c-muted); }

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.status-badge.pending    { background: #fff3cd; color: #8a5a00; }
.status-badge.confirmed  { background: #cce5ff; color: #004085; }
.status-badge.active     { background: #d4edda; color: #155724; }
.status-badge.completed  { background: #d1ecf1; color: #0c5460; }
.status-badge.cancelled  { background: #f8d7da; color: #721c24; }
.status-badge.approved   { background: #d4edda; color: #155724; }
.status-badge.rejected   { background: #f8d7da; color: #721c24; }
.status-badge.info       { background: var(--c-primary-50); color: var(--c-primary); }

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--c-muted);
}
.empty-state i { font-size: 2.5rem; color: var(--c-primary); margin-bottom: 12px; opacity: 0.4; }
.empty-state p { margin-bottom: 14px; }
.empty-state > a,
.empty-state a:not(.btn-solid):not(.btn-ghost):not(.btn-table) {
    color: var(--c-primary);
    font-weight: 700;
}
.empty-state a.btn-solid,
.empty-state a.btn-ghost,
.empty-state a.btn-table { color: #fff; }

.btn-table {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--c-bg-soft);
    color: var(--c-ink);
    transition: all var(--t-fast);
    border: 1px solid var(--c-border);
}
.btn-table:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.btn-table.gold { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.btn-table.gold:hover { background: var(--c-accent-600); }
.btn-table.outline { background: transparent; color: var(--c-text); }
.btn-table.outline:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* Next shift card (caregiver) */
.next-shift {
    background: linear-gradient(135deg, #fff, var(--c-bg-soft));
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    padding: 24px 26px;
    margin-bottom: 22px;
    border-left: 5px solid var(--c-primary);
    position: relative;
    overflow: hidden;
}
.next-shift.active { border-left-color: #28a745; }
.next-shift-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.next-shift-head h3 { font-size: 1rem; color: var(--c-ink); margin: 0; display: flex; align-items: center; gap: 8px; }
.next-shift-head h3 i { color: var(--c-primary); }
.next-shift-body { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.next-shift-info { flex: 1; min-width: 220px; }
.next-shift-info strong { color: var(--c-ink); font-size: 1.05rem; display: block; margin-bottom: 4px; }
.next-shift-info p { color: var(--c-muted); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.next-shift-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* =====================================================
   36. Profile Tabs
   ===================================================== */
.profile-section { padding: 0 0 80px; }
.profile-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.profile-header {
    background: linear-gradient(135deg, #fff, var(--c-bg-soft));
    border-radius: var(--radius-xl);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: -60px 0 24px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}
.profile-avatar-section { position: relative; }
.profile-avatar-wrapper {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: var(--shadow-md);
    position: relative;
    cursor: pointer;
}
.profile-avatar-wrapper img, .profile-avatar-wrapper .avatar-placeholder {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.avatar-placeholder {
    background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-sans); font-size: 2.2rem; font-weight: 800;
}
.avatar-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.45);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; opacity: 0; transition: opacity var(--t-base);
    border-radius: 50%;
}
.profile-avatar-wrapper:hover .avatar-overlay { opacity: 1; }
.btn-upload-avatar {
    margin-top: 10px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: var(--c-bg-soft);
    color: var(--c-ink);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--c-border);
    transition: all var(--t-fast);
}
.btn-upload-avatar:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.profile-meta { flex: 1; min-width: 240px; }
.profile-name { font-size: 1.5rem; font-weight: 800; color: var(--c-ink); margin-bottom: 4px; }
.profile-email { color: var(--c-muted); font-size: 0.95rem; margin: 0 0 6px; }
.profile-username { color: var(--c-text); font-size: 0.88rem; margin-bottom: 6px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.profile-since { color: var(--c-muted); font-size: 0.82rem; }

.tab-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 6px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.tab-btn {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tab-btn:hover { color: var(--c-primary); background: var(--c-bg-soft); }
.tab-btn.active { background: var(--c-primary); color: #fff; }
.tab-btn.active i { color: inherit; }
.tab-content { display: none; }
.tab-content.active { display: block; }

.profile-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
@media (max-width: 1024px) { .profile-stat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .profile-stat-grid { grid-template-columns: 1fr; } }
.profile-stat {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 14px;
}
.profile-stat .ps-ico {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.profile-stat .ps-val { font-family: var(--font-sans); font-weight: 800; color: var(--c-ink); font-size: 1.3rem; line-height: 1.1; }
.profile-stat .ps-lbl { color: var(--c-muted); font-size: 0.82rem; }

.form-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-border);
}
.form-section-title i { color: var(--c-primary); }

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}
.profile-form .form-group { margin-bottom: 14px; }
.profile-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
@media (max-width: 600px) { .profile-form .form-row { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
    .profile-header { flex-direction: column; text-align: center; margin-top: -40px; }
    .profile-username { justify-content: center; }
    .data-table thead { display: none; }
    .data-table tbody td { display: block; padding: 10px 16px; border: none; }
    .data-table tbody tr {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--c-border);
    }
    .data-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.72rem;
        text-transform: uppercase;
        color: var(--c-muted);
        margin-bottom: 4px;
        font-weight: 600;
    }
}

/* =====================================================
   37. Care Recipients
   ===================================================== */
.cr-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 26px;
    align-items: start;
}
.cr-form-card, .cr-list-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.cr-form-head, .cr-list-head {
    padding: 20px 26px;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-bg-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.cr-form-head h2, .cr-list-head h2 {
    font-size: 1.1rem;
    color: var(--c-ink);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cr-form-head h2 i, .cr-list-head h2 i { color: var(--c-primary); }
.cr-form-body, .cr-list-body { padding: 24px 26px; }
.cr-list-body { padding: 0; }

.cr-form .form-group { margin-bottom: 14px; }
.cr-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.cr-form .input-wrap-modern {
    position: relative;
    display: flex;
    align-items: center;
}
.cr-form .input-wrap-modern > i {
    position: absolute;
    left: 14px;
    color: var(--c-muted);
    font-size: 0.95rem;
    pointer-events: none;
}
.cr-form .input-modern,
.cr-form .select-modern,
.cr-form .textarea-modern {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--c-ink);
    background: #fff;
    transition: all var(--t-fast);
    font-family: inherit;
}
.cr-form .select-modern {
    padding-left: 14px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8794' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
}
.cr-form .textarea-modern { padding: 12px 14px; min-height: 90px; resize: vertical; }
.cr-form .input-modern:focus,
.cr-form .select-modern:focus,
.cr-form .textarea-modern:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.12);
}
.cr-form-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.cr-form-actions .btn-solid { flex: 1; justify-content: center; }

.recipient-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--c-border);
    transition: background var(--t-fast);
}
.recipient-card:last-child { border-bottom: none; }
.recipient-card:hover { background: var(--c-bg-soft); }
.recipient-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-sans);
    flex-shrink: 0;
}
.recipient-avatar.child { background: #fff0e6; color: #e65100; }
.recipient-avatar.elder { background: #f0e8fa; color: #6a1b9a; }
.recipient-avatar.other { background: var(--c-primary-50); color: var(--c-primary); }
.recipient-info { flex: 1; min-width: 0; }
.recipient-info h4 { font-size: 0.98rem; color: var(--c-ink); margin: 0 0 2px; }
.recipient-info p { font-size: 0.82rem; color: var(--c-muted); margin: 0; line-height: 1.4; }
.recipient-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

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

/* =====================================================
   38. Wallet
   ===================================================== */
.wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 26px;
    align-items: start;
}
@media (max-width: 1024px) { .wallet-grid { grid-template-columns: 1fr; } }

.wallet-balance-card {
    background: var(--grad-hero);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
}
.wallet-balance-card::before {
    content: '';
    position: absolute;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.4), transparent 70%);
    border-radius: 50%;
    top: -80px; right: -80px;
    pointer-events: none;
}
.wallet-balance-card::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    bottom: -60px; left: -60px;
    pointer-events: none;
}
.wallet-balance-card > * { position: relative; z-index: 2; }
.wallet-balance-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wallet-balance-label i { color: var(--c-accent); }
.wallet-balance-amount {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1.1;
    margin-bottom: 18px;
}
.wallet-balance-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
}
.wallet-balance-meta > div { display: flex; flex-direction: column; }
.wallet-balance-meta small { color: rgba(255, 255, 255, 0.6); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.wallet-balance-meta strong { color: #fff; font-size: 0.95rem; }

.topup-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.topup-card-head {
    padding: 16px 22px;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.topup-card-head h3 { color: #fff; font-size: 1rem; margin: 0; }
.topup-card-body { padding: 22px; }
.topup-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 16px;
}
.quick-amt-btn {
    padding: 9px 16px;
    border: 1.5px solid var(--c-border);
    background: #fff;
    color: var(--c-ink);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--t-fast);
}
.quick-amt-btn:hover { border-color: var(--c-primary); background: var(--c-primary-50); color: var(--c-primary); }
.quick-amt-btn.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.topup-input-wrap { position: relative; display: flex; align-items: center; }
.topup-input-wrap i {
    position: absolute;
    left: 14px;
    color: var(--c-muted);
}
.topup-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--t-fast);
}
.topup-input:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.12);
}
.topup-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 14px;
    background: var(--c-accent);
}
.topup-btn:hover { background: var(--c-accent-600); }

.txn-table {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.txn-table-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-bg-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.txn-table-head h3 { font-size: 1.05rem; color: var(--c-ink); margin: 0; display: flex; align-items: center; gap: 8px; }
.txn-table-head h3 i { color: var(--c-primary); }
.txn-table-body { padding: 0; }

.txn-amount { font-family: var(--font-sans); font-weight: 700; }
.txn-amount.credit { color: #2e7d32; }
.txn-amount.debit  { color: #c0392b; }

.txn-type-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.txn-type-pill.topup     { background: #e6f4ea; color: #1b5e20; }
.txn-type-pill.hold      { background: #fff3cd; color: #8a5a00; }
.txn-type-pill.release   { background: var(--c-primary-50); color: var(--c-primary); }
.txn-type-pill.refund    { background: #e0e7ff; color: #1e3a8a; }
.txn-type-pill.deduction { background: #fdecea; color: #8b1a1a; }

/* =====================================================
   39. Bookings page
   ===================================================== */
.booking-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.filter-pill {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1.5px solid var(--c-border);
    color: var(--c-ink);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.filter-pill:hover { border-color: var(--c-primary); color: var(--c-primary); }
.filter-pill.active {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}
.filter-pill .count {
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}
.filter-pill:not(.active) .count {
    background: var(--c-bg-soft);
    color: var(--c-muted);
}

.ref-cell .recurring-pill {
    display: inline-block;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    vertical-align: middle;
}
.tier-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: capitalize;
}
.tier-tag.companion  { background: #e7f3f4; color: #0b646d; }
.tier-tag.specialist { background: #fbf3e3; color: #c8932f; }
.tier-tag.bridge     { background: #fef0e8; color: #c95d1a; }

/* =====================================================
   40. Notifications
   ===================================================== */
.notif-summary {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.notif-summary h2 {
    font-size: 1.2rem;
    color: var(--c-ink);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.notif-summary h2 i { color: var(--c-primary); }
.unread-count-pill {
    background: #e74c3c;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.notif-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.notif-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    text-decoration: none;
    color: inherit;
}
.notif-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.notif-item.unread { border-left: 4px solid var(--c-accent); }
.notif-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.notif-icon.booking { background: var(--c-primary); }
.notif-icon.payment { background: var(--c-accent); }
.notif-icon.rating  { background: #fd7e14; }
.notif-icon.system  { background: #6c757d; }
.notif-icon.alert   { background: #e74c3c; }
.notif-icon.info    { background: #0c8fa0; }
.notif-body { flex: 1; min-width: 0; }
.notif-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}
.notif-title {
    font-weight: 700;
    color: var(--c-ink);
    font-size: 0.95rem;
    margin: 0;
}
.notif-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-muted);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.unread-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #e74c3c;
    flex-shrink: 0;
    display: inline-block;
}
.notif-message {
    color: var(--c-text);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 6px;
}
.notif-link {
    color: var(--c-primary);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--t-base);
}
.notif-link:hover { gap: 8px; }
.notif-type-tag {
    display: inline-block;
    background: var(--c-bg-soft);
    color: var(--c-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 6px;
}

/* =====================================================
   41. Caregiver Bookings (cards)
   ===================================================== */
.booking-card-modern {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-primary);
    box-shadow: var(--shadow-sm);
    padding: 24px 26px;
    margin-bottom: 16px;
    transition: all var(--t-base);
}
.booking-card-modern:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.booking-card-modern.is-active { border-left-color: #28a745; background: linear-gradient(135deg, #fff, #f6fefa); }
.booking-card-modern.is-today { border-left-color: var(--c-accent); }

.booking-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.booking-card-head h3 { font-size: 1.05rem; color: var(--c-ink); margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.booking-card-head .ref-code { font-family: var(--font-sans); font-weight: 700; color: var(--c-primary); }
.booking-card-head .ref-client { color: var(--c-muted); font-size: 0.85rem; margin-top: 2px; }

.booking-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}
.booking-grid-2 .lbl { color: var(--c-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-weight: 600; }
.booking-grid-2 .val { color: var(--c-ink); font-size: 0.95rem; font-weight: 500; }
.booking-grid-2 .val.muted { color: var(--c-muted); font-weight: 400; }
.booking-grid-2 .val.earnings { color: var(--c-primary); font-weight: 700; font-size: 1.05rem; }

.booking-card-address {
    color: var(--c-text);
    font-size: 0.88rem;
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.booking-card-address i { color: var(--c-accent); margin-top: 3px; }

.booking-card-times {
    background: var(--c-bg-soft);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--c-text);
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.booking-card-times strong { color: var(--c-ink); }

.booking-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.booking-card-actions .btn { padding: 8px 14px; font-size: 0.85rem; }

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

/* =====================================================
   42. Earnings stat cards
   ===================================================== */
.earn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}
.earn-stat {
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
}
.earn-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.earn-stat .lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}
.earn-stat .val {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.1;
}
.earn-stat.available { background: linear-gradient(135deg, #28a745, #20c997); }
.earn-stat.total     { background: var(--grad-primary); }
.earn-stat.withdrawn { background: linear-gradient(135deg, #6c757d, #495057); }
.earn-stat.shifts    { background: var(--grad-accent); }
.earn-stat.shifts .lbl { color: rgba(0, 0, 0, 0.6); }
.earn-stat.shifts .val { color: var(--c-ink); }

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

.withdraw-cta {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.withdraw-cta .ico-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #e6f4ea;
    color: #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.withdraw-cta h3 { font-size: 1.15rem; color: var(--c-ink); margin-bottom: 6px; }
.withdraw-cta p { color: var(--c-text); font-size: 0.92rem; margin-bottom: 16px; }
.withdraw-cta .btn-solid { background: #28a745; box-shadow: 0 6px 18px rgba(40, 167, 69, 0.25); }
.withdraw-cta .btn-solid:hover { background: #1e7e34; }
.withdraw-cta .ico-circle.gray { background: var(--c-bg-soft); color: var(--c-muted); }
.withdraw-cta small { color: var(--c-muted); font-size: 0.82rem; }

.withdraw-item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 10px;
    font-size: 0.88rem;
}
.withdraw-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.withdraw-item-amt { font-family: var(--font-sans); font-weight: 700; color: var(--c-ink); }
.withdraw-item-meta { color: var(--c-muted); font-size: 0.8rem; }
.withdraw-item-note {
    color: var(--c-muted);
    font-size: 0.8rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.earnings-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 1024px) { .earnings-layout { grid-template-columns: 1fr; } }

.earn-table-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.earn-table-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-bg-soft);
}
.earn-table-head h3 { font-size: 1.05rem; color: var(--c-ink); margin: 0; display: flex; align-items: center; gap: 8px; }
.earn-table-head h3 i { color: var(--c-primary); }
.earn-table-body { padding: 0; }
.earn-table-body .data-table td { font-size: 0.88rem; }
.earn-table-body .data-table .amount-credit { color: #2e7d32; font-weight: 700; }
.earn-table-body .data-table .amount-debit  { color: #c0392b; }

/* =====================================================
   43. Withdrawal request
   ===================================================== */
.wr-balance-pill {
    display: inline-block;
    background: var(--grad-hero);
    color: #fff;
    padding: 20px 40px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin-bottom: 30px;
}
.wr-balance-pill .lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-bottom: 4px;
}
.wr-balance-pill .val {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1.1;
}

.wr-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 620px;
    margin: 0 auto;
}
.wr-card-head {
    padding: 20px 26px;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wr-card-head h3 { color: #fff; font-size: 1.1rem; margin: 0; }
.wr-card-body { padding: 26px; }
.wr-card .form-group { margin-bottom: 16px; }
.wr-card label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.wr-card .req { color: #e74c3c; }
.wr-card .input-wrap-modern {
    position: relative;
    display: flex;
    align-items: center;
}
.wr-card .input-wrap-modern > i {
    position: absolute;
    left: 14px;
    color: var(--c-muted);
    font-size: 0.95rem;
    pointer-events: none;
}
.wr-card .input-modern,
.wr-card .select-modern {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--c-ink);
    background: #fff;
    transition: all var(--t-fast);
    font-family: inherit;
}
.wr-card .select-modern {
    padding-left: 14px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8794' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
}
.wr-card .input-modern:focus,
.wr-card .select-modern:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.12);
}
.wr-card .input-modern::placeholder { color: var(--c-muted); }
.wr-card .helper-text { color: var(--c-muted); font-size: 0.8rem; margin-top: 4px; }
.wr-card .info-strip {
    background: #fff8e1;
    border-left: 4px solid #f5a623;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #8a5a00;
    font-size: 0.85rem;
    margin: 18px 0;
}
.wr-card .btn-solid { width: 100%; justify-content: center; padding: 14px; background: #28a745; }
.wr-card .btn-solid:hover { background: #1e7e34; }

.wr-state {
    text-align: center;
    padding: 40px 24px;
}
.wr-state .ico-circle {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--c-bg-soft);
    color: var(--c-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 14px;
}
.wr-state.pending .ico-circle { background: #fff3cd; color: #f5a623; }
.wr-state h3 { font-size: 1.1rem; color: var(--c-ink); margin-bottom: 8px; }
.wr-state p { color: var(--c-text); font-size: 0.95rem; margin-bottom: 14px; }

/* =====================================================
   44. Shift check-in / check-out / activity log
   ===================================================== */
.shift-summary {
    background: #fff;
    border: 1px solid var(--c-border);
    border-left: 5px solid var(--c-primary);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.shift-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.shift-summary-head h3 { font-size: 1.1rem; color: var(--c-ink); margin: 0 0 4px; }
.shift-summary-head h3 span { color: var(--c-primary); font-family: var(--font-sans); }
.shift-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
    font-size: 0.9rem;
    color: var(--c-text);
}
.shift-summary-grid > div { line-height: 1.5; }
.shift-summary-grid strong { color: var(--c-ink); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-weight: 600; }
.shift-summary-note {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    line-height: 1.55;
}
.shift-summary-note.medical { background: #fff8e1; border-left: 4px solid #f5a623; color: #6b4a00; }
.shift-summary-note.instructions { background: var(--c-primary-50); border-left: 4px solid var(--c-primary); color: var(--c-primary); }
@media (max-width: 600px) { .shift-summary-grid { grid-template-columns: 1fr; } }

.checklist-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.checklist-head {
    padding: 18px 22px;
    background: var(--grad-primary);
    color: #fff;
}
.checklist-head h3 { color: #fff; font-size: 1.05rem; margin: 0 0 4px; display: flex; align-items: center; gap: 8px; }
.checklist-head p { color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; margin: 0; }
.checklist-body { padding: 24px 26px; }

.radio-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.radio-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--c-bg-soft);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--t-fast);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-ink);
    flex: 1;
    min-width: 180px;
}
.radio-pill:hover { border-color: var(--c-primary); background: #fff; }
.radio-pill input[type="radio"] { width: 18px; height: 18px; accent-color: var(--c-primary); cursor: pointer; }
.radio-pill:has(input:checked) { background: var(--c-primary-50); border-color: var(--c-primary); }

.checklist-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 768px) { .checklist-row-3 { grid-template-columns: 1fr; } }

.cl-field { margin-bottom: 16px; }
.cl-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.cl-field small { color: var(--c-muted); font-weight: 400; }
.cl-field .input-wrap-modern {
    position: relative;
    display: flex;
    align-items: center;
}
.cl-field .input-wrap-modern > i {
    position: absolute;
    left: 14px;
    color: var(--c-muted);
    font-size: 0.95rem;
    pointer-events: none;
}
.cl-field .input-modern,
.cl-field .select-modern,
.cl-field .textarea-modern {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--c-ink);
    background: #fff;
    transition: all var(--t-fast);
    font-family: inherit;
}
.cl-field .select-modern {
    padding-left: 14px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8794' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
}
.cl-field .textarea-modern { padding: 12px 14px; min-height: 80px; resize: vertical; }
.cl-field .input-modern:focus,
.cl-field .select-modern:focus,
.cl-field .textarea-modern:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(11, 100, 109, 0.12);
}
.cl-field .input-modern::placeholder,
.cl-field .textarea-modern::placeholder { color: var(--c-muted); }

.shift-info-strip {
    background: var(--c-bg-soft);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin: 14px 0;
    font-size: 0.88rem;
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.shift-info-strip i { color: var(--c-primary); }
.shift-info-strip.warn { background: #fff8e1; color: #6b4a00; }
.shift-info-strip.warn i { color: #f5a623; }
.shift-info-strip.success { background: #e8f5e9; color: #1b5e20; }
.shift-info-strip.success i { color: #2e7d32; }

.shift-success-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    text-align: center;
    padding: 50px 30px;
    border-top: 5px solid #28a745;
}
.shift-success-card .check-mark {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}
.shift-success-card h2 { color: #28a745; font-size: 1.5rem; margin-bottom: 8px; }
.shift-success-card .ref-pill {
    display: inline-block;
    background: var(--c-bg-soft);
    color: var(--c-ink);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.shift-success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-md);
}
.shift-success-grid .lbl { color: var(--c-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-weight: 600; }
.shift-success-grid .val { color: var(--c-ink); font-size: 0.95rem; font-weight: 500; }
.shift-success-amount {
    background: linear-gradient(135deg, #e8f5e9, #d4edda);
    border: 1px solid #28a745;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    color: #1b5e20;
    margin-bottom: 24px;
}
.shift-success-amount h4 { font-size: 1rem; margin: 0 0 4px; color: #155724; }
.shift-success-amount h4.amt { color: #155724; font-size: 1.2rem; font-weight: 800; margin: 0; }
.shift-success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 22px;
}
.quick-actions-row .btn { padding: 10px 16px; font-size: 0.88rem; }

/* Activity log */
.log-entry-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
}
.log-entry-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--c-accent); }
.log-entry-time {
    font-size: 0.78rem;
    color: var(--c-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.log-entry-time i { color: var(--c-accent); }
.log-entry-text {
    font-size: 0.92rem;
    color: var(--c-ink);
    line-height: 1.65;
    white-space: pre-wrap;
}

/* =====================================================
   45. Rate booking (star widget + reviews)
   ===================================================== */
.rate-context {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--c-primary);
    margin-bottom: 22px;
}
.rate-context .avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--c-primary);
}
.rate-context .avatar img { width: 100%; height: 100%; object-fit: cover; }
.rate-context strong { color: var(--c-ink); display: block; font-size: 1rem; }
.rate-context small { color: var(--c-muted); font-size: 0.82rem; }
.rate-context .stars-display { color: var(--c-accent); font-size: 0.78rem; margin-top: 2px; }
.rate-context .stars-display i { font-size: 0.9rem; }

.star-rating-widget {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 6px;
}
.star-rating-widget input[type="radio"] { display: none; }
.star-rating-widget label {
    font-size: 38px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    line-height: 1;
}
.star-rating-widget label:hover,
.star-rating-widget label:hover ~ label,
.star-rating-widget input:checked ~ label {
    color: var(--c-accent);
}
.star-rating-widget label:hover { transform: scale(1.1); }
#star-label {
    margin-top: 10px;
    color: var(--c-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.review-card-modern {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.review-card-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--c-bg-soft);
    color: var(--c-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.review-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card-meta strong { color: var(--c-ink); font-size: 0.88rem; display: block; }
.review-card-meta small { color: var(--c-muted); font-size: 0.78rem; }
.review-card-meta .stars { color: var(--c-accent); font-size: 0.78rem; }
.review-card-text {
    color: var(--c-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 50px;
}

/* =====================================================
   46. Incident report
   ===================================================== */
.incident-context {
    background: #fff8e1;
    border: 1px solid #f5a623;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 18px;
    color: #6b4a00;
    font-size: 0.9rem;
}
.incident-context i { color: #f5a623; margin-right: 4px; }
.incident-emergency {
    background: #fdecea;
    border: 1px solid #e74c3c;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 18px;
    color: #8b1a1a;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.incident-emergency i { color: #e74c3c; font-size: 1.1rem; }
.incident-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-top: 4px solid #e74c3c;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.incident-card-head {
    padding: 18px 22px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.incident-card-head h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.incident-card-body { padding: 24px 26px; }
.incident-success {
    background: #fff;
    border-top: 5px solid #e74c3c;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 50px 30px;
    text-align: center;
}
.incident-success .ico-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #fdecea;
    color: #e74c3c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.incident-success h2 { color: #c0392b; font-size: 1.5rem; margin-bottom: 10px; }
.incident-success p { color: var(--c-text); margin-bottom: 14px; }
.incident-success .em-info { color: var(--c-muted); font-size: 0.82rem; margin-bottom: 20px; }
.incident-success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   47. Privacy policy / static content pages
   ===================================================== */
.static-page {
    background: var(--c-bg-soft);
    padding: 60px 0 80px;
}
.static-content {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 36px 44px;
}
.static-content h2 {
    font-size: 1.4rem;
    color: var(--c-ink);
    margin: 30px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-accent-50);
}
.static-content h2:first-child { margin-top: 0; }
.static-content h3 {
    font-size: 1.1rem;
    color: var(--c-primary);
    margin: 22px 0 10px;
}
.static-content p {
    color: var(--c-text);
    line-height: 1.8;
    margin: 0 0 16px;
}
.static-content ul {
    margin: 0 0 18px;
    padding-left: 0;
    list-style: none;
}
.static-content ul li {
    position: relative;
    padding: 8px 0 8px 32px;
    color: var(--c-text);
    line-height: 1.65;
    border-bottom: 1px dashed var(--c-border);
}
.static-content ul li:last-child { border-bottom: none; }
.static-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--c-primary);
    background: var(--c-primary-50);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}
.static-content .updated {
    color: var(--c-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
    font-style: italic;
}

/* =====================================================
   48. FAQ page (already has .faq-list from how-it-works)
   ===================================================== */
.faq-cat-title {
    font-size: 1.1rem;
    color: var(--c-ink);
    margin: 30px 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-cat-title i { color: var(--c-primary); }
.faq-cat-title:first-child { margin-top: 0; }

/* =====================================================
   49. Gallery
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.gallery-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-bg-alt);
}
.gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.gallery-card:hover .gallery-thumb img { transform: scale(1.08); }
.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 100, 109, 0.4));
    opacity: 0;
    transition: opacity var(--t-base);
}
.gallery-card:hover .gallery-thumb::after { opacity: 1; }
.gallery-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.gallery-body h3 {
    font-size: 1.05rem;
    color: var(--c-ink);
    margin-bottom: 8px;
    line-height: 1.4;
}
.gallery-body p {
    color: var(--c-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}
.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap var(--t-base);
}
.gallery-link:hover { gap: 10px; color: var(--c-accent-600); }

.pagination-modern {
    display: flex;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    flex-wrap: wrap;
}
.pagination-modern li a,
.pagination-modern li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--c-ink);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid var(--c-border);
    transition: all var(--t-fast);
}
.pagination-modern li a:hover { background: var(--c-primary-50); color: var(--c-primary); border-color: var(--c-primary); }
.pagination-modern li.active span {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}
.pagination-modern li.disabled span {
    color: var(--c-muted);
    cursor: not-allowed;
    background: var(--c-bg-soft);
}

/* =====================================================
   50. Videos
   ===================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } }

.video-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--c-dark);
    overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-info { padding: 20px 22px; }
.video-info h3 { font-size: 1.1rem; color: var(--c-ink); margin: 0; }

/* =====================================================
   51. About History timeline (custom)
   ===================================================== */
.history-section { padding: 80px 0; background: var(--c-bg-soft); }
.history-timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 20px 0;
}
.history-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--c-primary) 8%, var(--c-primary) 92%, transparent);
    transform: translateX(-50%);
}
.history-item {
    position: relative;
    width: 50%;
    padding: 0 50px 40px;
}
.history-item:nth-child(odd) { left: 0; text-align: right; }
.history-item:nth-child(even) { left: 50%; text-align: left; }
.history-dot {
    position: absolute;
    top: 14px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 0 0 6px var(--c-bg-soft), 0 0 0 9px var(--c-accent), var(--shadow-md);
    z-index: 2;
}
.history-item:nth-child(odd) .history-dot { right: -28px; }
.history-item:nth-child(even) .history-dot { left: -28px; }
.history-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    position: relative;
}
.history-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.history-card h3 {
    color: var(--c-primary);
    font-size: 1.2rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.history-item:nth-child(odd) .history-card h3 { justify-content: flex-end; }
.history-card h3 i { color: var(--c-accent); }
.history-card p { color: var(--c-text); line-height: 1.7; margin: 0; font-size: 0.95rem; }

@media (max-width: 768px) {
    .history-timeline::before { left: 22px; transform: none; }
    .history-item, .history-item:nth-child(odd), .history-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 30px 60px;
    }
    .history-dot, .history-item:nth-child(odd) .history-dot, .history-item:nth-child(even) .history-dot {
        left: -6px;
        right: auto;
        width: 46px; height: 46px;
        font-size: 0.78rem;
    }
    .history-item:nth-child(odd) .history-card h3 { justify-content: flex-start; }
}

/* =====================================================
   52. Blog listing + detail
   ===================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card-modern {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card-modern:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-thumb-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--c-bg-alt);
    display: block;
}
.blog-thumb-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.blog-card-modern:hover .blog-thumb-wrap img { transform: scale(1.06); }
.blog-thumb-default {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--c-primary-50), var(--c-accent-50));
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.blog-bookmark {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}
.blog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--c-muted);
    font-size: 0.82rem;
    margin-bottom: 10px;
}
.blog-meta i { color: var(--c-accent); margin-right: 4px; }
.blog-title {
    font-size: 1.1rem;
    color: var(--c-ink);
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--c-primary); }
.blog-excerpt {
    color: var(--c-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed var(--c-border);
    flex-wrap: wrap;
}
.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap var(--t-base);
}
.blog-readmore:hover { gap: 10px; color: var(--c-accent-600); }
.share-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.share-label {
    color: var(--c-muted);
    font-size: 0.78rem;
    font-weight: 500;
    margin-right: 2px;
}
.share-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    transition: all var(--t-fast);
}
.share-btn.fb  { background: #1877f2; }
.share-btn.tw  { background: #000; }
.share-btn.wa  { background: #25d366; }
.share-btn.tg  { background: #0088cc; }
.share-btn.li  { background: #0a66c2; }
.share-btn.cp  { background: var(--c-muted); }
.share-btn:hover { transform: translateY(-2px) scale(1.1); color: #fff; }

/* Blog detail */
.blog-detail-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 24px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: gap var(--t-base);
}
.back-link:hover { gap: 10px; color: var(--c-accent-600); }

.blog-detail {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.blog-detail-cover {
    aspect-ratio: 16/7;
    overflow: hidden;
    background: var(--c-bg-alt);
}
.blog-detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-body { padding: 36px 44px; }
@media (max-width: 600px) { .blog-detail-body { padding: 24px 20px; } }

.blog-detail-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--c-ink);
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--c-muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--c-border);
}
.blog-detail-meta i { color: var(--c-accent); margin-right: 6px; }
.blog-detail-meta strong { color: var(--c-ink); }
.blog-detail-content {
    color: var(--c-ink);
    line-height: 1.85;
    font-size: 1.02rem;
}
.blog-detail-content p { margin: 0 0 18px; }
.blog-detail-content img { border-radius: var(--radius-md); margin: 18px 0; max-width: 100%; }
.blog-detail-content h1, .blog-detail-content h2, .blog-detail-content h3 {
    margin: 28px 0 14px;
    color: var(--c-ink);
}
.blog-detail-content a { color: var(--c-primary); text-decoration: underline; }

.floating-share {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.float-share-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    transition: all var(--t-fast);
    position: relative;
}
.float-share-btn:hover { transform: translateY(-3px) scale(1.08); color: #fff; }
.float-share-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 50px;
    background: var(--c-ink);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast);
}
.float-share-btn:hover::before { opacity: 1; }
.float-share-btn.fb  { background: #1877f2; }
.float-share-btn.tw  { background: #000; }
.float-share-btn.wa  { background: #25d366; }
.float-share-btn.tg  { background: #0088cc; }
.float-share-btn.li  { background: #0a66c2; }
.float-share-btn.cp  { background: var(--c-muted); }
@media (max-width: 1024px) { .floating-share { display: none; } }

.copy-feedback {
    position: fixed;
    bottom: 80px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-base);
    z-index: 9999;
}
.copy-feedback.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.copy-feedback i { margin-right: 6px; }

@media (max-width: 768px) {
    .floating-share { display: none; }
}

/* =====================================================
   53. Admin pages
   ===================================================== */
.admin-page-hero {
    background: var(--grad-hero);
    color: #fff;
    padding: 50px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.admin-page-hero::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(220, 170, 75, 0.3), transparent 70%);
    border-radius: 50%;
    top: -150px; right: -100px;
    pointer-events: none;
}
.admin-page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 6px; }
.admin-page-hero .breadcrumb { margin-top: 6px; }

.admin-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}
@media (max-width: 1024px) { .admin-tool-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .admin-tool-grid { grid-template-columns: 1fr; } }

.admin-tool {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.admin-tool:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-primary); }
.admin-tool-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 14px;
    transition: all var(--t-base);
}
.admin-tool:hover .admin-tool-icon { background: var(--c-primary); color: #fff; transform: scale(1.08); }
.admin-tool h3 { font-size: 1.1rem; color: var(--c-ink); margin-bottom: 8px; }
.admin-tool p { color: var(--c-text); font-size: 0.9rem; line-height: 1.55; margin: 0 0 16px; flex: 1; }

.admin-app-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--c-primary);
    margin-bottom: 22px;
    overflow: hidden;
}
.admin-app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-bg-soft);
}
.admin-app-user { display: flex; align-items: center; gap: 14px; }
.admin-app-photo {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-primary);
    flex-shrink: 0;
}
.admin-app-photo-placeholder {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.admin-app-name { color: var(--c-ink); font-size: 1.05rem; font-weight: 700; }
.admin-app-meta { color: var(--c-muted); font-size: 0.85rem; }

.admin-app-body { padding: 22px 24px; }
.admin-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px 18px;
    font-size: 0.9rem;
    color: var(--c-text);
    margin-bottom: 14px;
}
.admin-app-grid strong { color: var(--c-ink); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.admin-app-address {
    background: var(--c-bg-soft);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--c-text);
    margin-bottom: 14px;
}
.admin-app-docs {
    margin-bottom: 14px;
}
.admin-app-docs strong { display: block; font-size: 0.85rem; color: var(--c-ink); margin-bottom: 6px; }
.admin-doc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--c-bg-soft);
    color: var(--c-ink);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--c-border);
    transition: all var(--t-fast);
    margin: 2px 4px 2px 0;
}
.admin-doc-pill:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.admin-doc-pill i { color: var(--c-accent); }
.admin-doc-pill:hover i { color: #fff; }
.admin-doc-pill.verified::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
    margin-left: 4px;
}

.admin-app-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid var(--c-border);
    background: var(--c-bg-soft);
}
.admin-app-actions .btn { padding: 8px 14px; font-size: 0.88rem; }
.admin-app-actions select {
    padding: 6px 10px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    background: #fff;
    color: var(--c-ink);
    font-family: inherit;
    cursor: pointer;
}
.reject-form {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1.5px solid #fadbd8;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.reject-form input {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-family: inherit;
}
.reject-form input:focus { outline: none; border-color: var(--c-primary); }
