/* =================================================================
   Sayantika In Services — Furnixar Design System
   Fonts loaded in header.php (Josefin Sans + DM Sans)
   ================================================================= */

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
    /* Brand — Furnixar Warm Luxury Palette */
    --primary:        #B8946D;   /* warm caramel */
    --primary-dark:   #2D2218;   /* warm espresso — hero / CTA bg */
    --primary-light:  #D4B090;   /* lighter caramel */
    --gold:           #C98840;   /* copper-amber accent */
    --gold-light:     #E8A845;   /* amber */
    --gold-dark:      #A06828;
    --red:            #C0392B;   /* muted warm red — rarely used */
    --red-light:      #FDECEA;

    /* Neutral Palette — Furnixar Specifications */
    --dark:           #1F2937;
    --body-text:      #6B7280;
    --muted:          #9CA3AF;
    --white:          #FFFFFF;
    --bg-primary:     #F8F7F5;   /* soft off-white body */
    --bg-warm:        #F2EEE8;   /* warm beige */
    --bg-blush:       #E8D5DC;   /* soft pink accent */
    --bg-green:       #DCE9E0;   /* soft green accent */
    --bg-gray:        #F2EEE8;
    --accent-beige:   #D8C9BA;
    --border:         #ECE8E2;
    --border-light:   #F5F2EE;

    /* Border Radius — Furnixar Rounded Style */
    --radius:         16px;
    --radius-sm:      12px;
    --radius-lg:      20px;
    --radius-full:    999px;

    /* Typography */
    --ff-head:        'Josefin Sans', sans-serif;
    --ff-body:        'DM Sans', 'Inter', system-ui, sans-serif;

    /* Spacing */
    --sec-y:          90px;
    --sec-y-sm:       60px;
    --container-max:  1280px;

    /* Shadows */
    --shadow-xs:  0 1px 4px rgba(0,0,0,0.05);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:  0 6px 24px rgba(0,0,0,0.08);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
    --shadow-hl:  0 10px 32px rgba(0,0,0,0.11);

    /* Motion */
    --ease:    cubic-bezier(0.4, 0, 0.2, 1);
    --dur:     0.3s;
    --dur-sl:  0.6s;
}

/* ── 2. BASE RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    color: var(--body-text);
    background: var(--bg-primary, #F8F7F5);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: color var(--dur) var(--ease); }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.no-underline { text-decoration: none !important; }

/* ── 3. TYPOGRAPHY UTILITIES ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-head);
    color: var(--dark);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.text-primary      { color: var(--primary)       !important; }
.text-primary-dark { color: var(--primary-dark)  !important; }
.text-gold         { color: var(--gold)           !important; }
.text-gold-light   { color: var(--gold-light)     !important; }
.gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 4. CONTAINER ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
@media (min-width:640px)  { .container { padding-left:24px;  padding-right:24px;  } }
@media (min-width:1024px) { .container { padding-left:32px;  padding-right:32px;  } }
@media (min-width:1280px) { .container { padding-left:40px;  padding-right:40px;  } }

/* ── 5. SECTION SPACING & HEADERS ─────────────────────────────── */
.section-padding    { padding-top: var(--sec-y);    padding-bottom: var(--sec-y); }
.section-padding-sm { padding-top: var(--sec-y-sm); padding-bottom: var(--sec-y-sm); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--gold);
    font-family: var(--ff-head);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.section-title {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 3.5vw, 2.65rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -0.01em;
}
.section-title span { color: var(--primary); }

.title-line {
    width: 44px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}
.title-line-center { margin: 0 auto; }

.section-subtitle {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.82;
    max-width: 560px;
}

