/* ══════════════════════════════════════════════════════
   FBM Estetik — Premium Frontend Design System v1.0
   Compiled: Standalone (no build tool required)
   ══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
    --fbm-anthracite:        #1E2432;
    --fbm-anthracite-light:  #2C3347;
    --fbm-anthracite-muted:  #3D4559;
    --fbm-offwhite:          #F8F7F4;
    --fbm-blue:              #2C6B9E;
    --fbm-blue-dark:         #1A4F7A;
    --fbm-gold:              #C9A84C;
    --fbm-gold-light:        #D4B86A;
    --fbm-white:             #ffffff;
    --fbm-font-sans:         'DM Sans', ui-sans-serif, system-ui, sans-serif;
    --fbm-font-display:      'Lora', Georgia, serif;
    --fbm-radius-sm:         6px;
    --fbm-radius:            10px;
    --fbm-radius-lg:         16px;
    --fbm-shadow-sm:         0 2px 12px rgba(0,0,0,.07);
    --fbm-shadow:            0 4px 24px rgba(0,0,0,.12);
    --fbm-shadow-lg:         0 12px 48px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }

/* ── Lazy Load ── */
.lazyload, .lazyloading { opacity: 0; }
.lazyloaded { opacity: 1; transition: opacity 300ms; }

/* ── Preloader ── */
.fbm-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: var(--fbm-anthracite);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.fbm-preloader.fade-out { opacity: 0; visibility: hidden; }
.fbm-preloader img {
    width: 160px;
    animation: fbm-pulse 1.6s ease-in-out infinite;
}
@keyframes fbm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.65; transform: scale(0.95); }
}

/* ── Scroll reveal ── */
@keyframes fbm-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fbm-reveal { animation: fbm-fade-up 0.65s ease both; }

/* ── Gold accent line ── */
.fbm-gold-line {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--fbm-gold), var(--fbm-gold-light));
    border-radius: 2px;
    margin: 14px 0;
}

/* ── Section helpers ── */
.fbm-section    { padding: 80px 0; }
.fbm-section-sm { padding: 48px 0; }

.fbm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 640px) { .fbm-container { padding: 0 16px; } }

/* ── Typography ── */
.fbm-section-title {
    font-family: var(--fbm-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fbm-anthracite);
}
.fbm-section-title.light { color: var(--fbm-offwhite); }

/* ── Buttons ── */
.fbm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--fbm-gold), var(--fbm-gold-light));
    color: var(--fbm-anthracite);
    font-family: var(--fbm-font-sans);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--fbm-radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: filter .2s, transform .15s;
}
.fbm-btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: var(--fbm-anthracite);
    text-decoration: none;
}

.fbm-btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--fbm-offwhite);
    font-family: var(--fbm-font-sans);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--fbm-radius);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.45);
    transition: border-color .2s, background .2s;
}
.fbm-btn-outline-light:hover {
    border-color: var(--fbm-offwhite);
    background: rgba(255,255,255,0.1);
    color: var(--fbm-offwhite);
    text-decoration: none;
}

.fbm-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: var(--fbm-font-sans);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--fbm-radius);
    text-decoration: none;
    transition: filter .2s, transform .15s;
}
.fbm-btn-wa:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.fbm-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #C9A84C, #D4B86A);
    color: #1E2432;
    font-family: var(--fbm-font-sans);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--fbm-radius);
    text-decoration: none;
    transition: filter .2s, transform .15s;
}
.fbm-btn-phone:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #1E2432;
    text-decoration: none;
}

