/* ==========================================================================
   style.css — SINGLE SOURCE OF TRUTH FOR ALL STYLES
   Cleaned: Removed all CSS not used by index.php and header.php
   Theme: Orange accent (#E8720C / #F59532)
   ========================================================================== */

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 14px; }
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    font-size: 1rem;
}

/* ── CSS VARIABLES ────────────────────────────────────────────────────────── */
:root {
    --gold:              #E8720C;
    --gold-light:        #F59532;
    --gold-dark:         #C4600A;
    --gold-gradient:     linear-gradient(135deg, #E8720C, #F59532);

    /* Dark Mode (Default) */
    --bg-primary:        #111827;
    --bg-secondary:      #1a2332;
    --bg-card:           rgba(232,114,12,0.05);
    --text-primary:      #ffffff;
    --text-secondary:    #e0e0e0;
    --text-muted:        #a0a0a0;
    --border-color:      rgba(232,114,12,0.15);

    --primary-gradient:  linear-gradient(135deg, #E8720C, #F59532);
    --primary-color:     #E8720C;
    --secondary-color:   #F59532;
    --success-color:     #9BAE9F;
    --warning-color:     #E6B89C;
    --error-color:       #E5989B;
    --glass-bg:          rgba(232,114,12,0.05);
    --glass-border:      rgba(232,114,12,0.15);
    --scale-factor:      0.85;

    /* Navbar */
    --nav-height:        64px;
    --nav-h:             var(--nav-height); /* ★ Alias 2026-07-23: keep both names in sync */
}

/* ── LIGHT MODE ───────────────────────────────────────────────────────────── */
body.light-mode {
    --bg-primary:        #faf9f6;
    --bg-secondary:      #f0ebe3;
    --bg-card:           #ffffff;
    --text-primary:      #1a1a1a;
    --text-secondary:    #3d3730;
    --text-muted:        #6b6b6b;
    --border-color:      rgba(232,114,12,0.22);
    --glass-bg:          rgba(255,255,255,0.9);
    --glass-border:      rgba(232,114,12,0.22);
}

/* ── REDUCED MOTION ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1200px) {
    h1           { font-size: calc(3.2rem  * var(--scale-factor)); }
    h2           { font-size: calc(2.4rem  * var(--scale-factor)); }
    h3           { font-size: calc(1.6rem  * var(--scale-factor)); }
    h4           { font-size: calc(1.2rem  * var(--scale-factor)); }
    .section-title   { font-size: calc(2.2rem  * var(--scale-factor)); }
    .section-subtitle{ font-size: calc(1rem    * var(--scale-factor)); }
    .section-tag     { font-size: calc(0.7rem  * var(--scale-factor)); }
    .btn             { font-size: calc(0.85rem * var(--scale-factor)); padding: calc(0.8rem * var(--scale-factor)) calc(2rem * var(--scale-factor)); }
    .btn-large       { font-size: calc(0.9rem  * var(--scale-factor)); padding: calc(1rem  * var(--scale-factor)) calc(2.5rem * var(--scale-factor)); }
    .logo-text       { font-size: calc(1.8rem  * var(--scale-factor)); }
    .container       { max-width: calc(1280px  * var(--scale-factor) * 1.18); }
}

@media (max-width: 1199px) {
    h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
    h2 { font-size: clamp(2rem,   4vw, 2.8rem); }
    h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); }
    h4 { font-size: clamp(1.2rem,2.5vw, 1.4rem); }
}

/* ── SELECTION ────────────────────────────────────────────────────────────── */
::selection       { background: var(--gold); color: var(--bg-primary); }
::-moz-selection  { background: var(--gold); color: var(--bg-primary); }

/* ── CONTAINER & SECTION ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 30px; }
@media (max-width: 1024px) { .container { padding: 0 25px; } }
@media (max-width: 768px)  { .container { padding: 0 20px; } }
@media (max-width: 480px)  { .container { padding: 0 15px; } }

section { padding: calc(5rem * var(--scale-factor)) 0; width: 100%; overflow: hidden; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

/* ── SECTION HEADERS ──────────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: calc(3rem * var(--scale-factor));
    width: 100%;
    position: relative;
    display: block;
    overflow: visible;
    clear: both;
}
.section-tag {
    display: table;
    margin: 0 auto calc(1.5rem * var(--scale-factor));
    background: var(--gold-gradient);
    color: white;
    padding: calc(0.3rem * var(--scale-factor)) calc(1.2rem * var(--scale-factor));
    border-radius: 50px;
    font-size: calc(0.75rem * var(--scale-factor));
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}
.section-title {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: calc(1.5rem * var(--scale-factor));
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    width: 100%;
    clear: both;
    line-height: 1.3;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: calc(-0.75rem * var(--scale-factor));
    left: 50%;
    transform: translateX(-50%);
    width: calc(3rem * var(--scale-factor));
    height: 2px;
    background: var(--gold-gradient);
}
.section-subtitle {
    display: block;
    color: var(--text-secondary);
    font-size: calc(1.1rem * var(--scale-factor));
    max-width: 600px;
    margin: calc(1.5rem * var(--scale-factor)) auto 0;
    padding: 0 20px;
    font-weight: 300;
    text-align: center;
    clear: both;
    position: relative;
    z-index: 5;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.4s ease;
    z-index: 1;
}
.btn:hover::before { left: 100%; }

.btn-primary  { background: linear-gradient(135deg, #E8720C, #F59532); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(232,114,12,0.35); }

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Light mode: btn-outline uses orange accent for visibility on white */
html.light-mode .btn-outline,
body.light-mode .btn-outline {
    color: #E8720C !important;
    border-color: #E8720C !important;
    background: transparent !important;
}
html.light-mode .btn-outline:hover,
body.light-mode .btn-outline:hover {
    color: #fff !important;
    background: #E8720C !important;
    border-color: #E8720C !important;
}
body.light-mode .btn-outline i { color: inherit; }

.btn-block   { width: 100%; text-align: center; }
.btn-large   { padding: 1rem 2.5rem; font-size: 0.9rem; }

@media (max-width: 480px) {
    .btn { width: 100%; white-space: normal; text-align: center; }
}

/* Focus visible — accessibility */
.btn:focus-visible,
.hero-nav-btn:focus-visible,
.category-card:focus-visible,
.action-btn:focus-visible,
.faq-question:focus-visible,
.menu-btn:focus-visible,
.theme-toggle:focus-visible,
.scroll-top:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(17,24,39,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.navbar.scrolled {
    height: 54px;
    background: rgba(17,24,39,0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
body.light-mode .navbar         { background: rgba(250,249,246,0.92); }
body.light-mode .navbar.scrolled { background: rgba(250,249,246,0.97); }

/* Logo */
.logo a { text-decoration: none; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
    text-decoration: none;
}
.logo-text em { font-style: italic; font-weight: 400; }
@media (max-width: 768px) { .logo-text { font-size: 1.3rem; } }
@media (max-width: 480px) { .logo-text { font-size: 1.18rem; } }

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    align-items: center;
    margin: 0; padding: 0;
}
@media (min-width: 769px) and (max-width: 1024px) { .nav-links { gap: 1.2rem; } }

.nav-links > li { position: relative; }
.nav-links > li > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    padding: 0.4rem 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color 0.25s;
}
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after  { width: 100%; }
.nav-links > li > a:hover,
.nav-links > li > a.active         { color: var(--gold); }

/* Theme toggle */
.theme-toggle {
    position: relative;
    width: 52px; height: 28px;
    border-radius: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
    padding: 0;
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-toggle .knob {
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    color: #111827;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
body.light-mode .theme-toggle .knob { transform: translateX(24px); }

/* Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
}
.menu-btn:hover { background: var(--bg-card); }
.menu-btn .bar {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}
.menu-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open .bar:nth-child(2) { opacity: 0; width: 0; }
.menu-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navbar theme pill (mobile) */
.navbar-theme-pill {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    z-index: 1001;
}
.navbar-theme-pill:hover { border-color: var(--gold); background: rgba(232,114,12,0.12); }
.navbar-theme-pill .pill-icon {
    font-size: 0.82rem;
    color: var(--gold);
    transition: transform 0.4s ease;
}
.navbar-theme-pill:hover .pill-icon { transform: rotate(20deg); }
.navbar-theme-pill .pill-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Mobile drawer */
.mobile-drawer {
    display: none;
}
@media (max-width: 900px) {
    .navbar { padding: 0 4%; }
    .menu-btn           { display: flex !important; }
    .navbar-theme-pill  { display: flex !important; }

    .mobile-drawer {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100dvh - var(--nav-height));
        background: var(--bg-primary);
        display: flex;
        flex-direction: column;
        padding: 0 1.2rem 2rem;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-drawer.active { transform: translateX(0); }

    .mob-nav-item > a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.72rem 0.5rem;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-color);
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s, background 0.2s;
    }
    .mob-nav-item > a:hover,
    .mob-nav-item > a.active {
        color: var(--gold);
        padding-left: 0.9rem;
        background: rgba(232,114,12,0.04);
    }
    .mob-icon {
        width: 32px; height: 32px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        color: var(--gold);
        flex-shrink: 0;
    }
    .mob-section-title {
        font-size: 0.62rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--gold);
        padding: 1rem 0.5rem 0.3rem;
    }
    .mob-action-row {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid var(--border-color);
    }
    .mob-action-row .btn { width: 100%; justify-content: center; }

    .mobile-theme-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        cursor: pointer;
    }
    .mtr-left {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        color: var(--text-primary);
        font-size: 0.9rem;
        font-weight: 500;
    }
    .mtr-left i { color: var(--gold); font-size: 1rem; }

    .mini-switch {
        position: relative;
        width: 44px; height: 24px;
        border-radius: 12px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        pointer-events: none;
        flex-shrink: 0;
    }
    .mini-switch .mini-knob {
        position: absolute;
        top: 2px; left: 2px;
        width: 18px; height: 18px;
        border-radius: 50%;
        background: var(--gold-gradient);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    body.light-mode .mini-switch .mini-knob { transform: translateX(20px); }
}

@media (max-width: 480px) {
    :root { --nav-height: 56px; }
    .logo-text { font-size: 1.18rem; }
    .navbar-theme-pill .pill-label { display: none; }
}

/* ── LOADING SCREEN ───────────────────────────────────────────────────────── */
.loading {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transition: opacity 0.45s ease;
}
.loading.fade-out { opacity: 0; pointer-events: none; }
.loader {
    width: 38px; height: 38px;
    border: 2.5px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.loader-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── LOGOUT SUCCESS MESSAGE ───────────────────────────────────────────────── */
.logout-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInRight 0.5s ease-out;
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ── TOAST ────────────────────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 24px; right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: calc(100vw - 40px);
}
.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    font-size: 0.84rem;
    animation: toastIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: opacity 0.3s, transform 0.3s;
}
.toast.error   { border-left-color: #ef4444; }
.toast.warning { border-left-color: #f59e0b; }
.toast.success { border-left-color: #10b981; }
@keyframes toastIn {
    from { transform: translateX(110%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ── SCROLL-TO-TOP ────────────────────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 28px; right: 20px;
    width: 42px; height: 42px;
    background: var(--gold-gradient);
    color: #111827;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 900;
    box-shadow: 0 4px 14px rgba(232,114,12,0.4);
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── MAIN ─────────────────────────────────────────────────────────────────── */
main {
    position: relative;
    z-index: 1;
    padding-top: 0;
    margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
    background: var(--bg-primary);
    margin-top: 0;
    /* ★ UI FIX 2026-07-23: Removed padding-top: var(--nav-height) — it was creating
       a 64px gap between the fixed navbar and the hero image.
       The hero image now starts at the top of the viewport (behind the translucent navbar),
       making it truly full-width and flush with the navbar. */
    padding-top: 0;
}

.hero-slides-wrapper { position: relative; width: 100%; height: 100%; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s;
    z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-color: #1a2332;
    background-size: cover;
    background-position: center;
}
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.08);
    transition: transform 7s ease-out, opacity 0.6s ease;
}
.hero-slide.active .hero-bg-img { transform: scale(1); }

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.52) 28%,
        rgba(0,0,0,0.18) 56%,
        rgba(0,0,0,0.00) 100%
    );
    transition: background 0.3s ease;
}
body.light-mode .hero-slide-overlay {
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.42) 0%,
        rgba(0,0,0,0.18) 38%,
        rgba(0,0,0,0.00) 65%,
        rgba(0,0,0,0.00) 100%
    ) !important;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 660px;
    /* ★ UI FIX 2026-07-23: Added padding-top so content clears the fixed navbar
       now that .hero-slider no longer has padding-top. */
    padding: calc(var(--nav-height, 64px) + 20px) 5% 40px;
    margin: 0;
}

