
         
/* ==========================================================================
   FAIR PRICE RENTAL — "Departure Board" design system
   Drop-in replacement for the existing <style> block.
   Same class names as your current markup — no PHP/HTML changes required.
   Built on Bootstrap 5.3 utilities; custom CSS kept to what BS can't do.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
    /* ---- Brand palette ---- */
    --fp-ink:        #111827;   /* Main text */
    --fp-navy:       #2FA8E3;   /* Primary Sky Blue */
    --fp-navy-mid:   #1C95D3;   /* Darker Blue */
    --fp-paper:      #F8FCFF;   /* Background */
    --fp-white:      #FFFFFF;

    --fp-gold:       #2FA8E3;   /* Primary Buttons */
    --fp-gold-dark:  #1487C9;   /* Button Hover */
    --fp-gold-tint:  #EAF8FE;
    --fp-teal:       #24B4F2;   /* Accent Blue */
    --fp-teal-tint:  #F0FAFF;
    --fp-red:        #DC2626;
    --fp-slate:      #6B7280;   /* Secondary Text */
    --fp-line:       #D8ECF8;   /* Borders */
    --fp-line-soft:  #EDF8FD;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-mono:    'IBM Plex Mono', ui-monospace, monospace;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 2px 10px rgba(47,168,227,.10);
    --shadow-md: 0 12px 28px rgba(47,168,227,.16);
    --shadow-lg: 0 24px 56px rgba(47,168,227,.22);

    --transition: all .25s cubic-bezier(.4,0,.2,1);

    --dh-nav-padding: 18px;
    --dh-logo-height: 46px;

    /* Legacy variables (unchanged names) */
    --dh-primary: var(--fp-gold);
    --dh-primary-light: var(--fp-gold-dark);
    --dh-secondary: var(--fp-navy);
    --dh-secondary-light: var(--fp-slate);
    --dh-blue: var(--fp-navy);
    --dh-blue-light: var(--fp-teal-tint);
    --dh-green: var(--fp-teal);
    --dh-green-light: var(--fp-teal-tint);
    --dh-text: var(--fp-ink);
    --dh-dark: #1F2937;
    --dh-dark-mid: var(--fp-ink);
    --dh-white: var(--fp-white);
    --dh-cream: var(--fp-paper);
    --dh-gray-light: var(--fp-line-soft);
    --dh-text: var(--fp-ink);
    --dh-gray: var(--fp-slate);
    --dh-border: rgba(47,168,227,.20);
    --dh-orange: var(--fp-gold);
    --dh-orange-light: var(--fp-gold-tint);
}

*, *::before, *::after { box-sizing: border-box; }

/* ---- Base ---- */
html, body {
    font-family: var(--font-body);
    color: var(--fp-ink);
    background: var(--fp-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body { font-size: 15px; color: var(--dh-dark-mid); }
a { color: var(--fp-navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--fp-gold-dark); }

/* ---- Headings & prose (global rhythm) ---- */
h1, .h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1.15; color: var(--fp-ink); letter-spacing: -0.02em; margin: 0 0 1.5rem; }
h2, .h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1.25; color: var(--fp-ink); letter-spacing: -0.01em; margin: 2rem 0 1rem; border-bottom: 1px solid var(--fp-line-soft); padding-bottom: .5rem; }
h3, .h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--dh-dark-mid); margin: 1.4rem 0 .75rem; }
h4, .h4, h5, .h5 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--dh-dark-mid); margin: 1.25rem 0 .5rem; }
h6, .h6 { font-family: var(--font-display); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--fp-slate); }
p { font-size: 1.08rem; font-weight: 400; line-height: 1.65; color: var(--dh-dark-mid); margin: 0 0 1.5rem; }
.lead, .text-lead { font-size: 1.3rem; font-weight: 500; color: var(--fp-slate); }
blockquote { font-style: italic; font-size: 1.2rem; border-left: 3px solid var(--fp-gold); padding: .5rem 0 .5rem 1.5rem; margin: 2rem 0; color: var(--fp-slate); }
small, .text-small { font-size: .875rem; color: var(--fp-slate); }
li, td, th { font-size: 1rem; color: var(--dh-dark-mid); }

@media (max-width: 768px) {
    html, body { font-size: 15px; }
    h1, .h1 { font-size: 2.05rem; margin-bottom: 1.1rem; }
    h2, .h2 { font-size: 1.5rem; }
    h3, .h3 { font-size: 1.25rem; }
    p, li { font-size: 1.02rem; }
    .lead, .text-lead { font-size: 1.1rem; }
}

.font-display { font-family: var(--font-display) !important; }
.bg-dh-cream { background: var(--fp-paper) !important; }
.bg-dh-navy  { background: var(--fp-navy) !important; }
.dh-bg-primary { background: var(--fp-navy); }
.text-dh-gold { color: var(--fp-gold) !important; }
.text-dh-navy { color: var(--fp-navy) !important; }
.text-navy    { color: var(--fp-navy) !important; }
.letter-spacing-2 { letter-spacing: 2px; }

/* ---- Buttons ---- */
.btn-dh-primary {
    background: var(--fp-gold);
    color: var(--fp-ink) !important;
    border: none; border-radius: 999px;
    padding: 12px 28px; font-weight: 700; font-size: 13px;
    letter-spacing: .3px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 18px rgba(200, 155, 60, 0.3);
    transition: var(--transition);
}
.btn-dh-primary:hover { background: var(--fp-gold-dark); color: var(--fp-ink); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,155,60,.4); }