/* ════════════════════════════
   HEADER
════════════════════════════ */
.fbm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color .3s ease, box-shadow .3s ease;
}
.fbm-header--transparent { background: transparent; }
.fbm-header--solid {
    background: var(--fbm-anthracite);
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.fbm-nav-link {
    color: rgba(248,247,244,.85);
    font-family: var(--fbm-font-sans);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.fbm-nav-link:hover {
    color: var(--fbm-gold);
    border-bottom-color: var(--fbm-gold);
    text-decoration: none;
}

/* Mega dropdown */
.fbm-has-dropdown { position: relative; }
.fbm-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 520px;
    background: var(--fbm-anthracite);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--fbm-radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    box-shadow: var(--fbm-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s, transform .2s;
    transform: translateX(-50%) translateY(8px);
}
.fbm-has-dropdown:hover .fbm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.fbm-dropdown-link {
    display: block;
    padding: 8px 12px;
    color: rgba(248,247,244,.8);
    font-family: var(--fbm-font-sans);
    font-size: 13.5px;
    text-decoration: none;
    border-radius: var(--fbm-radius-sm);
    transition: background .15s, color .15s;
}
.fbm-dropdown-link:hover {
    background: rgba(201,168,76,.12);
    color: var(--fbm-gold);
    text-decoration: none;
}

/* Language switcher */
.fbm-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(248,247,244,.85);
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--fbm-radius-sm);
    padding: 6px 10px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.fbm-lang-btn:hover { border-color: var(--fbm-gold); color: var(--fbm-gold); }

.fbm-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--fbm-anthracite);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--fbm-radius);
    overflow: hidden;
    box-shadow: var(--fbm-shadow-lg);
    z-index: 200;
}
.fbm-lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: rgba(248,247,244,.85);
    font-family: var(--fbm-font-sans);
    font-size: 13.5px;
    text-decoration: none;
    transition: background .15s;
}
.fbm-lang-menu a:hover { background: rgba(201,168,76,.1); color: var(--fbm-gold); }

/* ════════════════════════════
   MOBILE ELEMENTS
════════════════════════════ */
/* Mobile sticky bar */
.fbm-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: var(--fbm-anthracite);
    border-top: 1px solid rgba(201,168,76,.25);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 62px;
}
.fbm-mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(248,247,244,.8);
    font-family: var(--fbm-font-sans);
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}
.fbm-mobile-bar a:hover { color: var(--fbm-offwhite); }
.fbm-mobile-bar a.wa  { color: #25D366; }
.fbm-mobile-bar a.appt { color: var(--fbm-gold); }
.fbm-mobile-bar a i { font-size: 18px; }

/* WhatsApp float (desktop) */
.fbm-wa-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 980;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.fbm-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.fbm-wa-float i { color: #fff; font-size: 26px; }

/* Back to top */
.fbm-back-top {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 978;
    width: 42px;
    height: 42px;
    background: rgba(30,36,50,.85);
    border: 1px solid rgba(201,168,76,.35);
    border-radius: var(--fbm-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fbm-offwhite);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .2s;
}
.fbm-back-top.visible { opacity: 1; pointer-events: auto; }
.fbm-back-top:hover { color: var(--fbm-gold); transform: translateY(-2px); }

/* Mobile menu overlay */
.fbm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1090;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Mobile menu panel */
.fbm-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: var(--fbm-anthracite);
    z-index: 1100;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}
.fbm-mobile-menu.open { transform: translateX(0); }

.fbm-mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: rgba(248,247,244,.85);
    font-family: var(--fbm-font-sans);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .2s, background .2s;
}
.fbm-mobile-menu-link:hover {
    color: var(--fbm-gold);
    background: rgba(201,168,76,.07);
    text-decoration: none;
}
.fbm-mobile-submenu { background: rgba(0,0,0,.2); }
.fbm-mobile-submenu a {
    display: block;
    padding: 11px 20px 11px 36px;
    color: rgba(248,247,244,.7);
    font-family: var(--fbm-font-sans);
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: color .15s;
}
.fbm-mobile-submenu a:hover { color: var(--fbm-gold); text-decoration: none; }

/* ════════════════════════════
   HERO
════════════════════════════ */
.fbm-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    background: #1a2032;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.fbm-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: .38;
}
/* Directional overlay: solid dark on left, fades right */
.fbm-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        #1a2032 0%,
        #1a2032 35%,
        rgba(26,32,50,.94) 50%,
        rgba(26,32,50,.55) 100%
    );
}
.fbm-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: grid;
    grid-template-columns: 520px 1fr;
    align-items: center;
    gap: 80px;
}
.fbm-hero-content { max-width: 520px; }

/* Eyebrow label */
.fbm-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.fbm-hero-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--fbm-gold);
    opacity: .8;
    flex-shrink: 0;
}
.fbm-hero-eyebrow > span:last-child {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--fbm-gold);
    font-family: var(--fbm-font-sans);
}

/* International badge pill */
.fbm-hero-intl-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 100px;
    padding: 5px 14px;
    color: var(--fbm-gold);
    font-family: var(--fbm-font-sans);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: .02em;
}