.hero-slide-content h1,
.hero-slide-content h2.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
    font-family: 'Playfair Display', serif;
}

.hero-slide-content p,
.hero-slide-content .hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 560px;
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(8,8,12,0.60);
    border: 1px solid rgba(232,114,12,0.60);
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: badgePulse 2s ease-in-out infinite;
}
.hero-badge span {
    color: #F59532;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 114, 12, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(232, 114, 12, 0); }
}

body.light-mode .hero-badge {
    background: rgba(0,0,0,0.45) !important;
    border: 1px solid rgba(232,114,12,0.75) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.35) !important;
}
body.light-mode .hero-badge span { color: #F59532 !important; }

.hero-slide-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* ★ UI FIX 2026-07-23: Call Now button — green solid to distinguish from Book Now (orange) */
.hero-slide-buttons .btn-call {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.38);
    font-weight: 600;
}
.hero-slide-buttons .btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.55);
    color: #ffffff;
}
body.light-mode .hero-slide-buttons .btn-call {
    background: linear-gradient(135deg, #10B981, #059669) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.55) !important;
}

/* ★ UI FIX 2026-07-23: Apply-now-btn arrow animation (matches JAP page) */
.hero-slide-buttons .apply-now-btn i.fa-arrow-right {
    transition: transform 0.2s ease;
    margin-left: 4px;
}
.hero-slide-buttons .apply-now-btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

/* On very small screens, stack buttons full-width for better tap targets */
@media (max-width: 480px) {
    .hero-slide-buttons { flex-direction: column; gap: 0.8rem; }
    .hero-slide-buttons .btn-large { width: 100%; justify-content: center; }
}

body.light-mode .hero-slide-buttons .btn-primary {
    background: linear-gradient(135deg, #E8720C, #F59532) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(232,114,12,0.55) !important;
}
body.light-mode .hero-slide-buttons .btn-outline {
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px) !important;
    font-weight: 600 !important;
}
body.light-mode .hero-slide-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.20) !important;
    border-color: rgba(255,255,255,0.85) !important;
}