.btn-dh-outline, .btn-dh-secondary {
    background: transparent; color: var(--fp-navy) !important;
    border: 1.5px solid rgba(22,40,61,.25); border-radius: 999px;
    padding: 10px 24px; font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: .3px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-dh-outline:hover, .btn-dh-secondary:hover { background: var(--fp-navy); color: #fff !important; border-color: var(--fp-navy); }

.btn-dh-ghost {
    background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px; padding: 10px 24px; font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: .3px; transition: var(--transition);
}
.btn-dh-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ---- Eyebrow / section label (route-code styling) ---- */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: var(--fp-gold-dark);
    margin-bottom: 14px;
}
.section-eyebrow::before { content: '—'; color: var(--fp-gold); }

/* ---- Generic cards ---- */
.dh-card {
    background: var(--fp-white); border-radius: var(--radius-md);
    border: 1px solid var(--fp-line); overflow: hidden;
    transition: var(--transition);
}
.dh-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,155,60,.35); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.dh-header { position: sticky; top: 0; z-index: 9999; transition: box-shadow .3s ease; }
.dh-header.is-scrolled { box-shadow: var(--shadow-md); }

.dh-topbar {
    background: var(--fp-navy-mid); padding: 9px 0; font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.dh-topbar a { color: rgba(255,255,255,.8); display: inline-flex; align-items: center; transition: color .2s; }
.dh-topbar a:hover { color: var(--fp-gold); }
.topbar-divider { color: rgba(255,255,255,.15); margin: 0 14px; }

.dh-navbar {
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--fp-line);
    padding: var(--dh-nav-padding) 0 !important;
    transition: padding .3s ease, background-color .3s ease;
}
.dh-header.is-scrolled .dh-navbar { --dh-nav-padding: 10px; --dh-logo-height: 36px; }
.dh-navbar .navbar-brand img { height: var(--dh-logo-height); width: auto; object-fit: contain; transition: height .3s ease; }
.dh-navbar .nav-link { font-size: 14px; font-weight: 600; color: var(--fp-ink) !important; padding: 10px 14px !important; transition: color .2s; }
.dh-navbar .nav-link:hover { color: var(--fp-gold-dark) !important; }

.dh-navbar .dropdown-menu {
    border: 1px solid var(--fp-line); border-top: 3px solid var(--fp-gold);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
    padding: 6px; min-width: 230px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    display: block;
}
.dh-navbar .dropdown-item {
    border-radius: 6px; padding: 8px 12px; font-size: 13px; font-weight: 500;
    color: var(--fp-ink); display: flex; align-items: center; transition: all .15s ease;
}
.dh-navbar .dropdown-item:hover { background: var(--fp-gold-tint); color: var(--fp-gold-dark); padding-left: 15px; }
.dh-navbar .dropdown-divider { border-top: 1px solid var(--fp-line-soft); margin: 4px 0 !important; }
.text-gold-accent { color: var(--fp-gold-dark) !important; font-size: 12.5px !important; }
.scrollable-dropdown { max-height: 280px; overflow-y: auto; }
.scrollable-dropdown::-webkit-scrollbar { width: 4px; }
.scrollable-dropdown::-webkit-scrollbar-thumb { background: rgba(22,40,61,.15); border-radius: 10px; }