/* Main headline */
.fbm-hero-title {
    font-family: var(--fbm-font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--fbm-offwhite);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -.015em;
}

/* Subtitle — backward compat */
.fbm-hero-subtitle {
    font-family: var(--fbm-font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--fbm-gold);
    font-style: italic;
    margin: 0 0 16px;
}

/* Badge — backward compat */
.fbm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 100px;
    padding: 6px 16px;
    color: var(--fbm-gold);
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Description */
.fbm-hero-desc {
    font-family: var(--fbm-font-sans);
    font-size: 16px;
    color: rgba(248,247,244,.65);
    line-height: 1.78;
    margin: 0 0 22px;
}

/* Trust line */
.fbm-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    color: rgba(248,247,244,.52);
    font-weight: 500;
    margin-bottom: 36px;
    letter-spacing: .01em;
}
.fbm-hero-trust-sep { color: var(--fbm-gold); font-size: 15px; }

/* CTA row */
.fbm-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* Gold primary CTA */
.fbm-btn-gold-hero {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #d4af37 0%, #b8952a 100%);
    color: #1a2032;
    font-family: var(--fbm-font-sans);
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: .025em;
    box-shadow: 0 4px 20px rgba(212,175,55,.3);
    transition: transform .22s ease, box-shadow .22s ease;
}
.fbm-btn-gold-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(212,175,55,.5);
    color: #1a2032;
    text-decoration: none;
}

/* WhatsApp CTA hero override */
.fbm-btn-wa-hero {
    padding: 14px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(37,211,102,.18) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
}
.fbm-btn-wa-hero:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 36px rgba(37,211,102,.38) !important;
}

/* Doctor credit (secondary) */
.fbm-hero-doctor-credit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(248,247,244,.08);
}
.fbm-hero-doctor-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(201,168,76,.32);
}
.fbm-hero-doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.fbm-hero-doctor-name-sm {
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    font-weight: 600;
    color: rgba(248,247,244,.82);
    margin: 0 0 2px;
}
.fbm-hero-doctor-pos {
    font-family: var(--fbm-font-sans);
    font-size: 11px;
    color: rgba(248,247,244,.42);
    margin: 0;
}

/* Right column: doctor frame */
.fbm-hero-right { position: relative; }
.fbm-hero-doctor-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.1);
}
.fbm-hero-doctor-frame img { width: 100%; display: block; }
.fbm-hero-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,32,50,.8) 100%);
}

/* Floating stat pill on doctor photo */
.fbm-hero-stat-card {
    position: absolute;
    bottom: 20px;
    left: -16px;
    background: rgba(20,26,44,.92);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.fbm-hero-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.fbm-hero-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--fbm-gold);
    line-height: 1;
    font-family: var(--fbm-font-display);
}
.fbm-hero-stat-lbl {
    font-size: 9.5px;
    color: rgba(248,247,244,.45);
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
    font-family: var(--fbm-font-sans);
}
.fbm-hero-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(201,168,76,.18);
    flex-shrink: 0;
}

/* Legacy doctor photo badge — kept for backward compat */
.fbm-hero-doctor-img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    border-radius: var(--fbm-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.5);
    position: relative;
}
.fbm-hero-doctor-img img { width: 100%; display: block; }
.fbm-doctor-photo-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30,36,50,.9);
    border-top: 1px solid rgba(201,168,76,.3);
    padding: 14px 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Hero responsive */
@media (max-width: 1100px) {
    .fbm-hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
    .fbm-hero-content { max-width: 100%; }
}
@media (max-width: 900px) {
    .fbm-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 100px 20px 80px;
        text-align: center;
    }
    .fbm-hero-right { display: none; }
    .fbm-hero-eyebrow,
    .fbm-hero-trust,
    .fbm-hero-ctas,
    .fbm-hero-doctor-credit { justify-content: center; }
    .fbm-hero-content { max-width: 560px; margin: 0 auto; }
    .fbm-hero-overlay {
        background: linear-gradient(180deg, rgba(26,32,50,.82) 0%, rgba(26,32,50,.76) 100%);
    }
}
@media (max-width: 640px) {
    .fbm-hero-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
    .fbm-hero-ctas { flex-direction: column; }
    .fbm-btn-gold-hero,
    .fbm-btn-wa-hero { width: 100% !important; justify-content: center; }
}