/* ── 6. PAGE LOADER ────────────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark, #2D2218);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}
#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.05);
    transition: opacity 0.4s ease, visibility 0.4s, transform 0.4s ease;
}

.loader-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(232, 168, 69, 0.25);
    border-radius: 50%;
    animation: loaderPulseAnim 1.5s ease-out infinite;
    z-index: 0;
}

@keyframes loaderPulseAnim {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.loader-logo-inner {
    position: relative;
    z-index: 1;
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── 7. TOP BAR ────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 102;
}
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.72);
    font-family: var(--ff-head);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 9px 0;
    position: relative;
    z-index: 101;
}
.topbar a { color: rgba(255,255,255,0.72); transition: color var(--dur) var(--ease); }
.topbar a:hover { color: var(--gold-light); }
.topbar-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #25D366;
    color: white;
    font-family: var(--ff-head);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background var(--dur) var(--ease);
}
.topbar-wa:hover { background: #128C7E; color: white; }

/* ── 8. MAIN NAVBAR ────────────────────────────────────────────── */
.navbar {
    position: relative;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.navbar-transparent { background: var(--white); border-bottom-color: var(--border); }
.navbar-solid       { background: var(--white); }

.navbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

/* Logo */
.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-icon {
    width: 38px; height: 38px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.nav-logo-name {
    font-family: var(--ff-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    display: block;
}
.nav-logo-sub {
    font-family: var(--ff-head);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
    display: block;
}

/* Desktop nav links */
.nav-link {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 8px 12px;
    position: relative;
    white-space: nowrap;
    transition: color var(--dur) var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 12px; right: 12px;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.nav-link:hover        { color: var(--primary); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary); }

/* Dropdown */
.dropdown { position: relative; }

/* Invisible bridge fills the gap between the trigger and the menu so
   :hover state is not lost when moving the mouse diagonally downward */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 12px;   /* must be ≥ gap between trigger bottom and menu top */
    z-index: 199;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    min-width: 230px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    box-shadow: var(--shadow-md);
    z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown.dd-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-family: var(--ff-head);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    transition: all var(--dur) var(--ease);
    text-decoration: none;
}
.dropdown-item:hover { background: var(--bg-warm); color: var(--primary); padding-left: 26px; }
.dropdown-item i { color: var(--primary); width: 14px; text-align: center; flex-shrink: 0; }

/* Nav right-side icon buttons */
.nav-icon-btn {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--dark);
    font-size: 0.82rem;
    text-decoration: none;
    transition: all var(--dur) var(--ease);
    flex-shrink: 0;
}
.nav-icon-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* Hamburger toggle */
#mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}
#mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--dark);
    transition: all var(--dur) var(--ease);
}
@media (max-width:1023px) {
    .nav-desktop,
    .nav-actions-desktop { display: none !important; }
    #mobile-menu-btn { display: flex; }
}

/* ── 9. MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    font-family: var(--ff-head);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--dur) var(--ease);
    text-decoration: none;
}
.mobile-nav-link:hover { color: var(--primary); background: var(--bg-warm); padding-left: 30px; }
.mobile-nav-link i { color: var(--primary); width: 16px; text-align: center; flex-shrink: 0; }

/* ── 10. BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--ff-head); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 13px 26px;
    background: var(--primary); color: var(--white);
    border: 1px solid var(--primary);
    cursor: pointer; white-space: nowrap; text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.btn-primary:hover {
    background: var(--primary-dark); border-color: var(--primary-dark); color: white;
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,148,109,0.45);
}

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--ff-head); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 12px 24px;
    background: transparent; color: var(--dark);
    border: 1px solid var(--dark);
    cursor: pointer; white-space: nowrap; text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.btn-secondary:hover { background: var(--dark); color: white; transform: translateY(-2px); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--ff-head); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 12px 24px;
    background: transparent; color: var(--primary);
    border: 1px solid var(--primary);
    cursor: pointer; white-space: nowrap; text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--ff-head); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 12px 24px;
    background: var(--gold); color: var(--dark);
    border: 1px solid var(--gold);
    cursor: pointer; white-space: nowrap; text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }

.btn-whatsapp {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--ff-head); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 12px 20px;
    background: #25D366; color: white;
    border: 1px solid #25D366;
    cursor: pointer; white-space: nowrap; text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.btn-whatsapp:hover { background: #128C7E; border-color: #128C7E; transform: translateY(-2px); }

/* ── 11. HERO SECTION (HOMEPAGE) ───────────────────────────────── */
.hero-section {
    background: linear-gradient(160deg, var(--primary-dark) 0%, #4A3020 55%, #6B4C2A 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(201,136,64,0.07) 0%, transparent 38%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-float-1 { position: absolute; border-radius: 50%; pointer-events: none; width: 500px; height: 500px; top: -200px; right: -80px; background: rgba(255,255,255,0.04); }
.hero-float-2 { position: absolute; border-radius: 50%; pointer-events: none; width: 300px; height: 300px; bottom: -100px; left: 8%;  background: rgba(255,255,255,0.03); }
.hero-float-3 { position: absolute; border-radius: 50%; pointer-events: none; width: 180px; height: 180px; top: 35%; right: 28%; background: rgba(201,136,64,0.06); }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-family: var(--ff-head);
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.hero-subtitle {
    font-family: var(--ff-body);
    font-size: 0.97rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.82;
    max-width: 500px;
}
.hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 20px;
}
.hero-stat { flex: 1; text-align: center; padding: 0 12px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.18); flex-shrink: 0; }
.hero-stat-number {
    font-family: var(--ff-head);
    font-size: 1.5rem; font-weight: 700;
    color: var(--gold-light); line-height: 1; letter-spacing: -0.02em;
}
.hero-stat-label {
    font-family: var(--ff-head);
    font-size: 0.55rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-top: 4px;
}
.hero-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
}
.service-icon-bubble {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: 0.82rem; flex-shrink: 0;
    transition: all var(--dur) var(--ease);
}