@media (min-width: 992px) {
    .custom-hover-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .dh-navbar .nav-link.dropdown-toggle::after { transition: transform .2s ease; }
    .custom-hover-dropdown:hover .nav-link.dropdown-toggle::after { transform: rotate(180deg); }
}
@media (max-width: 991.98px) {
    .dh-navbar .dropdown-toggle::after { display: none !important; }
    .dh-navbar .dropdown-menu { display: none !important; }
    .dh-navbar .nav-link { padding: 12px 0 !important; border-bottom: 1px solid var(--fp-line-soft); width: 100%; }
    .action-group { width: 100%; }
    .btn-dh-primary, .btn-dh-secondary { width: 100%; justify-content: center; }
}
.dh-home-hero {
    background:
        linear-gradient(155deg, rgba(18,22,28,.94) 0%, rgba(22,40,61,.93) 55%, rgba(18,22,28,.96) 100%),
        url('/img/luxury-bus-for-rent-in-dubai.jfif') center/cover no-repeat;
    background-blend-mode: multiply;
    min-height: 88vh; position: relative; overflow: hidden;
    display: flex; align-items: center; padding: 60px 0;
}
.dh-home-hero .hero-grid-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(200,155,60,.05) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(200,155,60,.05) 1px, transparent 1px);
    background-size: 44px 44px;
}
.dh-home-hero::before {
    content: ''; position: absolute; width: 620px; height: 620px; top: -12%; right: -6%;
    background: radial-gradient(circle, rgba(200,155,60,.10) 0%, transparent 70%); pointer-events: none;
}
.dh-home-hero .hero-content { position: relative; z-index: 5; width: 100%; }
.dh-home-hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.3rem); font-weight: 700; color: #fff;
    line-height: 1.14; letter-spacing: -0.02em; margin-bottom: 20px;
}
.dh-home-hero h1 em {
    color: var(--fp-gold); font-style: normal;
    background: linear-gradient(135deg, #fff 25%, var(--fp-gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.dh-home-hero .hero-sub { color: #A9B4C2; font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 92%; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px; padding: 6px 12px; font-family: var(--font-mono);
    font-size: 11.5px; font-weight: 600; letter-spacing: .04em; color: #CBD5E1; margin-bottom: 26px;
}
.hero-badge .pulse { width: 6px; height: 6px; background: var(--fp-teal); border-radius: 50%; animation: fpPulse 2s infinite; }
@keyframes fpPulse {
    0% { box-shadow: 0 0 0 0 rgba(43,111,107,.6); }
    70% { box-shadow: 0 0 0 7px rgba(43,111,107,0); }
    100% { box-shadow: 0 0 0 0 rgba(43,111,107,0); }
}

.hero-stat-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm); padding: 16px; transition: border-color .3s;
}
.hero-stat-card:hover { border-color: rgba(200,155,60,.35); }
.hero-stat-card .stat-num { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 600; color: #fff; line-height: 1; }
.hero-stat-card .stat-label { font-size: 11px; color: #8B97A8; margin-top: 6px; }

/* Booking / search panel — styled like a dispatch ticket console */
.hero-saas-panel {
    background: rgba(255,255,255,.94); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.6); padding: 28px 24px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.hero-saas-panel .panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px; border-bottom: 1px dashed var(--fp-line);
    padding-bottom: 14px;
}
.hero-saas-panel .panel-title {
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    color: var(--fp-ink); text-transform: uppercase; letter-spacing: .5px; margin: 0;
}
.hero-saas-panel .panel-status {
    font-family: var(--font-mono); font-size: 10.5px; color: var(--fp-gold-dark);
    background: var(--fp-gold-tint); padding: 4px 10px; border-radius: 6px; font-weight: 700;
}
.saas-field-row { position: relative; margin-bottom: 16px; }
.saas-field-row .field-icon { position: absolute; left: 14px; top: 37px; color: var(--fp-slate); font-size: 13px; pointer-events: none; }
.saas-field-row .field-label { font-size: 11px; font-weight: 600; color: var(--fp-slate); margin-bottom: 6px; }
.saas-field-row .saas-input {
    width: 100%; padding: 11px 16px 11px 38px; border: 1.5px solid var(--fp-line);
    border-radius: var(--radius-sm); background: var(--fp-paper); color: var(--dh-dark-mid);
    font-size: 13.5px; outline: none; transition: var(--transition); appearance: none;
}
.saas-field-row select.saas-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2316283D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.saas-field-row .saas-input:focus { border-color: var(--fp-gold); box-shadow: 0 0 0 3px rgba(200,155,60,.16); background: #fff; }
.saas-action-grid { display: grid; grid-template-columns: 46px 1fr; gap: 10px; margin-top: 24px; }
.btn-saas-whatsapp {
    height: 44px; border-radius: var(--radius-sm); background: rgba(43,111,107,.12);
    border: 1px solid rgba(43,111,107,.3); color: var(--fp-teal); font-size: 17px;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.btn-saas-whatsapp:hover { background: var(--fp-teal); color: #fff; }
.btn-saas-execute {
    height: 44px; border-radius: var(--radius-sm); background: var(--fp-navy);
    border: none; color: #fff; font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .3px;
    display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
    box-shadow: 0 6px 18px rgba(22,40,61,.25); transition: var(--transition);
}
.btn-saas-execute:hover { background: var(--fp-navy-mid); transform: translateY(-1px); }

@media (max-width: 991px) {
    .dh-searchbar { border-radius: 20px !important; }
    .dh-searchbar > div { flex-direction: column !important; }
    .field-divider { display: none !important; }
}

/* ==========================================================================
   SERVICES — route carousel
   ========================================================================== */
.services-scroll { display: flex; gap: 22px; overflow-x: auto; padding: 15px 4px 30px; cursor: grab; scroll-behavior: smooth; scrollbar-width: none; }
.services-scroll::-webkit-scrollbar { display: none; }
.services-scroll:active { cursor: grabbing; }

.service-card {
    flex: 0 0 280px; height: 370px; border-radius: var(--radius-md); overflow: hidden;
    position: relative; box-shadow: var(--shadow-sm); background: var(--fp-white);
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,22,28,.95) 0%, rgba(18,22,28,.35) 55%, transparent 100%); }
.service-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.service-card-tag {
    display: inline-block; background: var(--fp-gold); color: var(--fp-ink);
    font-family: var(--font-mono); font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; border-radius: 4px; padding: 4px 10px; margin-bottom: 10px;
}
.service-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0; line-height: 1.3; }
.service-btn-circle {
    position: absolute; top: 18px; right: 18px; width: 42px; height: 42px;
    background: rgba(255,255,255,.14); backdrop-filter: blur(8px); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
    transition: all .3s cubic-bezier(.16,1,.3,1);
}
.service-card:hover .service-btn-circle { background: var(--fp-gold); color: var(--fp-ink); transform: rotate(-45deg); }

/* ==========================================================================
   FLEET CARDS
   ========================================================================== */
.fleet-card-modern {
    border: 1px solid var(--fp-line); border-radius: var(--radius-md); background: var(--fp-white);
    transition: var(--transition); overflow: hidden;
}
.fleet-card-modern:hover { transform: translateY(-6px); border-color: rgba(200,155,60,.4); box-shadow: var(--shadow-md) !important; }
.fleet-img-container { height: 210px; overflow: hidden; position: relative; background: var(--fp-paper); }
.fleet-img-container img { transition: transform .6s cubic-bezier(.4,0,.2,1); }
.fleet-card-modern:hover .fleet-img-container img { transform: scale(1.045); }
.fleet-badge-status {
    position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
    color: var(--fp-ink); font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; z-index: 2;
}
.fleet-title-link { color: var(--fp-ink); font-weight: 700; font-size: 24px; letter-spacing: -.2px; transition: color .2s; }
.fleet-title-link:hover { color: var(--fp-gold-dark); }
.fleet-spec-pill { background: var(--fp-paper); color: var(--fp-slate); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; }

/* Price / fare matrix — mono, ticket-like rows */
.matrix-container { background: var(--fp-paper); border-radius: var(--radius-sm); padding: 14px; border: 1px solid var(--fp-line-soft); }
.matrix-row { padding: 6px 0; border-bottom: 1px dashed var(--fp-line); }
.matrix-row:last-child { border-bottom: none; padding-bottom: 0; }
.matrix-row:first-child { padding-top: 0; }
.matrix-item-title { font-weight: 600; color: var(--fp-slate); }
.matrix-amount-wrapper { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-mono); }
.matrix-currency { font-size: 10.5px; font-weight: 700; color: var(--fp-gold-dark); text-transform: uppercase; }
.matrix-amount { font-weight: 700; color: var(--fp-ink); }