/* ════════════════════════════
   HERO COMPACT
════════════════════════════ */
.fbm-hc {
    background: linear-gradient(130deg, #1a2032 0%, #1e2840 55%, #1a2232 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
/* Subtle dot-grid texture */
.fbm-hc::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201,168,76,.055) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.fbm-hc-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 460px;
    align-items: center;
    gap: 72px;
}
/* Eyebrow */
.fbm-hc-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.fbm-hc-ey-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--fbm-gold);
    flex-shrink: 0;
}
.fbm-hc-ey-text {
    font-family: var(--fbm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--fbm-gold);
}
/* Headline */
.fbm-hc-title {
    font-family: var(--fbm-font-display);
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--fbm-offwhite);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -.015em;
}
/* Description */
.fbm-hc-desc {
    font-family: var(--fbm-font-sans);
    font-size: 16px;
    color: rgba(248,247,244,.62);
    line-height: 1.75;
    margin: 0 0 22px;
    max-width: 460px;
}
/* Trust line */
.fbm-hc-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-family: var(--fbm-font-sans);
    font-size: 12.5px;
    color: rgba(248,247,244,.48);
    font-weight: 500;
    margin-bottom: 32px;
}
.fbm-hc-sep { color: var(--fbm-gold); font-size: 13px; }
/* CTA row */
.fbm-hc-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Visual (right column) */
.fbm-hc-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Gold ambient glow behind image */
.fbm-hc-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.16) 0%, transparent 68%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
/* Doctor image card */
.fbm-hc-img-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0,0,0,.45),
        0 0 0 1px rgba(201,168,76,.12);
}
.fbm-hc-img-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}
.fbm-hc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26,32,50,.45) 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .fbm-hc-inner { grid-template-columns: 1fr 380px; gap: 48px; }
    .fbm-hc-img-card { height: 420px; }
}
@media (max-width: 900px) {
    .fbm-hc-inner { grid-template-columns: 1fr; }
    .fbm-hc { padding: 80px 0 56px; }
    .fbm-hc-visual { display: none; }
    .fbm-hc-desc { max-width: 100%; }
}
@media (max-width: 640px) {
    .fbm-hc { padding: 74px 0 48px; }
    .fbm-hc-inner { padding: 0 20px; }
    .fbm-hc-title { font-size: clamp(2rem, 7.5vw, 2.6rem); }
    .fbm-hc-ctas { flex-direction: column; }
    .fbm-btn-gold-hero,
    .fbm-btn-wa-hero { width: 100% !important; justify-content: center; }
}

/* Stats strip */
.fbm-stats-bar {
    background: rgba(30,36,50,.08);
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
    padding: 28px 0;
}
.fbm-stat { text-align: center; }
.fbm-stat-number {
    font-family: var(--fbm-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--fbm-gold);
    line-height: 1;
}
.fbm-stat-label {
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    color: rgba(30,36,50,.6);
    margin-top: 4px;
}

/* ════════════════════════════
   CARDS
════════════════════════════ */
/* Service cards */
.fbm-service-card {
    background: #fff;
    border-radius: var(--fbm-radius);
    overflow: hidden;
    box-shadow: var(--fbm-shadow-sm);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    display: block;
}
.fbm-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--fbm-shadow);
    text-decoration: none;
}
.fbm-service-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.fbm-service-card-body { padding: 16px 18px; }
.fbm-service-card-title {
    font-family: var(--fbm-font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--fbm-anthracite);
    margin: 0;
}

/* Procedure cards */
.fbm-procedure-card {
    position: relative;
    border-radius: var(--fbm-radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
}
.fbm-procedure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.fbm-procedure-card:hover img { transform: scale(1.06); }
.fbm-procedure-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,36,50,.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}
.fbm-procedure-name {
    font-family: var(--fbm-font-sans);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Article cards */
.fbm-article-card {
    background: #fff;
    border-radius: var(--fbm-radius);
    overflow: hidden;
    box-shadow: var(--fbm-shadow-sm);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.fbm-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fbm-shadow);
    text-decoration: none;
}
.fbm-article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.fbm-article-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.fbm-article-card-title {
    font-family: var(--fbm-font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--fbm-anthracite);
    margin: 0 0 10px;
    line-height: 1.4;
    flex: 1;
}
.fbm-article-card-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--fbm-blue);
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 14px;
}