/* Hero stats */
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 10; }
.stat-item { text-align: left; }
.stat-number {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 500;
    color: #F59532;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.stat-label {
    color: #d0cac3;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.stat-divider { width: 1px; height: 36px; background: rgba(232,114,12,0.4); }

body.light-mode .stat-number { color: #F59532 !important; text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 3px 14px rgba(0,0,0,0.7) !important; }
body.light-mode .stat-label { color: #ddd8cf !important; text-shadow: 0 1px 6px rgba(0,0,0,0.85) !important; }
body.light-mode .stat-divider { background: rgba(232,114,12,0.5) !important; }

/* Bottom nav */
.hero-bottom-nav {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.50);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 60px;
    border: 1px solid rgba(232,114,12,0.35);
}
.hero-nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(232,114,12,0.5);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.hero-nav-btn:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0f; transform: scale(1.1); }

/* Indicators with Progress */
.hero-slider-indicators { display: flex; gap: 10px; align-items: center; }
.hero-indicator {
    position: relative;
    width: 40px; height: 3px;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.hero-indicator.active { width: 56px; background: rgba(232,114,12,0.3); }
.indicator-progress {
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--gold);
}
.hero-indicator.active .indicator-progress {
    animation: indicatorProgress 7s linear forwards;
}
@keyframes indicatorProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: floatBtn 2s ease-in-out infinite;
}
@keyframes floatBtn {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
.mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.wheel {
    width: 3px; height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* Animate-fade-up */
.animate-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active .animate-fade-up { opacity: 1; transform: translateY(0); }
.hero-slide.active .animate-fade-up:nth-child(1) { transition-delay: 0.1s; }
.hero-slide.active .animate-fade-up:nth-child(2) { transition-delay: 0.2s; }
.hero-slide.active .animate-fade-up:nth-child(3) { transition-delay: 0.35s; }
.hero-slide.active .animate-fade-up:nth-child(4) { transition-delay: 0.5s; }
.hero-slide.active .animate-fade-up:nth-child(5) { transition-delay: 0.65s; }

/* Hero Slider — Mobile */
@media (max-width: 1024px) {
    .hero-slider { height: 85vh; min-height: 500px; max-height: 700px; }
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.7) 100%) !important;
    }
    .hero-slide-content { max-width: 100% !important; padding: 80px 25px 40px !important; justify-content: flex-end !important; align-items: center !important; text-align: center !important; }
    .hero-slide-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem) !important; text-align: center !important; }
    .hero-slide-content p { font-size: clamp(0.9rem, 3vw, 1.1rem) !important; max-width: 100% !important; text-align: center !important; }
    .hero-badge { margin-left: auto !important; margin-right: auto !important; }
    .hero-slide-buttons { flex-direction: column !important; width: 100% !important; max-width: 320px !important; margin-left: auto !important; margin-right: auto !important; }
    .hero-slide-buttons .btn { width: 100% !important; justify-content: center !important; }
    .hero-stats { justify-content: center !important; gap: 1.5rem !important; }
    .stat-item { text-align: center !important; }
    .hero-bottom-nav { bottom: 20px !important; padding: 6px 15px !important; gap: 12px !important; }
    .hero-nav-btn { width: 36px !important; height: 36px !important; font-size: 12px !important; }
    .hero-indicator { width: 30px !important; }
    .hero-indicator.active { width: 44px !important; }
    .scroll-indicator { bottom: 85px !important; }
    .hero-bg-img { object-position: center center !important; transform: scale(1.05) !important; }
    .hero-slide.active .hero-bg-img { transform: scale(1) !important; }
}
@media (max-width: 768px) {
    .hero-slider { height: 80vh; min-height: 450px; max-height: 600px; }
    .hero-slide-content { padding: 70px 20px 30px !important; }
    .hero-slide-content h1 { font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important; }
    .hero-slide-content p { font-size: 0.9rem !important; line-height: 1.5 !important; }
    .hero-badge { padding: 0.4rem 1rem !important; margin-bottom: 1rem !important; }
    .hero-badge span { font-size: 0.65rem !important; }
    .hero-slide-buttons { max-width: 280px !important; gap: 0.8rem !important; }
    .hero-slide-buttons .btn { padding: 0.8rem 1.2rem !important; font-size: 0.85rem !important; border-radius: 8px !important; }
    .hero-stats { gap: 1rem !important; }
    .stat-number { font-size: 1.3rem !important; }
    .stat-label { font-size: 0.65rem !important; }
    .stat-divider { height: 25px !important; }
    .hero-bottom-nav { bottom: 15px !important; padding: 5px 12px !important; gap: 10px !important; }
    .hero-nav-btn { width: 32px !important; height: 32px !important; font-size: 11px !important; }
    .hero-indicator { width: 24px !important; }
    .hero-indicator.active { width: 36px !important; }
    .scroll-indicator { display: none !important; }
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%) !important;
    }
}
@media (max-width: 480px) {
    .hero-slider { height: 75vh; min-height: 400px; max-height: 550px; }
    .hero-slide-content { padding: 60px 15px 25px !important; }
    .hero-slide-content h1 { font-size: clamp(1.4rem, 5vw, 1.8rem) !important; }
    .hero-slide-content p { font-size: 0.8rem !important; margin-bottom: 1.2rem !important; }
    .hero-slide-buttons { max-width: 260px !important; }
    .hero-slide-buttons .btn { padding: 0.7rem 1rem !important; font-size: 0.8rem !important; }
    .hero-stats { gap: 0.8rem !important; }
    .stat-number { font-size: 1.2rem !important; }
    .stat-label { font-size: 0.6rem !important; }
    .hero-bottom-nav { bottom: 10px !important; padding: 4px 10px !important; gap: 8px !important; }
    .hero-nav-btn { width: 28px !important; height: 28px !important; font-size: 10px !important; }
    .hero-indicator { width: 20px !important; }
    .hero-indicator.active { width: 30px !important; }
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.65) 100%) !important;
    }
}