/* ==========================================================================
   MASONRY / PIN LISTS
   ========================================================================== */
.masonry-wrapper { column-count: 3; column-gap: 20px; width: 100%; }
.masonry-brick { display: inline-block; width: 100%; margin-bottom: 20px; break-inside: avoid; }
.pin-card { transition: var(--transition); border: 1px solid var(--fp-line) !important; }
.pin-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg) !important; border-color: rgba(200,155,60,.35) !important; }
.pin-list-item { text-decoration: none; transition: all .25s; border-radius: 6px; }
.pin-list-item:hover { background: var(--fp-paper); padding-left: 12px !important; }
@media (max-width: 1200px) { .masonry-wrapper { column-count: 2; } }
@media (max-width: 768px) { .masonry-wrapper { column-count: 1; } }

/* ==========================================================================
   TABLE OF CONTENTS
   ========================================================================== */
#toc { display: flex; flex-direction: column; gap: 4px; }
#toc a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--fp-slate); transition: all .25s ease; }
#toc a:hover { background: var(--fp-paper); color: var(--fp-gold-dark); transform: translateX(4px); }
#toc a.active { background: var(--fp-gold-tint); color: var(--fp-gold-dark); font-weight: 700; box-shadow: inset 3px 0 var(--fp-gold); }
html { scroll-behavior: smooth; }
#maincontent h2 { scroll-margin-top: 140px; }
.toc-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--fp-line); flex: 0 0 7px; transition: all .25s ease; }
#toc a:hover .toc-dot, #toc a.active .toc-dot { background: var(--fp-gold); box-shadow: 0 0 0 4px rgba(200,155,60,.15); }

/* ==========================================================================
   SUB-PAGE HERO / BREADCRUMB
   ========================================================================== */
.card-search { transition: var(--transition); border: 1px solid var(--fp-line) !important; border-radius: var(--radius-md) !important; overflow: hidden; }
.card-search:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dh-page-hero { background: linear-gradient(150deg, var(--fp-navy) 0%, var(--fp-ink) 75%); padding: 84px 0 0; position: relative; overflow: hidden; }
.dh-page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 10%, rgba(200,155,60,.08) 0%, transparent 50%),
                radial-gradient(ellipse at 5% 90%, rgba(43,111,107,.08) 0%, transparent 50%);
}
.dh-page-hero .hero-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px); background-size: 26px 26px; }
.dh-page-hero .page-curve { background: var(--fp-white); height: 52px; clip-path: ellipse(65% 100% at 50% 100%); margin-top: 36px; }

.glass-breadcrumb {
    display: inline-flex; align-items: center; background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px; padding: 7px 18px; gap: 6px; margin-bottom: 22px;
}
.glass-breadcrumb a { color: rgba(255,255,255,.6); font-size: 12.5px; }
.glass-breadcrumb a:hover { color: var(--fp-gold); }
.glass-breadcrumb .sep { color: rgba(255,255,255,.25); font-size: 12px; }
.glass-breadcrumb .current { color: #fff; font-size: 12.5px; font-weight: 600; }

/* ==========================================================================
   CLUSTER GRID / FAQ
   ========================================================================== */
.cluster-grid { column-count: 3; column-gap: 16px; }
.cluster-item { display: inline-block; width: 100%; margin-bottom: 16px; break-inside: avoid; }
.cluster-card { transition: var(--transition); border: 1px solid var(--fp-line) !important; }
.cluster-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) !important; border-color: rgba(200,155,60,.35) !important; }
.cluster-accent { height: 3px; width: 40px; background: var(--fp-gold); margin-top: 10px; }
@media (max-width: 992px) { .cluster-grid { column-count: 2; } }
@media (max-width: 576px) { .cluster-grid { column-count: 1; } }


/* ==========================================================================
   FOOTER
   ========================================================================== */
   