/* ════════════════════════════
   DOCTOR SECTION
════════════════════════════ */
.fbm-doctor-section {
    background: linear-gradient(135deg, var(--fbm-anthracite) 0%, var(--fbm-anthracite-light) 100%);
}
.fbm-doctor-photo {
    border-radius: var(--fbm-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.fbm-doctor-photo img { width: 100%; display: block; }

/* ════════════════════════════
   HEALTH TOURISM SECTION
════════════════════════════ */
.fbm-ht-section {
    background: linear-gradient(135deg, var(--fbm-anthracite) 0%, var(--fbm-anthracite-light) 60%, var(--fbm-anthracite) 100%);
    border-top: 1px solid rgba(201,168,76,.25);
    border-bottom: 1px solid rgba(201,168,76,.25);
}
.fbm-ht-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: var(--fbm-radius);
}
.fbm-ht-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(201,168,76,.15);
    border-radius: var(--fbm-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fbm-gold);
    font-size: 20px;
}

/* ════════════════════════════
   VIDEO SHOWCASE
════════════════════════════ */
.fbm-vs-section {
    background: #F7F5F0;
    padding: 90px 0 80px;
    overflow-x: hidden;
}
.fbm-vs-header {
    text-align: center;
    margin-bottom: 48px;
}
.fbm-vs-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin: 12px auto 0;
    max-width: 560px;
}

/* ─ Tabs ─ */
.fbm-vs-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}
.fbm-vs-tab {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: transparent;
    border: 1.5px solid #d1cfc9;
    border-radius: 100px;
    color: #6b7280;
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .22s, border-color .22s, color .22s;
    outline: none;
    line-height: 1;
}
.fbm-vs-tab:hover {
    border-color: #C9A84C;
    color: #C9A84C;
    background: rgba(201,168,76,.06);
}
.fbm-vs-tab--active {
    background: #1f2635;
    border-color: #1f2635;
    color: #C9A84C;
}

/* ─ Card ─ */
.fbm-vs-card {
    background: #1f2635;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(201,168,76,.08);
}

/* ─ Layout: 50% featured / 50% grid ─ */
.fbm-vs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* ─ Featured video ─ */
.fbm-vs-featured { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.fbm-vs-player-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0d111c;
    width: 100%;
    flex: 1;
    min-height: 220px;
}
.fbm-vs-player-wrap iframe {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Thumbnail-first state */
.fbm-vs-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.fbm-vs-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.fbm-vs-preview:hover .fbm-vs-preview-img {
    transform: scale(1.04);
}
.fbm-vs-preview-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10,13,24,.8) 0%,
        rgba(10,13,24,.2) 50%,
        rgba(10,13,24,.08) 100%);
    transition: background .3s;
}
.fbm-vs-preview:hover .fbm-vs-preview-grad {
    background: linear-gradient(to top,
        rgba(10,13,24,.88) 0%,
        rgba(10,13,24,.32) 50%,
        rgba(10,13,24,.12) 100%);
}