/* ── 12. PAGE HERO (INNER PAGES) ───────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 64px 0 48px;
    position: relative;
    overflow: hidden;
}
.page-hero-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── 13. BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--ff-head);
    font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── 14. SERVICE CARDS ─────────────────────────────────────────── */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--dur) var(--ease);
    height: 100%; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hl); border-color: rgba(184,148,109,0.30); }
.service-card:hover .icon-box { background: var(--primary); color: white; border-color: var(--primary); }

.icon-box {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    color: var(--primary); font-size: 1.15rem; flex-shrink: 0;
    transition: all var(--dur) var(--ease);
}
.aspect-service { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.img-cover { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s var(--ease); }
.service-card:hover .img-cover { transform: scale(1.05); }

/* ── 15. FEATURE ITEMS ─────────────────────────────────────────── */
.feature-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
}
.feature-item:hover { background: var(--white); border-color: var(--primary); box-shadow: var(--shadow-sm); }
.feature-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: white;
    font-size: 0.82rem; flex-shrink: 0;
}

/* ── 16. STAT CARDS ────────────────────────────────────────────── */
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px 20px;
    text-align: center;
    transition: all var(--dur) var(--ease);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.stat-number {
    font-family: var(--ff-head);
    font-size: 2.4rem; font-weight: 700;
    color: var(--primary); letter-spacing: -0.03em; line-height: 1;
}

/* ── 17. PROCESS STEPS ─────────────────────────────────────────── */
.process-step {
    text-align: center; padding: 32px 22px;
    background: var(--white); border: 1px solid var(--border);
    transition: all var(--dur) var(--ease); position: relative;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top: 2px solid var(--primary); }
.process-number {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: white;
    font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
    margin: 0 auto 20px; position: relative; z-index: 1;
}
.process-connector {
    position: absolute; top: 54px; right: -50%;
    width: 100%; height: 1px; background: var(--border); z-index: 0;
}

/* ── 18. TESTIMONIAL CARDS ─────────────────────────────────────── */
.testimonial-card {
    background: var(--white); border: 1px solid var(--border);
    padding: 28px; position: relative; overflow: hidden;
    transition: all var(--dur) var(--ease);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 10px; right: 20px;
    font-size: 5.5rem; line-height: 1;
    color: var(--bg-gray); font-family: Georgia, serif;
    pointer-events: none; user-select: none;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(184,148,109,0.30); }
.testimonial-avatar {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: white;
    font-family: var(--ff-head); font-weight: 700; font-size: 1rem;
    flex-shrink: 0; overflow: hidden;
}

/* ── 19. FAQ ───────────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border); overflow: hidden;
    transition: border-color var(--dur) var(--ease); margin-bottom: 8px;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item.active { border-color: var(--primary); }

.faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 20px; cursor: pointer;
    font-family: var(--ff-body); font-weight: 600; font-size: 0.88rem;
    color: var(--dark); background: var(--white);
    transition: all var(--dur) var(--ease); user-select: none;
}
.faq-question:hover { background: var(--bg-warm); color: var(--primary); }
.faq-item.active .faq-question { background: var(--primary); color: white; }

.faq-icon {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-warm); border: 1px solid var(--border);
    flex-shrink: 0; transition: all var(--dur) var(--ease);
}
.faq-item.active .faq-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.faq-item.active .faq-icon i { transform: rotate(45deg); color: white; }

.faq-answer {
    max-height: 0; overflow: hidden;
    padding: 0 20px;
    font-size: 0.875rem; color: var(--body-text); line-height: 1.8;
    background: var(--bg-warm); border-top: 1px solid transparent;
    transition: max-height 0.36s var(--ease), padding 0.36s var(--ease), border-color 0.36s;
}
.faq-answer.open { max-height: 400px; padding: 16px 20px; border-top-color: var(--border); }

/* ── 20. AREA TAGS ─────────────────────────────────────────────── */
.area-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    background: var(--white); border: 1px solid var(--border);
    font-family: var(--ff-head); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark); text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.area-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }
.area-tag i { color: var(--primary); font-size: 0.55rem; }
.area-tag:hover i { color: white; }

/* ── 21. CTA SECTION ───────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); position: relative; overflow: hidden; }
.cta-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── 22. WHY CARDS ─────────────────────────────────────────────── */
.why-card {
    text-align: center; padding: 32px 20px;
    background: var(--white); border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hl); border-top: 2px solid var(--primary); }
.why-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.35rem;
    border: 1px solid var(--border); background: var(--bg-warm);
    transition: all var(--dur) var(--ease);
}
.why-card:hover .why-icon { background: var(--primary); border-color: var(--primary); }
.why-card:hover .why-icon i { color: white !important; }

/* ── 23. BLOG CARDS ────────────────────────────────────────────── */
.blog-card {
    background: var(--white); border: 1px solid var(--border);
    overflow: hidden; transition: all var(--dur) var(--ease);
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hl); }
.blog-img { transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-tag {
    display: inline-block; padding: 4px 10px;
    background: var(--primary); color: white;
    font-family: var(--ff-head); font-size: 0.56rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
}

/* ── 24. CONTACT INFO CARDS ────────────────────────────────────── */
.contact-info-card {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0px;
    padding: 24px;
    background: var(--white); border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
    text-decoration: none; color: inherit;
    height: 100%;
}
.contact-info-card:hover { border-color: var(--primary); background: var(--bg-warm); box-shadow: var(--shadow-sm); }
.contact-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: white;
    font-size: 0.82rem; flex-shrink: 0;
}

/* ── 25. FORMS ─────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
    font-family: var(--ff-head);
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--dark);
}
.form-input {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--border);
    background: var(--white); color: var(--dark);
    font-family: var(--ff-body); font-size: 0.88rem;
    outline: none; border-radius: var(--radius-sm); -webkit-appearance: none;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(184,148,109,0.14); }
.form-input::placeholder { color: var(--muted); font-size: 0.83rem; }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; }

/* ── 26. ALERTS ────────────────────────────────────────────────── */
.alert {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px; margin-bottom: 20px;
    border: 1px solid; font-size: 0.875rem; line-height: 1.6;
}
.alert-success { background: #F0FDF4; border-color: #BBF7D0; color: #166534; }
.alert-error   { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }

/* ── 27. FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.62); }
.footer-title {
    font-family: var(--ff-head);
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-link {
    display: flex; align-items: center; gap: 8px;
    padding: 5px 0; font-size: 0.82rem;
    color: rgba(255,255,255,0.58); text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.footer-link::before {
    content: '–'; font-size: 0.65rem;
    color: rgba(255,255,255,0.22); flex-shrink: 0;
    transition: color var(--dur) var(--ease);
}
.footer-link:hover { color: var(--gold-light); padding-left: 4px; }
.footer-link:hover::before { color: var(--gold); }
.footer-bottom {
    background: rgba(0,0,0,0.22); padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── 28. SOCIAL BUTTONS ────────────────────────────────────────── */
.social-btn {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.62); font-size: 0.76rem;
    text-decoration: none; transition: all var(--dur) var(--ease);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }

/* ── 29. NEWSLETTER ────────────────────────────────────────────── */
.newsletter-input {
    flex: 1; min-width: 0; padding: 11px 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.07); color: white;
    font-family: var(--ff-body); font-size: 0.84rem;
    outline: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    transition: border-color var(--dur) var(--ease);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-btn {
    padding: 11px 16px;
    background: var(--primary); color: white;
    border: 1px solid var(--primary);
    cursor: pointer; font-size: 0.84rem; flex-shrink: 0;
    transition: background var(--dur) var(--ease);
}
.newsletter-btn:hover { background: var(--primary-dark); }