.dh-footer { background-color: var(--fp-ink); color: rgba(255, 255, 255, 0.68); position: relative; }
.dh-footer-glow { position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, rgba(11, 15, 25, 0) 70%); pointer-events: none; }
.dh-brand-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.07); backdrop-filter: blur(10px); transition: var(--transition); }
.dh-brand-card:hover { border-color: rgba(200, 155, 60, 0.25); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.dh-footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 16px; }
.dh-brand-desc { font-size: 13.5px; line-height: 1.75; color: rgba(255, 255, 255, 0.65); }
.dh-manager-badge { font-size: 13px; color: rgba(255, 255, 255, 0.85); padding-top: 10px; border-top: 1px dashed rgba(255, 255, 255, 0.1); }
.text-gold { color: var(--fp-gold); }
.dh-footer-title { font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--fp-gold); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.dh-footer-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(200, 155, 60, 0.3), transparent); }
.dh-footer-links li { margin-bottom: 4px; }
.dh-footer-link { display: inline-flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.6); font-size: 13.5px; padding: 6px 0; text-decoration: none; transition: var(--transition); }
.dh-footer-link:hover { color: var(--fp-gold); transform: translateX(4px); }
.dh-footer-link i { font-size: 9px; color: var(--fp-gold); transition: var(--transition); }
.dh-footer-link:hover i { color: #ffffff; }
.dh-industry-box { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); }
.dh-industry-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--fp-gold-light); margin-bottom: 6px; }
.dh-industry-text { font-size: 12px; color: rgba(255, 255, 255, 0.55); margin-bottom: 12px; line-height: 1.5; }
.dh-btn-pill { display: inline-block; background: rgba(200, 155, 60, 0.12); border: 1px solid rgba(200, 155, 60, 0.25); border-radius: 50px; padding: 5px 14px; color: var(--fp-gold-light); font-size: 11.5px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.dh-btn-pill:hover { background: var(--fp-gold); color: var(--fp-ink); border-color: var(--fp-gold); }
.dh-footer-contact { display: flex; align-items: flex-start; gap: 12px; }
.dh-footer-contact .icon { width: 36px; height: 36px; background: rgba(200, 155, 60, 0.1); border: 1px solid rgba(200, 155, 60, 0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--fp-gold); font-size: 13px; flex-shrink: 0; }
.dh-footer-contact .contact-detail { display: flex; flex-direction: column; }
.dh-footer-contact .label { font-size: 11px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.dh-footer-contact .value { font-size: 13.5px; color: rgba(255, 255, 255, 0.85); transition: var(--transition); }
.dh-footer-contact a.value:hover { color: var(--fp-gold-light); }
.dh-whatsapp-card { background: rgba(37, 211, 102, 0.05); border: 1px solid rgba(37, 211, 102, 0.15); padding: 10px 14px; border-radius: 12px; }
.dh-whatsapp-card .whatsapp-icon { background: rgba(37, 211, 102, 0.15) !important; border-color: rgba(37, 211, 102, 0.3) !important; color: #25D366 !important; }
.dh-social-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.7); font-size: 14px; text-decoration: none; transition: var(--transition); }
.dh-social-btn:hover { background: var(--fp-gold); border-color: var(--fp-gold); color: var(--fp-ink); transform: translateY(-3px); box-shadow: 0 6px 15px rgba(200, 155, 60, 0.25); }
.dh-map-wrapper iframe { width: 100% !important; height: 220px !important; border: 0 !important; filter: grayscale(80%) invert(90%) contrast(90%); transition: var(--transition); }
.dh-map-wrapper:hover iframe { filter: grayscale(0%) invert(0%) contrast(100%); }
.dh-footer-bottom { padding: 20px 0; font-size: 12.5px; border-top: 1px solid rgba(255, 255, 255, 0.06); background: rgba(0, 0, 0, 0.2); }
.dh-copyright { color: rgba(255, 255, 255, 0.45); }
.dh-copyright a { color: var(--fp-gold); text-decoration: none; }
.dh-copyright a:hover { text-decoration: underline; }
.dh-legal-links a { color: rgba(255, 255, 255, 0.45); text-decoration: none; margin-left: 20px; transition: var(--transition); }
.dh-legal-links a:hover { color: var(--fp-gold); }
@media (max-width: 767.98px) { .dh-legal-links a { margin: 0 10px; } }

/* ==========================================================================
   FLOATING CONTACT BUTTONS
   ========================================================================== */
.contact-buttons { position: fixed; bottom: 26px; right: 22px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; }
.contact-buttons a {
    width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s;
}
.contact-buttons a:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.contact-buttons .whatsapp-button { background: var(--fp-teal); }
.contact-buttons .call-button { background: var(--fp-navy); }
.contact-buttons .email-button { background: var(--fp-ink); }

/* ==========================================================================
   DIVIDER — replaces the animated sun-emoji divider with a clean route line
   ========================================================================== */
.gold-divider {
    position: relative; width: 100%; height: 2px; margin: 24px 0; border-radius: 4px;
    background-image: repeating-linear-gradient(90deg, var(--fp-gold) 0 10px, transparent 10px 18px);
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.dh-form-control, .clean-form-control, .form-control, .form-select {
    border: 1.5px solid var(--fp-line); border-radius: var(--radius-sm) !important;
    padding: 11px 15px !important; font-family: var(--font-body); font-size: 14px;
    transition: border-color .2s, box-shadow .2s; color: var(--dh-dark-mid);
}
.dh-form-control:focus, .clean-form-control:focus, .form-control:focus, .form-select:focus {
    border-color: var(--fp-gold) !important; box-shadow: 0 0 0 3px rgba(200,155,60,.14) !important; outline: none;
}
.dh-contact-card { border-radius: var(--radius-lg) !important; overflow: hidden; }
.dh-contact-card .card-header { background: linear-gradient(135deg, var(--fp-navy) 0%, var(--dh-dark-mid) 100%) !important; padding: 24px !important; }

.sidebar-sticky { position: sticky; top: 130px; }
.more-link { display: flex; align-items: center; gap: 8px; color: var(--dh-dark-mid); font-size: 13.5px; font-weight: 500; padding: 7px 10px; border-radius: 8px; transition: background .2s, color .2s; }
.more-link:hover { background: var(--fp-paper); color: var(--fp-gold-dark); }
.more-link i { font-size: 10px; color: var(--fp-gold); }
.blog-item img { transition: transform .4s ease; }
.blog-item:hover img { transform: scale(1.05); }
.p3-hero-img { border-radius: var(--radius-lg); overflow: hidden; }
.p3-hero-img img { transition: transform .6s ease; }
.p3-hero-img:hover img { transform: scale(1.03); }
.star-gold { color: var(--fp-gold-dark); }
.badge-top-rated { background: var(--fp-red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .5px; }
.badge-popular { background: var(--fp-paper); color: var(--dh-dark-mid); border: 1px solid var(--fp-line); font-size: 10px; font-weight: 600; }

/* ==========================================================================
   PACKAGE WIDGET (sidebar "latest rates")
   ========================================================================== */
.latest-package-widget { border: 1px solid var(--fp-line); border-radius: var(--radius-md); overflow: hidden; background: var(--fp-white); }
.latest-package-widget .card-header { padding: 15px 18px; border: 0; }
.latest-package-widget .widget-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin: 0; color: #fff; }
.latest-package-widget .widget-subtitle { font-size: 11px; color: rgba(255,255,255,.8); }
.latest-package-widget .badge { font-size: 10px; font-weight: 700; padding: 6px 10px; }
.latest-package-widget .list-group-item { padding: 14px 18px; border: 0; border-bottom: 1px dashed var(--fp-line); transition: .25s; }
.latest-package-widget .list-group-item:last-child { border-bottom: none; }
.latest-package-widget .list-group-item:hover { background: var(--fp-paper); transform: translateX(4px); }
.package-title { font-size: 13px; font-weight: 600; color: var(--dh-dark-mid); line-height: 1.4; }
.package-link { font-size: 11px; color: var(--fp-slate); margin-top: 3px; }
.package-price { text-align: right; white-space: nowrap; font-family: var(--font-mono); }
.package-price .currency { display: block; font-size: 10px; color: var(--fp-slate); text-transform: uppercase; letter-spacing: .5px; }
.package-price .amount { font-size: 18px; font-weight: 700; color: var(--fp-gold-dark); line-height: 1; }
.latest-package-widget .card-footer { background: var(--fp-paper); border: 0; padding: 15px; }
.latest-package-widget .btn { font-size: 13px; font-weight: 600; }

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */
.clean-pricing-section { background: var(--fp-white); color: var(--dh-dark-mid); }
.currency-select-box { border: 1px solid var(--fp-line); border-radius: var(--radius-sm); padding: 6px 12px; background: var(--fp-white); }

.price-card {
    position: relative; border-radius: var(--radius-md) !important; border: 1px solid var(--fp-line);
    background: var(--fp-white); transition: var(--transition);
}
.price-card:hover { transform: translateY(-3px); border-color: var(--fp-gold); box-shadow: var(--shadow-md) !important; }
.price-card.is-popular { background: linear-gradient(180deg, var(--fp-white) 0%, var(--fp-gold-tint) 100%); border-color: var(--fp-gold); }
.price-card .popular-tag {
    position: absolute; top: -10px; right: 20px; background: var(--fp-gold); color: var(--fp-ink);
    font-family: var(--font-mono); font-size: .64rem; font-weight: 700; text-transform: uppercase;
    padding: 3px 12px; border-radius: 4px;
}
.btn-action {
    border-radius: var(--radius-sm) !important; font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .03em; padding: 10px; transition: var(--transition);
}
.btn-select-outline { border: 1.5px solid var(--fp-navy); color: var(--fp-navy); background: transparent; }
.btn-select-outline:hover { background: var(--fp-navy); color: #fff !important; }
.price-card.is-popular .btn-action { background: var(--fp-gold); border-color: var(--fp-gold); color: var(--fp-ink) !important; }
.summary-table th { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--fp-slate); background: var(--fp-paper) !important; padding: 8px 12px !important; }
.summary-table td { padding: 10px 12px !important; }
.sticky-sidebar { position: sticky; top: 24px; }

/* Compact plan cards */
.compact-price-card { position: relative; border-radius: var(--radius-sm) !important; border: 1px solid var(--fp-line); background: var(--fp-white); transition: var(--transition); }
.compact-price-card:hover { transform: translateY(-2px); border-color: var(--fp-gold); box-shadow: var(--shadow-sm) !important; }
.compact-price-card.is-popular { border: 1.5px solid var(--fp-gold); background: linear-gradient(180deg, #fff 0%, var(--fp-gold-tint) 100%); }
.compact-price-card .plan-title { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--fp-ink) !important; }
.rental-type-badge { font-family: var(--font-mono); font-size: .62rem; font-weight: 700; padding: 3px 6px; color: var(--fp-slate); background: var(--fp-paper); border-radius: 4px; }
.compact-price-card .display-price-value { font-family: var(--font-mono); font-size: 1.4rem !important; letter-spacing: -0.02em; color: var(--fp-ink) !important; }
.compact-price-card .dynamic-currency-label { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; color: var(--fp-slate); }
.compact-price-card .popular-tag {
    position: absolute; top: -9px; right: 14px; background: var(--fp-gold); color: var(--fp-ink);
    font-size: .6rem; font-weight: 800; text-transform: uppercase; padding: 2px 8px; border-radius: 3px; letter-spacing: .04em;
}
.btn-popular-action { background: var(--fp-gold); border: 1px solid var(--fp-gold); color: var(--fp-ink) !important; }
.btn-popular-action:hover { background: var(--fp-gold-dark); border-color: var(--fp-gold-dark); }

.dh-faq-advanced {
                background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            }
            .faq-compact-search {
                position: relative;
                width: 100%;
                max-width: 280px;
            }

            .faq-search-input {
                width: 100%;
                padding: 0.55rem 1rem 0.55rem 2.6rem;
                font-size: 0.875rem;
                border-radius: 50rem;
                border: 1px solid #e2e8f0;
                background-color: #ffffff;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
                transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .faq-search-input:focus {
                outline: none;
                border-color: var(--bs-primary, #0d6efd);
                box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
            }

            .faq-search-icon {
                position: absolute;
                left: 0.95rem;
                top: 50%;
                transform: translateY(-50%);
                color: #94a3b8;
                pointer-events: none;
            }

            /* CSS Masonry Grid */
            .faq-masonry-grid {
                column-count: 1;
                column-gap: 2.5rem;
            }

            @media (min-width: 768px) {
                .faq-masonry-grid {
                    column-count: 2;
                }
            }

            @media (min-width: 1200px) {
                .faq-masonry-grid {
                    column-count: <?= ($total_faqs <= 5) ? '1' : '3' ?>;
                }
            }

            .faq-category-block {
                break-inside: avoid;
                margin-bottom: 2.5rem;
            }

            /* Category Badges */
            .faq-cat-badge {
                display: inline-flex;
                align-items: center;
                gap: 0.6rem;
                font-size: 0.825rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: #0f172a;
                margin-bottom: 1.25rem;
                padding: 0.35rem 0.85rem;
                background: #f1f5f9;
                border-radius: 50rem;
            }

            .faq-cat-count {
                background: var(--bs-primary, #0d6efd);
                color: #ffffff;
                font-size: 0.725rem;
                padding: 0.1rem 0.45rem;
                border-radius: 50rem;
                font-weight: 600;
            }

            /* Borderless Items */
            .faq-clean-item {
                border: none !important;
                background: transparent;
                margin-bottom: 0.5rem;
                border-radius: 0.75rem;
                transition: background-color 0.2s ease;
            }

            .faq-clean-btn {
                background: none;
                border: none;
                width: 100%;
                text-align: left;
                padding: 0.85rem 0.85rem;
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                gap: 1rem;
                font-weight: 600;
                font-size: 0.95rem;
                color: #1e293b;
                cursor: pointer;
                border-radius: 0.75rem;
                transition: color 0.2s ease, background-color 0.2s ease;
            }

            .faq-clean-btn:hover {
                color: var(--bs-primary, #0d6efd);
                background-color: #f8fafc;
            }

            .faq-clean-btn:not(.collapsed) {
                color: var(--bs-primary, #0d6efd);
                background-color: #f1f5f9;
            }

            /* Custom Animated Toggle Button */
            .faq-toggle-icon {
                width: 22px;
                height: 22px;
                background-color: #f1f5f9;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                margin-top: 2px;
                transition: background-color 0.25s ease, transform 0.25s ease;
            }

            .faq-toggle-icon svg {
                width: 12px;
                height: 12px;
                stroke: #64748b;
                stroke-width: 2.5;
                transition: stroke 0.25s ease;
            }

            .faq-clean-btn:hover .faq-toggle-icon {
                background-color: rgba(13, 110, 253, 0.1);
            }

            .faq-clean-btn:hover .faq-toggle-icon svg {
                stroke: var(--bs-primary, #0d6efd);
            }

            .faq-clean-btn:not(.collapsed) .faq-toggle-icon {
                background-color: var(--bs-primary, #0d6efd);
                transform: rotate(180deg);
            }

            .faq-clean-btn:not(.collapsed) .faq-toggle-icon svg {
                stroke: #ffffff;
            }

            .faq-clean-body {
                padding: 0.35rem 0.85rem 1rem 0.85rem;
                color: #475569;
                font-size: 0.92rem;
                line-height: 1.65;
            }

            /* No Results Message */
            .faq-no-results {
                display: none;
                text-align: center;
                padding: 3rem 1rem;
                color: #94a3b8;
            }
/* ==========================================================================
   ROUTE CAROUSEL CONTROLS
   ========================================================================== */
.subpage-carousel-wrapper { display: flex; align-items: center; max-width: 100%; }
.subpage-scroll-track { display: flex; gap: 12px; overflow-x: auto; white-space: nowrap; scroll-behavior: smooth; padding: 5px 0; width: 100%; scrollbar-width: none; }
.subpage-scroll-track::-webkit-scrollbar { display: none; }
.carousel-more-link {
    display: inline-flex; align-items: center; background: rgba(255,255,255,.08); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.15); color: #fff; padding: 8px 20px; border-radius: 999px;
    font-size: 13px; font-weight: 500; transition: all .2s ease; flex: 0 0 auto;
}
.carousel-more-link:hover { background: rgba(200,155,60,.22); color: #fff; transform: translateY(-1px); }
.carousel-control-btn {
    background: rgba(255,255,255,.06); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15);
    color: #16283D; width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center;
    justify-content: center; cursor: pointer; z-index: 10; transition: background .2s; margin: 0 8px;
}
.carousel-control-btn:hover { background: var(--fp-gold); color: var(--fp-ink); border-color: transparent; }
.btn-action-details {
    background: var(--fp-navy); color: #fff; font-size: 13px; font-weight: 600; padding: 10px 16px;
    border-radius: var(--radius-sm); border: 1px solid var(--fp-navy); display: inline-flex; align-items: center;
    justify-content: center; transition: var(--transition);
}
.btn-action-details:hover { background: var(--fp-gold); border-color: var(--fp-gold); color: var(--fp-ink); transform: translateY(-1px); }
.btn-action-icon { width: 40px; height: 40px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: 15px; transition: var(--transition); flex-shrink: 0; }
.btn-action-call { border: 1px solid rgba(43,111,107,.25); background: rgba(43,111,107,.08); color: var(--fp-teal); }
.btn-action-call:hover { background: var(--fp-teal); color: #fff; border-color: var(--fp-teal); }
.btn-action-msg { border: 1px solid rgba(43,111,107,.25); background: rgba(43,111,107,.08); color: var(--fp-teal); }
.btn-action-msg:hover { background: var(--fp-teal); color: #fff; border-color: var(--fp-teal); }

/* ==========================================================================
   OFFER CARD
   ========================================================================== */
.offer-card { position: relative; overflow: hidden; border: 1px solid rgba(200,155,60,.18); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.offer-card::before { content: ""; position: absolute; top: -60px; right: -60px; width: 140px; height: 140px; border-radius: 50%; background: rgba(200,155,60,.08); }
.offer-card::after { content: ""; position: absolute; bottom: -80px; left: -80px; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,255,255,.03); }
.offer-badge {
    position: absolute; top: 15px; right: -38px; width: 150px; text-align: center; padding: 6px 0;
    font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--fp-ink);
    background: linear-gradient(90deg, var(--fp-gold-tint), var(--fp-gold)); transform: rotate(45deg);
}
.offer-icon { width: 70px; height: 70px; margin: auto; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(200,155,60,.12); border: 2px solid rgba(200,155,60,.35); }
.offer-icon i { font-size: 28px; color: var(--fp-gold); }
.offer-highlight { display: inline-block; padding: 10px 18px; border-radius: 999px; background: rgba(200,155,60,.08); color: var(--fp-gold); font-size: 13px; font-weight: 600; }
.offer-highlight i { margin-right: 6px; }

/* ==========================================================================
   SPEC TABLE
   ========================================================================== */
.spec-table-wrapper { border: 1px solid var(--fp-line); border-radius: var(--radius-sm); background: var(--fp-white); overflow: hidden; }
.spec-table { width: 100%; margin-bottom: 0; font-size: 13px; }
.spec-table th { background: var(--fp-paper); color: var(--fp-slate); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .5px; border-bottom: 2px solid var(--fp-line); }
.spec-table td { padding: 10px 14px; vertical-align: middle; border-bottom: 1px solid var(--fp-line-soft); font-family: var(--font-mono); }
.spec-table tr:last-child td { border-bottom: none; }
.badge-boolean { background: var(--fp-teal-tint); color: var(--fp-teal); padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-up { animation: fadeUp .7s ease forwards; opacity: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade-up.delay-1 { animation-delay: .12s; }
.fade-up.delay-2 { animation-delay: .24s; }
.fade-up.delay-3 { animation-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
    .fade-up { animation: none; opacity: 1; } 
    .hero-badge .pulse { animation: none; }
}

.hero-img-frame img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.hero-float-badge {
    position: absolute; bottom: 24px; left: -20px; background: rgba(18,22,28,.9); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); padding: 14px 20px;
    display: flex; align-items: center; gap: 12px; z-index: 6; min-width: 190px;
}
.cluster-link-icon { font-size: 12px; color: var(--fp-gold); transition: transform .3s; }
.cluster-card:hover .cluster-link-icon { transform: translateX(5px); }

/* ==========================================================================
   SEARCH RESULTS TICKETS (existing "ntt-*" system) — palette harmonised
   The structure was already the strongest part of the old file; only the
   tokens change so it matches the rest of the site instead of standing apart.
   ========================================================================== */
.ntt-results {
    --ntt-ink: var(--fp-ink);
    --ntt-paper: var(--fp-white);
    --ntt-line: var(--fp-line);
    --ntt-slate: var(--fp-slate);
    --ntt-text: var(--dh-dark-mid);
    --ntt-high: var(--fp-gold);
    --ntt-high-ink: var(--fp-gold-dark);
    --ntt-high-tint: var(--fp-gold-tint);
    --ntt-med: var(--fp-teal);
    --ntt-med-tint: var(--fp-teal-tint);
    --ntt-low: var(--fp-slate);
    --ntt-low-tint: var(--fp-line-soft);
    background: var(--fp-white);
    padding: 24px 0 64px;
    font-family: var(--font-body);
    color: var(--fp-ink);
}

     