/* Big play button */
.fbm-vs-big-play-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.fbm-vs-big-play {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(201,168,76,.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 8px 32px rgba(201,168,76,.4);
}
.fbm-vs-preview:hover .fbm-vs-big-play {
    background: #C9A84C;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(201,168,76,.55);
}
.fbm-vs-big-play svg { margin-left: 4px; }

/* Featured label + title */
.fbm-vs-placeholder-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #151a27 0%, #252d44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fbm-vs-placeholder-bg svg { opacity: .18; }

.fbm-vs-featured-meta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fbm-vs-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #C9A84C;
}
.fbm-vs-featured-title {
    font-family: var(--fbm-font-sans);
    font-size: 16px;
    font-weight: 600;
    color: #F8F7F4;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─ Thumbnail grid ─ */
.fbm-vs-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-content: start;
    min-width: 0;
}
.fbm-vs-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 0;
    background: #0d111c;
    outline: none;
    transition: box-shadow .25s;
}
.fbm-vs-thumb:hover {
    box-shadow: 0 0 0 2px #C9A84C;
}
.fbm-vs-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform .4s ease;
}
.fbm-vs-thumb:hover .fbm-vs-thumb-img {
    transform: scale(1.07);
}
.fbm-vs-thumb-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #151a27 0%, #252d44 100%);
}
.fbm-vs-thumb-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top,
        rgba(10,13,24,.88) 0%,
        rgba(10,13,24,.3) 55%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    gap: 6px;
    transition: background .28s;
}
.fbm-vs-thumb:hover .fbm-vs-thumb-overlay {
    background: linear-gradient(to top,
        rgba(10,13,24,.94) 0%,
        rgba(10,13,24,.45) 55%,
        rgba(10,13,24,.12) 100%);
}
.fbm-vs-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201,168,76,.82);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: background .25s, transform .25s, box-shadow .25s;
}
.fbm-vs-thumb:hover .fbm-vs-play-btn {
    background: #C9A84C;
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(201,168,76,.18);
}
.fbm-vs-play-btn svg { margin-left: 2px; }
.fbm-vs-thumb-label {
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(248,247,244,.85);
    line-height: 1.3;
    margin: 0;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* ─ CTA row ─ */
.fbm-vs-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.fbm-vs-yt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color .22s;
    font-family: var(--fbm-font-sans);
}
.fbm-vs-yt-link i { color: #FF0000; font-size: 17px; }
.fbm-vs-yt-link:hover { color: #1f2635; text-decoration: none; }

/* ─ Responsive ─ */
@media (max-width: 960px) {
    .fbm-vs-layout { grid-template-columns: 1fr; }
    .fbm-vs-thumbs { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .fbm-vs-player-wrap { aspect-ratio: 16/9; flex: unset; min-height: 0; }
    .fbm-vs-card   { padding: 24px; }
}
@media (max-width: 640px) {
    .fbm-vs-thumbs { grid-template-columns: 1fr 1fr; }
    .fbm-vs-section { padding: 60px 0 52px; }
    .fbm-vs-card    { padding: 18px; border-radius: 18px; }
    .fbm-vs-big-play { width: 54px; height: 54px; }
}
@media (max-width: 480px) {
    .fbm-vs-card    { padding: 14px; border-radius: 14px; }
    .fbm-vs-layout  { gap: 14px; }
    .fbm-vs-thumbs  { grid-template-columns: 1fr 1fr; gap: 8px; }
    .fbm-vs-tab     { padding: 7px 14px; font-size: 12px; }
    .fbm-vs-tabs    { gap: 8px; margin-bottom: 24px; }
    .fbm-vs-thumb-label { font-size: 9.5px; }
}

/* ════════════════════════════
   BRANCHES
════════════════════════════ */
.fbm-branch-card {
    background: #fff;
    border-radius: var(--fbm-radius-lg);
    padding: 32px;
    box-shadow: var(--fbm-shadow-sm);
    border-top: 3px solid var(--fbm-gold);
}
.fbm-branch-title {
    font-family: var(--fbm-font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--fbm-anthracite);
    margin: 0 0 16px;
}
.fbm-branch-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-family: var(--fbm-font-sans);
    font-size: 14px;
    color: #525252;
}
.fbm-branch-row i { color: var(--fbm-gold); margin-top: 2px; flex-shrink: 0; }

/* ════════════════════════════
   CONTRACTED INSTITUTIONS
════════════════════════════ */
.fbm-logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
}
.fbm-logo-grid img {
    height: 48px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter .2s;
}
.fbm-logo-grid img:hover { filter: grayscale(0) opacity(1); }

/* ════════════════════════════
   CTA SECTION
════════════════════════════ */
.fbm-cta-section {
    background: linear-gradient(135deg, var(--fbm-anthracite) 0%, var(--fbm-anthracite-light) 100%);
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.fbm-footer {
    background: var(--fbm-anthracite);
    padding-top: 64px;
}
.fbm-footer-heading {
    font-family: var(--fbm-font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--fbm-gold);
    margin-bottom: 16px;
}
.fbm-footer-link {
    display: block;
    color: rgba(248,247,244,.65);
    font-family: var(--fbm-font-sans);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s;
}
.fbm-footer-link:hover { color: var(--fbm-gold); text-decoration: none; }
.fbm-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-family: var(--fbm-font-sans);
    font-size: 14px;
    color: rgba(248,247,244,.7);
}
.fbm-footer-contact-row i {
    color: var(--fbm-gold);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}
.fbm-footer-contact-row a { color: inherit; text-decoration: none; }
.fbm-footer-contact-row a:hover { color: var(--fbm-gold); }
.fbm-footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); }
.fbm-footer-bottom {
    background: rgba(0,0,0,.25);
    padding: 18px 0;
    font-family: var(--fbm-font-sans);
    font-size: 12px;
    color: rgba(248,247,244,.45);
}