/* Navbar transparency on mobile when at top */
@media (max-width: 768px) {
    .navbar:not(.scrolled) {
        background: rgba(17, 24, 39, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    body.light-mode .navbar:not(.scrolled) {
        background: rgba(250, 249, 246, 0.8) !important;
    }
    .hero-badge { margin-top: 10px !important; }
    .hero-stats { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
    .hero-slide-buttons { margin-bottom: 0.5rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GUARANTEE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.guarantee-section {
    padding: 4rem 0;
    position: relative;
    z-index: 5;
    width: 100%;
    background: var(--bg-secondary);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.guarantee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}
.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(232, 114, 12, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.guarantee-card:hover::before { opacity: 1; }
.guarantee-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 20px 40px rgba(232, 114, 12, 0.15); }
.guarantee-card > * { position: relative; z-index: 1; }

.guarantee-icon {
    width: 70px; height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}
.guarantee-card:hover .guarantee-icon { transform: scale(1.08); box-shadow: 0 8px 25px rgba(232, 114, 12, 0.3); }
.guarantee-icon i { font-size: 2rem; color: var(--bg-primary); transition: transform 0.3s ease; }
.guarantee-card:hover .guarantee-icon i { transform: rotate(5deg); }
.guarantee-card h4 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-primary); font-weight: 400; font-family: 'Playfair Display', serif; transition: color 0.3s ease; }
.guarantee-card:hover h4 { color: var(--gold); }
.guarantee-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin: 0; font-weight: 300; }

body.light-mode .guarantee-card { background: white; border-color: rgba(232, 114, 12, 0.2); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.light-mode .guarantee-card:hover { border-color: var(--gold); box-shadow: 0 20px 40px rgba(232, 114, 12, 0.12); }
body.light-mode .guarantee-card h4 { color: #1a1a1a; }
body.light-mode .guarantee-card p { color: #6b6b6b; }

/* Guarantee — Mobile 2 columns */
@media (max-width: 1024px) {
    .guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 640px) {
    .guarantee-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .guarantee-card { padding: 1.2rem 0.8rem !important; }
    .guarantee-icon { width: 50px !important; height: 50px !important; }
    .guarantee-icon i { font-size: 1.5rem !important; }
    .guarantee-card h4 { font-size: 1rem !important; margin-bottom: 0.5rem !important; }
    .guarantee-card p { font-size: 0.75rem !important; }
}
@media (max-width: 400px) {
    .guarantee-grid { gap: 8px !important; }
    .guarantee-card { padding: 1rem 0.6rem !important; }
    .guarantee-icon { width: 40px !important; height: 40px !important; margin-bottom: 0.8rem !important; }
    .guarantee-icon i { font-size: 1.2rem !important; }
    .guarantee-card h4 { font-size: 0.85rem !important; }
    .guarantee-card p { font-size: 0.7rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.search-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    width: 100%;
    /* Allow autocomplete dropdown to overflow */
    overflow: visible !important;
}

.search-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 20px;
    /* Allow autocomplete dropdown to overflow */
    overflow: visible !important;
    position: relative;
    z-index: 100;
}

.search-container {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    /* Allow autocomplete dropdown to overflow */
    overflow: visible !important;
    position: relative;
    z-index: 100;
}

.search-grid {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    /* Allow autocomplete dropdown to overflow */
    overflow: visible !important;
    position: relative;
    z-index: 100;
}

.search-field {
    flex: 1;
    position: relative;
}

.search-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0.7;
    font-size: 0.9rem;
    z-index: 1;
    pointer-events: none;
}

.search-input {
    width: 100%;
    height: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

body.light-mode .search-input {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1f2937;
}
body.light-mode .search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(232, 114, 12, 0.1);
    background: rgba(232, 114, 12, 0.02);
}

.search-input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.search-btn {
    padding: 0 2.5rem;
    background: var(--gold-gradient);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-width: 120px;
}

.search-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(232, 114, 12, 0.3); }

/* ── SEARCH: LOCATION SELECT DROPDOWN ─────────────────────────────────────── */
.search-field-location {
    position: relative;
    z-index: 50;
}
.search-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E8720C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 40px !important;
    cursor: pointer;
    padding-left: 44px !important;
}
.search-select option {
    padding: 8px 12px;
    background: #fff;
    color: #334155;
}

/* ── SEARCH: AUTOCOMPLETE DROPDOWN ────────────────────────────────────────── */
.search-field-service {
    position: relative;
    overflow: visible !important;
    z-index: 101;
}

.hp-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 6px;
    max-height: 360px;
    overflow-y: auto;
    z-index: 99999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(232,114,12,0.1);
    display: none;
    animation: hpAcFadeIn 0.2s ease-out;
}
.hp-autocomplete-dropdown.open { display: block; }

@keyframes hpAcFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* When autocomplete is open, boost the entire search section above other content */
.search-section.ac-open {
    z-index: 99998;
    overflow: visible !important;
}
.search-section.ac-open .search-wrapper,
.search-section.ac-open .search-container,
.search-section.ac-open .search-grid {
    overflow: visible !important;
}

/* Lower z-index of elements that could block the dropdown */
.search-section .quick-search-chips {
    position: relative;
    z-index: 50;
}
.search-section .action-buttons-row {
    position: relative;
    z-index: 50;
}

/* Autocomplete internal styles */
.hp-ac-group-label {
    padding: 10px 16px 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E8720C;
    background: #fef7ed;
    position: sticky;
    top: 0;
    z-index: 1;
}
.hp-ac-item {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #334155;
    transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
}
.hp-ac-item:hover,
.hp-ac-item.active {
    background: #fff7ed;
    color: #c2410c;
    border-left-color: #E8720C;
}
.hp-ac-item:last-child { border-radius: 0 0 12px 12px; }
.hp-ac-item-icon {
    width: 32px; height: 32px; min-width: 32px;
    border-radius: 8px;
    background: #fef3c7;
    display: flex; align-items: center; justify-content: center;
    color: #E8720C;
    font-size: 0.8rem;
}
.hp-ac-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.hp-ac-item-name {
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-ac-item-name mark {
    background: #fed7aa;
    color: #9a3412;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 700;
}
.hp-ac-item-meta {
    font-size: 0.7rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-ac-item-meta .meta-type {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #f1f5f9;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-right: 6px;
}
.hp-ac-item-arrow {
    color: #cbd5e1;
    font-size: 0.7rem;
    transition: color 0.15s, transform 0.15s;
}
.hp-ac-item:hover .hp-ac-item-arrow {
    color: #E8720C;
    transform: translateX(2px);
}
.hp-ac-empty {
    padding: 24px 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}
.hp-ac-empty i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #e2e8f0;
}
.hp-ac-footer {
    padding: 8px 16px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-radius: 0 0 12px 12px;
    font-size: 0.7rem;
    color: #94a3b8;
    text-align: center;
}

/* ── SEARCH: QUICK SEARCH CHIPS ───────────────────────────────────────────── */
.quick-search-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: center;
    position: relative;
    z-index: 50;
}
.chips-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.quick-search-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}
.quick-search-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(232,114,12,0.08);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232,114,12,0.15);
}