/* ── 30. FLOATING BUTTONS ──────────────────────────────────────── */
.float-buttons { position: fixed; bottom: 88px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 90; }
.float-btn {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem; text-decoration: none;
    box-shadow: var(--shadow-md); transition: all var(--dur) var(--ease);
}
.float-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: var(--shadow-lg); color: white; }
.float-whatsapp { background: #25D366; }
.float-call     { background: var(--primary); }

/* ── 31. BACK TO TOP ───────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 28px; right: 20px;
    width: 40px; height: 40px;
    background: var(--dark); color: white;
    border: none; cursor: pointer; font-size: 0.88rem; z-index: 90;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all var(--dur) var(--ease);
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ── 32. LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.93);
    z-index: 9000; display: flex; align-items: center; justify-content: center; gap: 16px;
    opacity: 0; visibility: hidden; transition: all 0.25s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: min(88vw, 900px); max-height: 80vh; object-fit: contain; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    color: white; cursor: pointer; font-size: 0.88rem;
    transition: all var(--dur) var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── 33. SCROLL ANIMATIONS ─────────────────────────────────────── */
[data-aos] { opacity: 0; transition: opacity 0.72s var(--ease), transform 0.72s var(--ease); }
[data-aos="fade-up"]    { transform: translateY(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-down"]  { transform: translateY(-28px); }
.aos-animate { opacity: 1 !important; transform: translate(0,0) !important; }

/* ── 34. PAGINATION ────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 44px; flex-wrap: wrap; }
.pagination a,
.pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border: 1px solid var(--border);
    font-family: var(--ff-head); font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.08em; color: var(--dark); text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.pagination a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.pagination .current { background: var(--primary); color: white; border-color: var(--primary); }

/* ── 35. UTILITIES ─────────────────────────────────────────────── */
#sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; transform: translateY(100%); transition: transform 0.35s var(--ease); }
.primary-gradient,
.bg-primary-gradient { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* ── 36. PAGE HERO EXTENSIONS ──────────────────────────────────── */
.page-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-float-1 {
    position: absolute; border-radius: 50%; pointer-events: none;
    width: 400px; height: 400px; top: -150px; right: -80px;
    background: rgba(255,255,255,0.04);
}
.page-hero-float-2 {
    position: absolute; border-radius: 50%; pointer-events: none;
    width: 250px; height: 250px; bottom: -80px; left: 5%;
    background: rgba(201,136,64,0.06);
}
.page-hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: white;
    letter-spacing: -0.01em; line-height: 1.1;
    margin-bottom: 14px;
}
.page-hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem; line-height: 1.75;
    max-width: 520px; margin: 0 auto;
}

/* ── 37. HERO FLOAT SECOND ──────────────────────────────────────── */
.hero-float-2 {
    position: absolute; border-radius: 50%; pointer-events: none;
    width: 350px; height: 350px; bottom: -100px; left: 3%;
    background: rgba(201,136,64,0.05);
}

/* ── 38. TIMELINE ───────────────────────────────────────────────── */
.timeline {
    position: relative;
    max-width: 900px; margin: 0 auto;
}
.timeline::before {
    content: ''; position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 1px; background: var(--border);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex; margin-bottom: 40px;
    position: relative;
}
.timeline-left  { justify-content: flex-end; padding-right: calc(50% + 32px); }
.timeline-right { justify-content: flex-start; padding-left: calc(50% + 32px); }
.timeline-content {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px; max-width: 340px;
    transition: all var(--dur) var(--ease);
}
.timeline-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.timeline-year {
    font-family: var(--ff-head);
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}
.timeline-dot {
    position: absolute; left: 50%; top: 28px;
    width: 14px; height: 14px;
    background: var(--primary); border: 2px solid white;
    box-shadow: 0 0 0 2px var(--primary);
    transform: translateX(-50%);
}

/* ── 39. CONTACT FORM ───────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 639px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-select { appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-textarea { min-height: 110px; resize: vertical; }

@media (max-width:1023px) {
    :root { --sec-y: 64px; --sec-y-sm: 48px; }
    .hero-section { min-height: auto; padding-top: 60px; padding-bottom: 60px; }
    .dropdown-menu { left: 0; transform: none; }
    .dropdown:hover .dropdown-menu { transform: none; left: 0; }
}
@media (max-width:767px) {
    :root { --sec-y: 52px; --sec-y-sm: 40px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.65rem; }
    .hero-stat-number { font-size: 1.25rem; }
    .float-buttons { bottom: 72px; right: 14px; }
    .back-to-top   { right: 14px; bottom: 20px; }
}
@media (max-width:479px) {
    :root { --sec-y: 40px; --sec-y-sm: 32px; }
    .btn-primary, .btn-secondary, .btn-outline, .btn-gold { padding: 12px 20px; font-size: 0.62rem; }
    .hero-stat-divider { display: none; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
}
@media (max-width: 767px) {
    .timeline::before { left: 20px; }
    .timeline-left  { justify-content: flex-start; padding-right: 0; padding-left: 52px; }
    .timeline-right { justify-content: flex-start; padding-left: 52px; }
    .timeline-dot   { left: 20px; }
    .timeline-content { max-width: 100%; }
    .page-hero-title { font-size: 1.85rem; }
}

/* ── 40. FURNIXAR RADIUS OVERRIDES ──────────────────────────────── */
.btn-primary, .btn-secondary, .btn-outline,
.btn-gold, .btn-whatsapp                                              { border-radius: var(--radius); }
.service-card, .why-card, .stat-card, .process-step                  { border-radius: var(--radius); }
.testimonial-card, .blog-card, .contact-info-card, .feature-item     { border-radius: var(--radius); }
.timeline-content, .hero-card                                        { border-radius: var(--radius); }
.faq-item                                                             { border-radius: var(--radius); }
.dropdown-menu                                                        { border-radius: 0 0 var(--radius) var(--radius); }
.icon-box, .feature-icon, .contact-icon,
.process-number, .why-icon, .service-icon-bubble                     { border-radius: var(--radius-sm); }
.testimonial-avatar                                                   { border-radius: 50%; }
.nav-icon-btn, .nav-logo-icon                                         { border-radius: var(--radius-sm); }
.mobile-menu                                                          { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.pagination a, .pagination span                                       { border-radius: var(--radius-sm); }
.newsletter-btn                                                       { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.back-to-top, .float-btn                                             { border-radius: var(--radius); }
.area-tag, .topbar-wa                                                { border-radius: var(--radius-sm); }
.section-badge, .hero-badge                                          { border-radius: var(--radius-sm); }
.blog-tag                                                            { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.social-btn                                                          { border-radius: 50%; }
.lightbox-close, .lightbox-prev, .lightbox-next                      { border-radius: var(--radius-sm); }
.page-loader                                                         { border-radius: 0; }

/* ── 41. SCRIPT ACCENT (Dancing Script) ─────────────────────────── */
.script-accent {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
    display: inline-block;
    line-height: 1;
}
.script-accent-lg { font-size: 1.6em; letter-spacing: 0.02em; }

/* ── 42. FEATURE / TRUST BAR ─────────────────────────────────────── */
.feature-bar {
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.feature-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid var(--border);
    transition: background var(--dur) var(--ease);
}
.feature-bar-item:last-child { border-right: 0; }
.feature-bar-item:hover      { background: var(--white); }
.feature-bar-icon {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: white;
    font-size: 0.95rem; flex-shrink: 0;
    border-radius: var(--radius-sm);
    transition: all var(--dur) var(--ease);
}
.feature-bar-item:hover .feature-bar-icon { background: var(--primary-dark); }
.feature-bar-title {
    font-family: var(--ff-head);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--dark); line-height: 1.2;
}
.feature-bar-sub {
    font-size: 0.73rem;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.45;
}
@media (max-width: 767px) {
    .feature-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-bar-item { border-bottom: 1px solid var(--border); }
    .feature-bar-item:nth-child(2n) { border-right: 0; }
    .feature-bar-item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 479px) {
    .feature-bar-grid { grid-template-columns: 1fr; }
    .feature-bar-item { border-right: 0; border-bottom: 1px solid var(--border); }
    .feature-bar-item:last-child { border-bottom: 0; }
}

/* ── 43. FURNIXAR SECTION TITLE ACCENT LINE ──────────────────────── */
.section-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.section-title-bar .bar {
    width: 36px; height: 2px;
    background: var(--gold);
}
.section-title-bar .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ── 44. FURNIXAR REFINED CARD HOVER ─────────────────────────────── */
.service-card:hover  { box-shadow: 0 10px 36px rgba(0,0,0,0.09); }
.why-card:hover      { box-shadow: 0 10px 36px rgba(0,0,0,0.09); }
.stat-card:hover     { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.blog-card:hover     { box-shadow: 0 10px 36px rgba(0,0,0,0.09); }

/* ── 45. FURNIXAR NAV REFINEMENTS ────────────────────────────────── */
.nav-link {
    font-weight: 500;
}
.dropdown-item { border-radius: 0; }

/* ── 46. FURNIXAR TOPBAR REFINEMENTS ─────────────────────────────── */
.topbar { padding: 8px 0; }

/* ── 47. SCROLL ANIMATION TIMING ─────────────────────────────────── */
[data-aos] {
    transition: opacity 0.64s var(--ease), transform 0.64s var(--ease);
}

/* ── 48. GALLERY ──────────────────────────────────────────────────── */
.tab-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 20px;
    border: 1px solid var(--border);
    background: var(--white); color: var(--dark);
    font-family: var(--ff-head); font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; white-space: nowrap;
    transition: all var(--dur) var(--ease);
    border-radius: var(--radius-sm);
}
.tab-btn:hover  { background: var(--bg-warm); border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.gallery-item {
    position: relative; overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: var(--radius);
    break-inside: avoid; margin-bottom: 16px;
    transition: box-shadow var(--dur) var(--ease);
}
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item img { transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(45, 34, 24, 0.80);
    display: flex; align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
    border-radius: var(--radius);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── 49. AMC PLAN CARDS ───────────────────────────────────────────── */
.plan-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 24px;
    position: relative;
    transition: all var(--dur) var(--ease);
    border-radius: var(--radius);
    display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hl); }
.plan-card.popular {
    border-color: var(--primary);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-md);
}
.plan-card.popular:hover { box-shadow: var(--shadow-hl); }

.plan-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    background: var(--primary);
    color: white;
    font-family: var(--ff-head); font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.plan-price {
    font-family: var(--ff-head);
    font-size: 2.1rem; font-weight: 700;
    color: var(--primary); letter-spacing: -0.03em; line-height: 1;
}
.plan-card.popular .plan-price { color: var(--gold-dark); }

.plan-feature {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.83rem; color: var(--body-text);
    line-height: 1.55;
}
.plan-feature:last-child { border-bottom: 0; }
.plan-feature i { color: var(--gold); font-size: 0.65rem; margin-top: 3px; flex-shrink: 0; }

/* ── 50. COMPREHENSIVE RESPONSIVE SYSTEM ────────────────────────── */

/* --- Global overflow guard --- */
html { max-width: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }

/* scroll-padding so sticky header doesn't cover anchors */
html { scroll-padding-top: 118px; }

@media (max-width: 767px) {
    html { scroll-padding-top: 102px; }
}

/* Policy page content box — class added to PHP files */
.policy-content { line-height: 1.85; color: var(--body-text); font-size: 0.9rem; }

/* ── TABLET (max 1023px) ──────────────────────────────────────── */
@media (max-width: 1023px) {
    /* Reduce hero vertical padding */
    .hero-section { padding-top: 52px; padding-bottom: 68px; }

    /* Contact sidebar — make it full width */
    .contact-sidebar { width: 100%; }

    /* Plan cards 2-col on tablet */
    .plan-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── MOBILE (max 767px) ──────────────────────────────────────── */
@media (max-width: 767px) {

    /* Topbar — reduce WA button on mobile */
    .topbar-wa { font-size: 0.58rem; padding: 4px 10px; }

    /* Hero */
    .hero-section { padding-top: 36px; padding-bottom: 56px; }
    .hero-badge   { font-size: 0.58rem; letter-spacing: 0.12em; }
    .hero-subtitle { font-size: 0.84rem; max-width: 100%; }

    /* Section heading */
    .section-title    { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.86rem; }
    .section-badge    { font-size: 0.57rem; }

    /* Page hero inner content */
    .page-hero { padding: 36px 0 28px; }
    .page-hero-subtitle { font-size: 0.84rem; }

    /* Policy content box padding */
    .policy-content { padding: 28px 22px !important; }

    /* Feature bar icon — slightly smaller */
    .feature-bar-icon { width: 36px; height: 36px; font-size: 0.82rem; }
    .feature-bar-item { gap: 10px; padding: 16px 14px; }

    /* Service card padding */
    .service-card .p-6 { padding: 18px 16px; }

    /* Why-card */
    .why-card { padding: 24px 18px; }
    .why-icon  { width: 46px; height: 46px; font-size: 1.05rem; }

    /* Stat card */
    .stat-card { padding: 20px 14px; }
    .stat-number { font-size: 2rem; }

    /* Testimonial card */
    .testimonial-card { padding: 22px 16px; }

    /* Blog card */
    .blog-card { overflow: hidden; }

    /* Plan cards */
    .plan-card { padding: 26px 18px; }
    .plan-price { font-size: 1.75rem; }

    /* Process steps — stack vertically on mobile */
    .process-step { padding: 20px 14px; }
    .process-number { font-size: 1rem; width: 38px; height: 38px; }

    /* FAQ */
    .faq-question { font-size: 0.82rem; padding: 13px 16px; }
    .faq-answer { padding-left: 16px; padding-right: 16px; }

    /* Timeline already handled in section 38 */

    /* Contact info card */
    .contact-info-card { padding: 22px 16px; }

    /* Newsletter — stack form vertically */
    #newsletter-form { flex-direction: column; }
    .newsletter-input {
        border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
        min-width: 0;
        width: 100%;
    }
    .newsletter-btn {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
        width: 100%;
        padding: 13px;
        justify-content: center;
    }

    /* Emergency CTA band — stack phone numbers */
    .float-buttons { bottom: 70px; right: 12px; }
    .float-btn { width: 44px; height: 44px; font-size: 1rem; }
    .back-to-top { bottom: 18px; right: 12px; }

    /* Footer social icons */
    .social-btn { width: 32px; height: 32px; font-size: 0.72rem; }
    .footer-title { font-size: 0.65rem; margin-bottom: 12px; }
    .footer-link  { font-size: 0.8rem; margin-bottom: 6px; }

    /* Area tags */
    .area-tags-wrap { flex-wrap: wrap !important; }
    .area-tag       { font-size: 0.68rem; padding: 5px 10px; }
}

/* ── SMALL MOBILE (max 479px) ────────────────────────────────── */
@media (max-width: 479px) {

    /* Topbar WA button — smallest size */
    .topbar-wa { font-size: 0.55rem; padding: 3px 8px; }

    /* Hero title */
    .hero-title { font-size: 1.55rem !important; line-height: 1.15; }

    /* Hero CTA buttons — stack */
    .hero-section .flex.flex-wrap.gap-3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hero-section .btn-primary,
    .hero-section .btn-secondary { width: auto; min-width: 180px; }

    /* Trust badge strip */
    .hero-section .flex.flex-wrap.items-center.gap-5 { gap: 8px; }
    .hero-section .flex.flex-wrap.items-center.gap-5 span { font-size: 0.7rem; }

    /* Section titles */
    .section-title { font-size: 1.3rem; }
    .page-hero-title { font-size: 1.4rem; }
    .section-subtitle { font-size: 0.83rem; }

    /* Policy content */
    .policy-content { padding: 20px 14px !important; font-size: 0.85rem; }

    /* Plan cards — single column */
    .plan-card { padding: 22px 14px; }
    .plan-feature { font-size: 0.78rem; }

    /* Blog image height cap */
    .blog-card img,
    .blog-card .blog-img { max-height: 170px; object-fit: cover; }

    /* Stat number */
    .stat-number { font-size: 1.75rem; }

    /* Float buttons shift up (above mobile browser chrome) */
    .float-buttons { bottom: 66px; right: 10px; gap: 8px; }
    .float-btn { width: 42px; height: 42px; font-size: 0.95rem; }
    .back-to-top { bottom: 16px; right: 10px; width: 34px; height: 34px; font-size: 0.72rem; }

    /* Footer bottom bar */
    .footer-bottom { padding: 14px 0; }
    .footer { padding-top: 44px !important; }

    /* Section padding (var already set by :root overrides above) */
    .section-padding    { padding-top: 40px; padding-bottom: 40px; }
    .section-padding-sm { padding-top: 28px; padding-bottom: 28px; }

    /* Container horizontal padding bump down */
    .container { padding-left: 16px; padding-right: 16px; }
}

/* ── NAV — touch target & mobile menu scroll lock ─────────────── */
.mobile-menu { overscroll-behavior: contain; }

@media (max-width: 1023px) {
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .mobile-nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* ── IMAGE SAFETY ────────────────────────────────────────────── */
img, video, iframe, embed, object {
    max-width: 100%;
}
iframe { border: none; }

/* ── PREVENT TABLE OVERFLOW ──────────────────────────────────── */
table {
    width: 100%;
    border-collapse: collapse;
}
@media (max-width: 767px) {
    table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── INLINE GRID OVERRIDES FOR HARDCODED 2-COL ───────────────── */
@media (max-width: 399px) {
    /* index.php hero card stats grid (grid-cols-2 gap-2) */
    .hero-card [class*="grid-cols-2"] { gap: 4px; }
    .hero-card [class*="grid-cols-2"] .service-icon-bubble { width: 28px; height: 28px; font-size: 0.7rem; }

    /* about.php small stat 2-col inside panels */
    [class*="grid-cols-2"].gap-4 .text-3xl,
    [class*="grid-cols-2"].gap-4 [style*="font-size:2"] { font-size: 1.5rem !important; }
}

/* ── SITEMAP GRID ────────────────────────────────────────────── */
@media (max-width: 639px) {
    .sitemap-grid { grid-template-columns: 1fr !important; }
}

/* ── ABOUT PAGE — Mission/Vision/Values 3-col on mobile ─────── */
/* (Tailwind md:grid-cols-3 already collapses to 1-col below 768px) */

/* ── SMOOTH SCROLL SUPPORT ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── PRINT BASICS ───────────────────────────────────────────── */
@media print {
    .topbar, nav, .float-buttons, .back-to-top, .lightbox,
    .feature-bar, #newsletter-form, .footer-bottom { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
}