.fbm-social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--fbm-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(248,247,244,.7);
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.fbm-social-btn:hover {
    background: rgba(201,168,76,.15);
    border-color: var(--fbm-gold);
    color: var(--fbm-gold);
    text-decoration: none;
}

/* Medical disclaimer bar */
.fbm-disclaimer {
    background: #F8F7F4;
    border-top: 1px solid #e5e5e5;
    padding: 10px 0;
    font-family: var(--fbm-font-sans);
    font-size: 11px;
    color: #737373;
    text-align: center;
}

/* ════════════════════════════
   RTL SUPPORT
════════════════════════════ */
[dir="rtl"] .fbm-gold-line { margin-right: 0; margin-left: auto; }
[dir="rtl"] .fbm-mobile-menu { left: auto; right: 0; transform: translateX(100%); }
[dir="rtl"] .fbm-mobile-menu.open { transform: translateX(0); }
[dir="rtl"] .fbm-hero-inner { direction: rtl; }

/* ════════════════════════════
   BODY OVERFLOW / PADDING
════════════════════════════ */
html, body { overflow-x: hidden; }
body { padding-bottom: 62px; }
@media (min-width: 992px) { body { padding-bottom: 0; } }

/* [x-cloak] for Alpine.js */
[x-cloak] { display: none !important; }

/* ════════════════════════════
   BOOTSTRAP CONFLICT OVERRIDES
   (inline-style.blade.php loads full Bootstrap CSS which
   can override new design; these rules restore FBM styles)
════════════════════════════ */

/* Header stays fixed above everything */
#fbm-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 1000 !important; }

/* Reset Bootstrap's <header> static override */
header.fbm-header { position: fixed !important; }

/* Prevent Bootstrap h1-h6 overrides in new sections */
.fbm-hero-title    { font-family: var(--fbm-font-display) !important; color: var(--fbm-offwhite) !important; }
.fbm-hero-subtitle { font-family: var(--fbm-font-display) !important; color: var(--fbm-gold) !important; }
.fbm-section-title { font-family: var(--fbm-font-display) !important; }

/* Prevent Bootstrap .container from interfering with .fbm-container */
.fbm-container {
    width: 100% !important;
    max-width: 1280px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 24px !important;
    padding-left: 24px !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* Prevent Bootstrap .row negative margins inside new sections */
.fbm-hero .row,
.fbm-section .row,
.fbm-doctor-section .row,
.fbm-ht-section .row,
.fbm-cta-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Bootstrap sets <a> color; restore in FBM components */
.fbm-btn-primary,
.fbm-btn-primary:hover,
.fbm-btn-primary:focus,
.fbm-btn-primary:visited {
    color: var(--fbm-anthracite) !important;
    text-decoration: none !important;
}
.fbm-btn-wa,
.fbm-btn-wa:hover,
.fbm-btn-wa:focus { color: #fff !important; text-decoration: none !important; }

.fbm-nav-link,
.fbm-nav-link:hover { text-decoration: none !important; }

.fbm-mobile-menu-link,
.fbm-mobile-menu-link:hover { text-decoration: none !important; }

.fbm-article-card,
.fbm-article-card:hover { text-decoration: none !important; }

.fbm-service-card,
.fbm-service-card:hover { text-decoration: none !important; }

.fbm-procedure-card,
.fbm-procedure-card:hover { text-decoration: none !important; }

/* Bootstrap resets ul; restore in footer */
.fbm-footer ul { list-style: none !important; padding-left: 0 !important; }

/* Ensure sections don't get Bootstrap container width limits */
.fbm-hero,
.fbm-stats-bar,
.fbm-doctor-section,
.fbm-ht-section,
.fbm-cta-section {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Mobile bar must always be above Bootstrap z-index */
.fbm-mobile-bar { z-index: 990 !important; }
.fbm-mobile-menu { z-index: 1100 !important; }
.fbm-overlay { z-index: 1090 !important; }
.fbm-wa-float { z-index: 980 !important; }