body.light-mode .quick-search-chip {
    background: #ffffff;
    border-color: #e5e7eb;
    color: #374151;
}

/* ── SEARCH SECTION LIGHT MODE ────────────────────────────────────────────── */
body.light-mode .search-container {
    background: #ffffff;
    border-color: rgba(232,114,12,0.18);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
body.light-mode .search-btn {
    background: linear-gradient(135deg, #E8720C, #F59532);
    color: #ffffff;
}
body.light-mode .search-btn i { color: #ffffff; }

/* ── ACTION BUTTONS ───────────────────────────────────────────────────────── */
.action-buttons-row { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; position: relative; z-index: 50; }
.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    position: relative;
    overflow: hidden;
}
.action-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; transition: width 0.4s ease; z-index: 0; }
.action-btn-primary::before  { background: var(--gold-gradient); }
.action-btn-secondary::before{ background: linear-gradient(135deg, #2c3e50, #1a1a2e); }
.action-btn:hover::before    { width: 100%; }
.action-btn > * { position: relative; z-index: 1; }
.action-btn i:first-child { font-size: 2rem; }
.action-btn-primary i:first-child,   .action-btn-primary  .action-btn-content { color: var(--gold); }
.action-btn-secondary i:first-child, .action-btn-secondary .action-btn-content { color: #e2e8f0; }
.action-btn:hover i,
.action-btn:hover .action-btn-content,
.action-btn:hover .action-btn-icon { color: #ffffff !important; }
.action-btn-content  { flex: 1; }
.action-btn-title    { display: block; font-size: 1.1rem; font-weight: 600; }
.action-btn-desc     { display: block; font-size: 0.75rem; opacity: 0.7; }
.action-btn-icon     { font-size: 1rem; transition: transform 0.3s ease; }
.action-btn:hover .action-btn-icon { transform: translateX(5px); }

/* Light mode: Action buttons — primary */
body.light-mode .action-btn-primary i:first-child,
body.light-mode .action-btn-primary .action-btn-title,
body.light-mode .action-btn-primary .action-btn-icon {
    color: #E8720C;
}
body.light-mode .action-btn-primary .action-btn-desc {
    color: #9a6a3a;
}
body.light-mode .action-btn-primary:hover i:first-child,
body.light-mode .action-btn-primary:hover .action-btn-title,
body.light-mode .action-btn-primary:hover .action-btn-desc,
body.light-mode .action-btn-primary:hover .action-btn-icon {
    color: #ffffff !important;
}

/* Light mode: Action buttons — secondary */
html.light-mode .action-btn-secondary,
body.light-mode .action-btn-secondary {
    color: #E8720C !important;
    border-color: rgba(232,114,12,0.4) !important;
    background: rgba(232,114,12,0.05) !important;
}
html.light-mode .action-btn-secondary:hover,
body.light-mode .action-btn-secondary:hover {
    color: #fff !important;
    background: #E8720C !important;
    border-color: #E8720C !important;
}
html.light-mode .action-btn-secondary .action-btn-icon,
body.light-mode .action-btn-secondary .action-btn-icon {
    color: #E8720C !important;
}
body.light-mode .action-btn-secondary i:first-child,
body.light-mode .action-btn-secondary .action-btn-content,
body.light-mode .action-btn-secondary .action-btn-title {
    color: #E8720C;
}
body.light-mode .action-btn-secondary .action-btn-desc {
    color: #9a6a3a;
}
body.light-mode .action-btn-secondary::before {
    background: linear-gradient(135deg, #E8720C, #F59532);
}
body.light-mode .action-btn-secondary:hover i:first-child,
body.light-mode .action-btn-secondary:hover .action-btn-content,
body.light-mode .action-btn-secondary:hover .action-btn-title,
body.light-mode .action-btn-secondary:hover .action-btn-desc,
body.light-mode .action-btn-secondary:hover .action-btn-icon {
    color: #ffffff !important;
}

@media (max-width: 1024px) { .action-buttons-row { gap: 1rem; } .action-btn { min-width: 240px; padding: 1rem 1.5rem; } }
@media (max-width: 768px)  { .action-buttons-row { flex-direction: column; align-items: center; } .action-btn { width: 100%; max-width: 320px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE CATEGORIES GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.services {
    padding: 5rem 0;
    background: var(--bg-secondary);
    width: 100%;
    overflow: visible;
}

.service-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.category-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #FFF5E8, #FFE0C4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.category-icon i { font-size: 28px; color: var(--gold); transition: all 0.3s; }
.category-card:hover .category-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.category-card:hover .category-icon i { color: white; transform: scale(1.1); }
.category-info { flex: 1; }
.category-info h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 5px; font-family: 'Lato', sans-serif; }
.category-info p { font-size: 13px; color: var(--text-muted); margin: 0; }
.category-services-count { font-size: 11px; color: var(--gold); font-weight: 600; }
.category-arrow {
    width: 35px; height: 35px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    flex-shrink: 0;
}
.category-arrow i { color: var(--text-muted); transition: all 0.3s; }
.category-card:hover .category-arrow { background: var(--gold); border-color: var(--gold); transform: translateX(5px); }
.category-card:hover .category-arrow i { color: white; }

/* Light mode: Category cards */
body.light-mode .category-icon { background: rgba(232, 114, 12, 0.1); }
body.light-mode .category-card:hover .category-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
body.light-mode .category-card { background: white; border-color: #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
body.light-mode .category-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(232,114,12,0.12); }
body.light-mode .category-card h3 { color: #1a1a1a; }
body.light-mode .category-card p { color: #6b6b6b; }
body.light-mode .category-arrow { background: white; border-color: #e5e7eb; }
body.light-mode .category-arrow i { color: #9ca3af; }

/* No services message */
.no-services-message { text-align: center; padding: 60px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; margin: 2rem 0; }
.no-services-message p { color: var(--text-secondary); font-size: 1.1rem; margin: 0; }

/* Service categories — Mobile 2 columns */
@media (max-width: 768px) {
    .service-categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .category-card { padding: 15px !important; flex-direction: column !important; text-align: center !important; }
    .category-icon { width: 45px !important; height: 45px !important; margin-bottom: 10px !important; }
    .category-icon i { font-size: 22px !important; }
    .category-info h3 { font-size: 14px !important; }
    .category-info p { font-size: 11px !important; }
    .category-arrow { display: none !important; }
}
@media (max-width: 400px) {
    .service-categories-grid { gap: 8px !important; }
    .category-card { padding: 12px !important; }
    .category-icon { width: 38px !important; height: 38px !important; }
    .category-icon i { font-size: 18px !important; }
    .category-info h3 { font-size: 12px !important; }
    .category-info p { font-size: 10px !important; }
    .category-services-count { font-size: 9px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS — DUAL OPTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.how-it-works { padding: 80px 0; background: var(--bg-secondary); }

.dual-options-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.option-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}
.option-card:hover { transform: translateY(-8px); }
.option-call:hover { border-color: #25D366; }
.option-online:hover { border-color: var(--gold); }

.option-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    z-index: 1;
}
.option-call .option-badge { background: #25D366; }

.option-icon {
    width: 80px; height: 80px;
    background: rgba(232, 114, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    transition: all 0.3s;
}
.option-call .option-icon { background: rgba(37, 211, 102, 0.1); }
.option-call .option-icon i { color: #25D366; }
.option-icon i { font-size: 36px; color: var(--gold); }

.option-card h3 { font-size: 24px; margin-bottom: 15px; color: var(--text-primary); font-family: 'Playfair Display', serif; }
.option-card p { color: var(--text-secondary); margin-bottom: 15px; font-size: 14px; }

.option-list { list-style: none; text-align: left; margin: 20px 0; padding: 0; }
.option-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 14px; }
.option-list li i { color: #2ecc71; font-size: 16px; }

.option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0 15px;
    transition: all 0.3s;
    font-size: 14px;
}
.option-btn:hover { transform: scale(1.05); }
.call-btn { background: #25D366; color: white; }
.call-btn:hover { color: white; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.online-btn { background: var(--gold-gradient); color: white; }
.online-btn:hover { color: white; box-shadow: 0 10px 30px rgba(232, 114, 12, 0.3); }

.option-note { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Light mode: How it works */
body.light-mode .option-card { background: white; border-color: #e5e7eb; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.light-mode .option-card h3 { color: #1a1a1a; }
body.light-mode .option-card > p { color: #6b6b6b; }
body.light-mode .option-list li { color: #374151; }
body.light-mode .option-note { color: #6b6b6b; }
body.light-mode .option-note i { color: var(--gold); }
body.light-mode .option-badge { background: var(--gold); color: #ffffff; }
body.light-mode .option-call .option-badge { background: #25D366; color: #ffffff; }

/* Light mode: Call button stays white text */
html.light-mode .option-btn.call-btn,
body.light-mode .option-btn.call-btn {
    color: #fff !important;
}

/* How it works — Mobile */
@media (max-width: 768px) {
    .dual-options-wrapper { grid-template-columns: 1fr !important; gap: 35px !important; }
    .option-card { padding: 25px 20px !important; }
    .option-icon { width: 60px !important; height: 60px !important; }
    .option-icon i { font-size: 28px !important; }
    .option-card h3 { font-size: 1.3rem !important; }
    .option-list li { font-size: 13px !important; }
    .option-btn { font-size: 13px !important; padding: 12px 18px !important; }
}
@media (max-width: 480px) {
    .option-badge { font-size: 10px; padding: 4px 10px; white-space: normal; width: 90%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   JOIN AS PROFESSIONAL
   ═══════════════════════════════════════════════════════════════════════════ */
.join-professional-section { padding: 80px 0; background: var(--bg-primary); }

.join-options-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.join-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}
.join-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); }

.join-card-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    z-index: 1;
}

.join-card-icon {
    width: 80px; height: 80px;
    background: rgba(232, 114, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    transition: all 0.3s;
}
.join-card:hover .join-card-icon { transform: scale(1.1); background: rgba(232, 114, 12, 0.2); }
.join-card-icon i { font-size: 40px; color: var(--gold); }

.join-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--text-primary); font-family: 'Playfair Display', serif; }
.join-card > p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

.join-card-list { list-style: none; text-align: left; margin: 20px 0 0; padding: 0; }
.join-card-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 13px; }
.join-card-list li i { color: #2ecc71; }

.join-cta-wrapper { text-align: center; margin-top: 50px; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.join-cta-note { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.join-cta-note i { color: #2ecc71; }

/* Light mode: Join section */
body.light-mode .join-card { background: white; border-color: #e5e7eb; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.light-mode .join-card h3 { color: #1a1a1a; }
body.light-mode .join-card > p { color: #6b6b6b; }
body.light-mode .join-card-list li { color: #374151; }
body.light-mode .join-cta-note { color: #6b6b6b; }

/* Light mode: Join CTA buttons */
body.light-mode .join-cta-wrapper .btn-primary {
    background: linear-gradient(135deg, #E8720C, #F59532);
    color: #ffffff;
}
body.light-mode .join-cta-wrapper .btn-primary i { color: #ffffff; }
html.light-mode .join-cta-wrapper .btn-outline,
body.light-mode .join-cta-wrapper .btn-outline {
    color: #E8720C !important;
    border-color: #E8720C !important;
    background: transparent !important;
}
html.light-mode .join-cta-wrapper .btn-outline:hover,
body.light-mode .join-cta-wrapper .btn-outline:hover {
    color: #fff !important;
    background: #E8720C !important;
}
body.light-mode .join-cta-wrapper .btn-outline i { color: #E8720C; }
body.light-mode .join-cta-wrapper .btn-outline:hover {
    background: #E8720C;
    color: #ffffff;
    border-color: #E8720C;
}
body.light-mode .join-cta-wrapper .btn-outline:hover i { color: #ffffff; }

/* Join professional — Responsive */
@media (max-width: 1024px) {
    .join-options-wrapper { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .join-options-wrapper { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
    .join-card { padding: 25px 15px !important; }
    .join-card-icon { width: 55px !important; height: 55px !important; margin: 15px auto !important; }
    .join-card-icon i { font-size: 28px !important; }
    .join-card h3 { font-size: 1.1rem !important; }
    .join-card > p { font-size: 12px !important; }
    .join-card-list li { font-size: 11px !important; }
}
@media (max-width: 480px) {
    .join-options-wrapper { grid-template-columns: 1fr !important; gap: 30px !important; }
    .join-card-badge { font-size: 10px; padding: 4px 10px; white-space: normal; width: 90%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--bg-secondary); }
.contact-wrapper { max-width: 1200px; margin: 50px auto 0; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}
.contact-card:hover { transform: translateY(-8px); }

.contact-card-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: white;
    z-index: 1;
}

.contact-card-icon {
    width: 70px; height: 70px;
    background: rgba(232, 114, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    transition: all 0.3s;
}
.contact-card:hover .contact-card-icon { transform: scale(1.1); }
.contact-card-icon i { font-size: 30px; }

.contact-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--text-primary); font-family: 'Playfair Display', serif; }
.contact-card > p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.contact-detail { margin: 15px 0; }

.contact-number,
.contact-email-address {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s;
}
.contact-number:hover,
.contact-email-address:hover { color: var(--gold); }

.contact-email-secondary {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: 5px;
    transition: color 0.3s;
}
.contact-email-secondary:hover { color: var(--gold); }

.contact-address { font-size: 14px; color: var(--text-primary); font-weight: 500; margin: 0 0 5px; }
.contact-time { font-size: 11px; color: var(--text-muted); display: block; margin-top: 5px; }

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    margin-top: 10px;
    color: white;
}
.contact-btn:hover { transform: translateY(-2px); color: white; }

/* Phone */
.contact-phone .contact-card-badge { background: #10b981; }
.contact-phone .contact-card-icon i { color: #10b981; }
.contact-phone .contact-btn,
.phone-btn { background: #10b981; }
.contact-phone .contact-btn:hover,
.phone-btn:hover { background: #059669; box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3); }

/* WhatsApp */
.contact-whatsapp .contact-card-badge { background: #25D366; }
.contact-whatsapp .contact-card-icon i { color: #25D366; }
.contact-whatsapp .contact-btn,
.whatsapp-btn { background: #25D366; }
.contact-whatsapp .contact-btn:hover,
.whatsapp-btn:hover { background: #128C7E; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }

/* Email */
.contact-email .contact-card-badge { background: #3b82f6; }
.contact-email .contact-card-icon i { color: #3b82f6; }
.contact-email .contact-btn,
.email-btn { background: #3b82f6; }
.contact-email .contact-btn:hover,
.email-btn:hover { background: #2563eb; box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3); }

/* Location */
.contact-location .contact-card-badge { background: #ef4444; }
.contact-location .contact-card-icon i { color: #ef4444; }
.contact-location .contact-btn,
.location-btn { background: #ef4444; }
.contact-location .contact-btn:hover,
.location-btn:hover { background: #dc2626; box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3); }

/* Light mode: Contact section */
body.light-mode .contact-card { background: white; border-color: #e5e7eb; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.light-mode .contact-card h3 { color: #1a1a1a; }
body.light-mode .contact-card > p { color: #6b6b6b; }
body.light-mode .contact-number,
body.light-mode .contact-email-address { color: #1a1a1a; }
body.light-mode .contact-number:hover,
body.light-mode .contact-email-address:hover { color: #E8720C; }
body.light-mode .contact-email-secondary { color: #6b6b6b; }
body.light-mode .contact-address { color: #1a1a1a; }
body.light-mode .contact-time { color: #6b6b6b; }

/* Contact — Responsive */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .contact-section { padding: 50px 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 25px 15px; }
}
@media (max-width: 640px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .contact-card { padding: 1.2rem 0.8rem !important; }
    .contact-card-badge { font-size: 8px !important; padding: 3px 8px !important; white-space: nowrap !important; }
    .contact-card-icon { width: 45px !important; height: 45px !important; margin: 15px auto !important; }
    .contact-card-icon i { font-size: 22px !important; }
    .contact-card h3 { font-size: 1rem !important; }
    .contact-card > p { font-size: 11px !important; }
    .contact-number, .contact-email-address { font-size: 13px !important; }
    .contact-btn { padding: 8px 12px !important; font-size: 11px !important; }
}
@media (max-width: 400px) {
    .contact-grid { gap: 10px !important; }
    .contact-card { padding: 1rem 0.6rem !important; }
    .contact-card-icon { width: 38px !important; height: 38px !important; margin: 10px auto !important; }
    .contact-card-icon i { font-size: 18px !important; }
    .contact-card h3 { font-size: 0.9rem !important; }
    .contact-number, .contact-email-address { font-size: 11px !important; }
    .contact-btn { padding: 6px 10px !important; font-size: 10px !important; }
}
@media (max-width: 480px) {
    .contact-card-badge { font-size: 9px; padding: 4px 10px; }
    .contact-number, .contact-email-address { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   URGENT / EMERGENCY SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.urgent-section { padding: 80px 0; background: var(--bg-secondary); }

.urgent-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.urgent-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3); }

.urgent-icon {
    width: 80px; height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.urgent-icon i { font-size: 40px; color: white; }

.urgent-card h2 { font-size: 36px; color: white; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.urgent-card > p { color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; font-size: 18px; }

.urgent-numbers { margin-bottom: 30px; }
.urgent-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #dc2626;
    padding: 15px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.3s;
}
.urgent-phone:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); color: #dc2626; }

.urgent-guarantee { display: flex; justify-content: center; gap: 20px; margin: 30px 0 20px; flex-wrap: wrap; }
.urgent-guarantee .guarantee-item { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.9); font-size: 14px; }
.urgent-guarantee .guarantee-item i { color: white; }
.urgent-guarantee .guarantee-divider { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.3); }

.urgent-note { color: rgba(255, 255, 255, 0.8); font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }

/* Light mode: Urgent — keep red theme, just fix background */
body.light-mode .urgent-section { background: #f0ebe3; }

/* Urgent — Mobile */
@media (max-width: 768px) {
    .urgent-card { padding: 30px 20px; }
    .urgent-card h2 { font-size: 28px; }
    .urgent-phone { font-size: 18px; padding: 12px 25px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-section { padding: 80px 0; background: var(--bg-primary); }

.faq-grid { max-width: 800px; margin: 50px auto 0; padding: 0 20px; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: var(--gold); }

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    color: var(--text-primary);
    transition: color 0.3s, padding-left 0.3s;
    font-size: 1rem;
    gap: 1rem;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Lato', sans-serif;
}
.faq-question:hover { color: var(--gold); padding-left: 2rem; }
.faq-question i { color: var(--gold); transition: transform 0.3s; font-size: 0.9rem; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}
.faq-item.active .faq-answer { max-height: 600px; padding: 0 1.5rem 1.5rem; }
.faq-answer p { margin: 0; }

/* Light mode: FAQ */
body.light-mode .faq-item { background: white; border-color: #e5e7eb; }
body.light-mode .faq-question span { color: #1a1a1a; }
body.light-mode .faq-answer p { color: #4b5563; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-color); padding: 4rem 5%; width: 100%; position: relative; z-index: 10; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }

.footer-about p { color: var(--text-secondary); margin: 1rem 0; line-height: 1.7; font-size: 0.95rem; font-weight: 300; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 500; display: inline-block; }

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-links a {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s;
    text-decoration: none;
}
.social-links a:hover { background: var(--gold-gradient); color: #ffffff; transform: translateY(-3px); border-color: transparent; }

.footer-links h3,
.footer-contact h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--gold); font-weight: 400; font-family: 'Playfair Display', serif; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: all 0.3s; font-size: 0.95rem; font-weight: 300; display: inline-block; }
.footer-links a:hover { color: var(--gold); transform: translateX(5px); }

.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--text-secondary); font-size: 0.95rem; font-weight: 300; }
.contact-item i { color: var(--gold); width: 20px; font-size: 1.1rem; flex-shrink: 0; }
.contact-item a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    color: var(--text-secondary); font-size: 0.85rem; font-weight: 300;
}
.footer-bottom-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--gold); }

body.light-mode .footer { background: #e8e2d9; }
body.light-mode .social-links a { background: white; border-color: var(--border-color); color: var(--text-secondary); }
body.light-mode .social-links a:hover { background: var(--gold-gradient); color: white; }

/* Footer — Responsive */
@media (max-width: 1024px) { .footer-container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .social-links { justify-content: center; }
    .footer-links a:hover { transform: translateX(0); }
    .contact-item { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .footer-bottom-links { flex-direction: column; gap: 1rem; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AOS ANIMATION COMPATIBILITY
   ═══════════════════════════════════════════════════════════════════════════ */
[data-aos] {
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ── LIGHT MODE — CARD OVERRIDES ──────────────────────────────────────────── */
body.light-mode .guarantee-card,
body.light-mode .search-container,
body.light-mode .action-btn       { background: white; border-color: var(--border-color); }

/* ── UTILITY ──────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.glass       { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); }

/* ── PRINT ────────────────────────────────────────────────────────────────── */
@media print {
    .hero-slider, .hero-bottom-nav,
    .scroll-top, .action-buttons-row { display: none !important; }
    .hero-slide { position: relative; opacity: 1; visibility: visible; page-break-inside: avoid; }
    .hero-slide-content { padding: 20px; }
}


/* ── CUSTOM SLEEK SCROLLBARS ─────────────────────────── */

/* WebKit/Blink (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent; /* Invisible track */
}

::-webkit-scrollbar-thumb {
    background: rgba(232, 114, 12, 0.2); /* Subtle dark orange */
    border-radius: 3px;
    /* Creates a nice padding effect so the thumb doesn't touch the edges */
    border: 2px solid transparent; 
    background-clip: padding-box; 
}

::-webkit-scrollbar-thumb:hover {
    background: var(--or); /* Bright orange on hover */
    background-clip: padding-box;
}

/* Corner backgrounds (for when both X and Y scrollbars are present) */
::-webkit-scrollbar-corner {
    background: transparent;
}


/* Firefox */
* {
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: rgba(232, 114, 12, 0.2) transparent; /* thumb color, track color */
}

/* Specific Overrides for sidebars and modals to ensure they look perfect */
.sidebar-left,
.sidebar-right,
.category-tree,
.modal-container,
.autocomplete-dropdown {
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 114, 12, 0.25) transparent;
}

.sidebar-left::-webkit-scrollbar-thumb,
.sidebar-right::-webkit-scrollbar-thumb,
.category-tree::-webkit-scrollbar-thumb,
.modal-container::-webkit-scrollbar-thumb,
.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(232, 114, 12, 0.25);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.sidebar-left::-webkit-scrollbar-thumb:hover,
.sidebar-right::-webkit-scrollbar-thumb:hover,
.category-tree::-webkit-scrollbar-thumb:hover,
.modal-container::-webkit-scrollbar-thumb:hover,
.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--or);
    background-clip: padding-box;
}