/* ==========================================================================
   ReachCoimbatore — Premium Homepage UI Template
   Poppins (headings/buttons) + Inter (body)
   ========================================================================== */

:root {
    --primary: #E53935;
    --primary-dark: #C62828;
    --primary-light: rgba(229, 57, 53, 0.10);
    --secondary: #FF5A3C;
    --bg: #F8F9FB;
    --card: #FFFFFF;
    --gray-100: #F3F4F6;
    --text: #202124;
    --text-secondary: #666666;
    --border: #EEEEEE;
    --success: #28A745;
    --warning: #FFC107;
    --blue: #4285F4;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, #14151A 0%, #24262E 100%);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-xs: 0 2px 8px rgba(20, 20, 43, 0.05);
    --shadow-sm: 0 6px 20px rgba(20, 20, 43, 0.06);
    --shadow-md: 0 14px 40px rgba(20, 20, 43, 0.09);
    --shadow-lg: 0 28px 70px rgba(20, 20, 43, 0.14);
    --shadow-primary: 0 14px 34px rgba(229, 57, 53, 0.28);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.font-heading,
.navbar-brand,
.section-title,
.btn,
.fw-heading {
    font-family: 'Poppins', sans-serif;
}

a { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }
img { max-width: 100%; display: block; }

::selection { background: var(--primary); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--secondary)); border-radius: 10px; }

.container-xl-custom { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

.section-padding { padding: 84px 0; }
.section-padding-sm { padding: 48px 0; }
.bg-soft { background: var(--bg); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(229, 57, 53, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

.section-title { font-size: 2.1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 6px; }
.section-sub { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }

/* ===== Buttons ===== */
.btn { font-family: 'Poppins', sans-serif; font-weight: 500; border-radius: var(--radius-pill); transition: 0.35s var(--ease); position: relative; overflow: hidden; }

.btn-brand-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-primary);
}
.btn-brand-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 20px 45px rgba(229, 57, 53, 0.38); }
.btn-brand-primary:active { transform: translateY(-1px); }

.btn-brand-outline {
    color: #fff;
    background: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 10px 26px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-brand-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-primary); }

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    padding: 8px 22px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.28); color: #fff; transform: translateY(-2px); }

.btn-dark-pill {
    background: var(--text);
    color: #fff;
    border: none;
    padding: 10px 24px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-dark-pill:hover { background: #000; color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }

.link-arrow { font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; font-size: 0.92rem; }
.link-arrow i { transition: transform 0.3s var(--ease); font-size: 0.78rem; }
.link-arrow:hover { color: var(--primary-dark); }
.link-arrow:hover i { transform: translateX(4px); }

/* ===== Generic Card ===== */
.pcard {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: 0.4s var(--ease);
}
.pcard-hover:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(229, 57, 53, 0.15); }

.badge-pill { border-radius: var(--radius-pill); font-weight: 600; font-size: 0.72rem; padding: 5px 13px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid rgba(20, 20, 43, 0.05);
    transition: 0.35s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(20, 20, 43, 0.08); }
.site-header .top-strip {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    padding: 6px 0;
}
.site-header .top-strip a { color: rgba(255, 255, 255, 0.75); }
.site-header .top-strip a:hover { color: #fff; }

.site-header .container { 
    
    
        max-width: 1250px !important;
    

 }

.brand-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand-logo .brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.brand-logo .brand-name span.brand-accent { color: var(--primary); }
.brand-logo .brand-tag { font-size: 0.68rem; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.03em; }
.brand-mark {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--gradient-primary);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.15rem; margin-right: 10px;
    box-shadow: var(--shadow-primary);
}

/* ===== Logo Image Section ===== */
.navbar-brand-section {
    flex-shrink: 0;
    min-width: 56px;
    min-height: 56px;
    padding: 4px;
}

.brand-logo-image {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    border-radius: 8px;
    transition: transform 0.35s var(--ease);
}

.navbar-brand-section:hover .brand-logo-image {
    transform: scale(1.05);
}

.main-nav .nav-link {
    font-weight: 500;
    font-size: 0.94rem;
    color: var(--text);
    padding: 10px 16px !important;
    position: relative;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 4px;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
    border-radius: 2px;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--primary); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 8px; }

/* Header Action Buttons - Compact & Elegant */
.btn-header-action {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-radius: var(--radius-pill);
    transition: all 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-size: 0.85rem;
    padding: 8px 20px;
    height: 38px;
    box-shadow: var(--shadow-xs);
}

.btn-header-login {
    background: var(--gradient-primary);
    color: #fff;
}
.btn-header-login:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-header-register {
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-header-register:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-header-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}
.btn-header-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(229, 57, 53, 0.38);
}

/* Compact Icon Buttons for Header */
.header-icon {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    transition: all 0.3s var(--ease);
    font-size: 0.9rem;
    box-shadow: var(--shadow-xs);
}
.header-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-sm);
}

.icon-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg); color: var(--text); border: 1px solid var(--border);
    transition: 0.3s var(--ease); font-size: 0.95rem;
}
.icon-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 56px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 90, 60, 0.09), transparent 45%),
        radial-gradient(circle at 5% 90%, rgba(229, 57, 53, 0.07), transparent 40%),
        var(--bg);
}
.hero-section .hero-blob {
    position: absolute; width: 520px; height: 520px; border-radius: 50%;
    background: var(--gradient-primary); opacity: 0.08; filter: blur(60px);
    top: -180px; right: -160px; pointer-events: none;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-xs);
    padding: 8px 18px 8px 8px; border-radius: var(--radius-pill);
    font-size: 0.82rem; font-weight: 600; color: var(--text);
    margin-bottom: 22px;
}
.hero-eyebrow .dot-avatars { display: flex; }
.hero-eyebrow .dot-avatars img { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.hero-eyebrow .dot-avatars img:first-child { margin-left: 0; }

.hero-section h1 { font-size: 3.1rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.14; color: var(--text); }
.hero-section h1 .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-section .hero-desc { font-size: 1.08rem; color: var(--text-secondary); max-width: 480px; margin: 18px 0 32px; line-height: 1.7; }

.hero-search-panel {
    background: #fff;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: 640px;
}
.hero-search-panel .search-field { display: flex; align-items: center; gap: 10px; flex: 1; padding: 10px 18px; min-width: 0; }
.hero-search-panel .search-field i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.hero-search-panel .search-field input,
.hero-search-panel .search-field select {
    border: none; outline: none; background: transparent; width: 100%;
    font-family: 'Inter', sans-serif; font-size: 0.94rem; color: var(--text);
}
.hero-search-panel .divider-v { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.hero-search-panel .btn-search-round {
    background: var(--gradient-primary); color: #fff; border: none;
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem; box-shadow: var(--shadow-primary); transition: 0.3s var(--ease);
}
.hero-search-panel .btn-search-round:hover { transform: scale(1.08) rotate(6deg); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-chip {
    font-size: 0.82rem; font-weight: 500; color: var(--text-secondary);
    background: #fff; border: 1px solid var(--border); padding: 7px 16px;
    border-radius: var(--radius-pill); transition: 0.25s var(--ease);
}
.hero-chip:hover { border-color: var(--primary); color: var(--primary); background: rgba(229, 57, 53, 0.05); transform: translateY(-2px); }

.hero-visual { position: relative; }
.hero-visual .hero-img-wrap { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hero-visual .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s var(--ease); }
.hero-visual .hero-img-wrap:hover img { transform: scale(1.08); }
.hero-visual .hero-img-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20, 20, 43, 0.55) 100%);
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    z-index: 3;
    animation: floatY 5s ease-in-out infinite;
}
.float-card .fc-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: #fff; flex-shrink: 0;
}
.float-card .fc-title { font-size: 0.72rem; color: var(--text-secondary); font-weight: 500; }
.float-card .fc-value { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.float-card--weather { top: 30px; left: -30px; animation-delay: 0s; }
.float-card--verified { bottom: 40px; right: -20px; animation-delay: 1.2s; }
.float-card--rating { bottom: -22px; left: 40px; animation-delay: 2s; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== Stats strip ===== */
.stats-strip {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 30px 10px;
    margin-top: -46px;
    position: relative;
    z-index: 5;
}
.stat-item { text-align: center; padding: 10px 6px; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: var(--border); }
.stat-item .stat-icon { font-size: 1.4rem; color: var(--primary); margin-bottom: 8px; }
.stat-item .stat-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.7rem; color: var(--text); letter-spacing: -0.02em; }
.stat-item .stat-label { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }

/* ==========================================================================
   TRENDING CATEGORIES
   ========================================================================== */
.category-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 28px 14px 22px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: 0.4s var(--ease);
    height: 100%;
    display: flex; flex-direction: column; align-items: center;
}
.category-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.category-card .cat-icon {
    width: 68px; height: 68px; border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem; color: #fff; margin-bottom: 16px;
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.28);
    transition: 0.45s var(--ease);
}
.category-card:hover .cat-icon { transform: scale(1.12) rotate(-6deg); }
.category-card .cat-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.98rem; color: var(--text); }
.category-card .cat-count { font-size: 0.78rem; color: var(--text-secondary); margin-top: 3px; }

/* ===== Category Card — nth-child unique colors ===== */
.category-card .cat-icon {
    background: var(--gradient-primary);
}
.category-card:nth-child(1) .cat-icon { background: linear-gradient(135deg,#3b82f6,#60a5fa) !important; }
.category-card:nth-child(2) .cat-icon { background: linear-gradient(135deg,#22c55e,#4ade80) !important; }
.category-card:nth-child(3) .cat-icon { background: linear-gradient(135deg,#ef4444,#f87171) !important; }
.category-card:nth-child(4) .cat-icon { background: linear-gradient(135deg,#8b5cf6,#a78bfa); }
.category-card:nth-child(5) .cat-icon { background: linear-gradient(135deg,#f97316,#fb923c); }
.category-card:nth-child(6) .cat-icon { background: linear-gradient(135deg,#06b6d4,#22d3ee); }
.category-card:nth-child(7) .cat-icon { background: linear-gradient(135deg,#111827,#374151); }
.category-card:nth-child(8) .cat-icon { background: linear-gradient(135deg,#eab308,#facc15); }
.category-card:nth-child(9) .cat-icon { background: linear-gradient(135deg,#ec4899,#fb7185); }
.category-card:nth-child(10) .cat-icon { background: linear-gradient(135deg,#14b8a3,#2dd4bf); }
.category-card:nth-child(11) .cat-icon { background: linear-gradient(135deg,#6366f1,#818cf8); }
.category-card:nth-child(12) .cat-icon { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.category-card:nth-child(13) .cat-icon { background: linear-gradient(135deg,#ff62ea,#df99c4); }
.category-card:nth-child(14) .cat-icon { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.category-card:nth-child(15) .cat-icon { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.category-card:nth-child(16) .cat-icon { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.category-card:nth-child(17) .cat-icon { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.category-card:nth-child(18) .cat-icon { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.category-card:nth-child(n+18) .cat-icon { background: var(--gradient-primary); }

/* ===== Category Card — nth-child unique background tints ===== */
/* .category-card:nth-child(1) { background: rgba(59,130,246,0.04); }
.category-card:nth-child(2) { background: rgba(34,197,94,0.04); }
.category-card:nth-child(3) { background: rgba(239,68,68,0.04); }
.category-card:nth-child(4) { background: rgba(139,92,246,0.04); }
.category-card:nth-child(5) { background: rgba(249,115,22,0.04); }
.category-card:nth-child(6) { background: rgba(6,182,212,0.04); }
.category-card:nth-child(7) { background: rgba(17,24,39,0.04); }
.category-card:nth-child(8) { background: rgba(234,179,8,0.04); }
.category-card:nth-child(9) { background: rgba(236,72,153,0.04); }
.category-card:nth-child(10) { background: rgba(20,163,163,0.04); }
.category-card:nth-child(11) { background: rgba(99,102,245,0.04); }
.category-card:nth-child(12) { background: rgba(245,158,11,0.04); }
.category-card:nth-child(n+13) { background: #fff; } */



/* Category Grid - Icon colors matching numbered classes */
.category-card.category-card-1 .cat-icon { background: linear-gradient(135deg,#3b82f6,#60a5fa) !important; }
.category-card.category-card-2 .cat-icon { background: linear-gradient(135deg,#22c55e,#4ade80) !important; }
.category-card.category-card-3 .cat-icon { background: linear-gradient(135deg,#ef4444,#f87171) !important; }
.category-card.category-card-4 .cat-icon { background: linear-gradient(135deg,#8b5cf6,#a78bfa) !important; }
.category-card.category-card-5 .cat-icon { background: linear-gradient(135deg,#f97316,#fb923c) !important; }
.category-card.category-card-6 .cat-icon { background: linear-gradient(135deg,#06b6d4,#22d3ee) !important; }
.category-card.category-card-7 .cat-icon { background: linear-gradient(135deg,#111827,#374151) !important; }
.category-card.category-card-8 .cat-icon { background: linear-gradient(135deg,#eab308,#facc15) !important; }
.category-card.category-card-9 .cat-icon { background: linear-gradient(135deg,#ec4899,#fb7185) !important; }
.category-card.category-card-10 .cat-icon { background: linear-gradient(135deg,#14b8a3,#2dd4bf) !important; }
.category-card.category-card-11 .cat-icon { background: linear-gradient(135deg,#6366f1,#818cf8) !important; }
.category-card.category-card-12 .cat-icon { background: linear-gradient(135deg,#f59e0b,#fbbf24) !important; }
.category-card.category-card-13 .cat-icon { background: linear-gradient(135deg,#ff82e0,#663362) !important; }
.category-card.category-card-14 .cat-icon { background: linear-gradient(135deg,#0891b2,#67e8f9) !important; }
.category-card.category-card-15 .cat-icon { background: linear-gradient(135deg,#7c3aed,#a78bfa) !important; }
.category-card.category-card-16 .cat-icon { background: linear-gradient(135deg,#dc2626,#fca5a5) !important; }
.category-card.category-card-17 .cat-icon { background: linear-gradient(135deg,#059669,#6ee7b7) !important; }
.category-card.category-card-18 .cat-icon { background: linear-gradient(135deg,#d97706,#fcd34d) !important; }
.category-card.category-card-19 .cat-icon { background: linear-gradient(135deg,#be185d,#f9a8d4) !important; }
.category-card.category-card-20 .cat-icon { background: linear-gradient(135deg,#4338ca,#818cf8) !important; }
.category-card.category-card-21 .cat-icon { background: linear-gradient(135deg,#b91c1c,#f87171) !important; }
.category-card.category-card-22 .cat-icon { background: linear-gradient(135deg,#0d9488,#5eead4) !important; }
.category-card.category-card-23 .cat-icon { background: linear-gradient(135deg,#4f46e5,#6366f1) !important; }
.category-card.category-card-24 .cat-icon { background: linear-gradient(135deg,#b45309,#fbbf24) !important; }
.category-card.category-card-25 .cat-icon { background: linear-gradient(135deg,#9d174d,#f472b6) !important; }
.category-card.category-card-26 .cat-icon { background: linear-gradient(135deg,#1e40af,#93c5fd) !important; }
.category-card.category-card-27 .cat-icon { background: linear-gradient(135deg,#047857,#6ee7b7) !important; }
.category-card.category-card-28 .cat-icon { background: linear-gradient(135deg,#c026d3,#d8b4fe) !important; }
.category-card.category-card-29 .cat-icon { background: linear-gradient(135deg,#ea580c,#fdba74) !important; }
.category-card.category-card-30 .cat-icon { background: linear-gradient(135deg,#0f766e,#5eead4) !important; }
/* Category Grid in Numbers */
.category-card-1 { background: rgba(59,130,246,0.04); }
.category-card-2 { background: rgba(34,197,94,0.04); }
.category-card-3 { background: rgba(239,68,68,0.04); }
.category-card-4 { background: rgba(139,92,246,0.04); }
.category-card-5 { background: rgba(249,115,22,0.04); }
.category-card-6 { background: rgba(6,182,212,0.04); }
.category-card-7 { background: rgba(17,24,39,0.04); }
.category-card-8 { background: rgba(234,179,8,0.04); }
.category-card-9 { background: rgba(236,72,153,0.04); }
.category-card-10 { background: rgba(20,163,163,0.04); }
.category-card-11 { background: rgba(99,102,245,0.04); }
.category-card-12 { background: rgba(245,158,11,0.04); }
.category-card-13 { background: rgba(255,130,224,0.04); }
.category-card-14 { background: rgba(8,145,178,0.04); }
.category-card-15 { background: rgba(124,58,237,0.04); }
.category-card-16 { background: rgba(220,38,38,0.04); }
.category-card-17 { background: rgba(5,150,105,0.04); }
.category-card-18 { background: rgba(217,119,6,0.04); }
.category-card-19 { background: rgba(190,24,93,0.04); }
.category-card-20 { background: rgba(67,56,202,0.04); }
.category-card-21 { background: rgba(185,28,28,0.04); }
.category-card-22 { background: rgba(13,148,136,0.04); }
.category-card-23 { background: rgba(79,70,229,0.04); }
.category-card-24 { background: rgba(180,83,9,0.04); }
.category-card-25 { background: rgba(157,23,77,0.04); }
.category-card-26 { background: rgba(30,64,175,0.04); }
.category-card-27 { background: rgba(4,120,87,0.04); }
.category-card-28 { background: rgba(192,38,211,0.04); }
.category-card-29 { background: rgba(234,88,12,0.04); }
.category-card-30 { background: rgba(15,118,110,0.04); }
/* */

.category-card .cat-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}
.category-card .cat-count {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.2;
}

/* ==========================================================================
   FILTER TABS
   ========================================================================== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tabs .tab-btn {
    border: 1px solid var(--border); background: #fff; color: var(--text-secondary);
    font-weight: 500; font-size: 0.88rem; padding: 9px 20px; border-radius: var(--radius-pill);
    transition: 0.25s var(--ease); cursor: pointer;
}
.filter-tabs .tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-tabs .tab-btn.active { background: var(--gradient-primary); border-color: transparent; color: #fff; box-shadow: var(--shadow-primary); }

/* ==========================================================================
   CLASSIFIED CARDS
   ========================================================================== */
.classified-card { overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.classified-card .cc-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; height: 190px; }
.classified-card .cc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.classified-card:hover .cc-img-wrap img { transform: scale(1.1); }
.classified-card .cc-badge { position: absolute; top: 12px; left: 12px; background: var(--gradient-primary); color: #fff; }
.classified-card .cc-wishlist {
    position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: 0.25s var(--ease); font-size: 0.85rem;
}
.classified-card .cc-wishlist:hover { background: var(--primary); color: #fff; }
.classified-card .cc-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.classified-card .cc-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.classified-card .cc-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); font-size: 1.15rem; }
.classified-card .cc-loc { font-size: 0.82rem; color: var(--text-secondary); display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.classified-card .cc-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--border); }
.classified-card .cc-time { font-size: 0.72rem; font-weight: 600; color: var(--blue); background: rgba(66, 133, 244, 0.08); padding: 4px 12px; border-radius: var(--radius-pill); }
.classified-card .cc-actions { display: flex; gap: 6px; }
.classified-card .cc-actions .act-btn {
    width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--bg); color: var(--text-secondary); font-size: 0.8rem; transition: 0.25s var(--ease);
}
.classified-card .cc-actions .act-btn.call:hover { background: var(--blue); color: #fff; }
.classified-card .cc-actions .act-btn.whatsapp:hover { background: #25D366; color: #fff; }

/* ==========================================================================
   BUSINESS UPDATE CARDS
   ========================================================================== */
.update-card { padding: 0; height: 100%; display: flex; flex-direction: column; }
.update-card .uc-head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.update-card .uc-avatar { width: 42px; height: 42px; border-radius: 50%; /*object-fit: cover; border: 2px solid var(--bg); */ }
.update-card .uc-name { font-weight: 700; font-size: 0.92rem; color: var(--text); line-height: 1.2; }
.update-card .uc-name a { color: inherit; text-decoration: none; }
.update-card .uc-name a:hover { color: var(--primary); }
.update-card .uc-cat { font-size: 0.74rem; color: var(--text-secondary); margin-top: 2px; }
.update-card .uc-img { position: relative; width: 100%; height: 160px; overflow: hidden; flex-shrink: 0; }
.update-card .uc-img img { width: 100%; height: 100%;  transition: transform 0.5s var(--ease); }
.update-card:hover .uc-img img { transform: scale(1.06); }
.update-card .uc-img .biz-status { position: absolute; top: 10px; right: 10px; font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); backdrop-filter: blur(2px); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); z-index: 2; }
.update-card .uc-img .biz-status.open { background: rgba(40, 167, 69, 0.92); color: #fff; }
.update-card .uc-img .biz-status.closed { background: rgba(102, 102, 102, 0.85); color: #fff; }
.update-card .uc-img .uc-rating { position: absolute; bottom: 8px; left: 8px; display: inline-flex; align-items: center; gap: 4px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(4px); padding: 3px 10px; border-radius: var(--radius-pill); font-size: 0.68rem; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); z-index: 2; }
.update-card .uc-img .uc-rating .stars { color: var(--warning); letter-spacing: 1px; }
.update-card .uc-img .uc-rating .rate-num { font-weight: 700; color: var(--text); }
.update-card .uc-img .uc-rating .rate-count { color: var(--text-secondary); }
.update-card .uc-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text); margin: 12px 16px 4px; }
.update-card .uc-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin: 0 16px 12px; flex: 1; }
.update-card .uc-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-top: 1px solid var(--border); margin-top: auto; }
.update-card .uc-time { font-size: 0.72rem; color: var(--text-secondary); }
.update-card .uc-social { display: flex; gap: 6px; }
.update-card .uc-social a { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: var(--text-secondary); transition: 0.25s var(--ease); text-decoration: none; }
.update-card .uc-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.update-card .uc-social a.save:hover { background: var(--warning); color: #fff; }

/* ==========================================================================
   FEATURED BUSINESS CARDS
   ========================================================================== */
/* ==================== Business Card - Modern Enhanced ==================== */
.biz-card {
    overflow: hidden;
    height: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.3s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
    display: flex;
    flex-direction: column;
}
.biz-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(20, 20, 43, 0.12);
}
.biz-card .biz-cover {
    position: relative;
    height: 140px;
    overflow: visible;
    flex-shrink: 0;
}
.biz-card .biz-cover img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.6s var(--ease);
}
.biz-card:hover .biz-cover img {
    transform: scale(1.08);
}
.biz-card .biz-status {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.biz-card .biz-status.open {
    background: rgba(40, 167, 69, 0.92);
    color: #fff;
}
.biz-card .biz-status.closed {
    background: rgba(102, 102, 102, 0.85);
    color: #fff;
}
.biz-card .biz-logo {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .10);
    margin: -22px auto 0;
    display: block;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
    background: #fff;
}
.biz-card:hover .biz-logo {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    transform: scale(1.03);
}
.biz-card .biz-body {
    padding: 24px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.biz-card .biz-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.biz-card .biz-name .verify-tick {
    color: var(--blue);
    font-size: 0.85rem;
}
.biz-card .biz-cat {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.biz-card .biz-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    margin-bottom: 10px;
}
.biz-card .biz-rating .stars {
    color: var(--warning);
    letter-spacing: 1px;
    font-size: 0.78rem;
}
.biz-card .biz-rating .rate-num {
    font-weight: 700;
    color: var(--text);
}
.biz-card .biz-rating .rate-count {
    color: var(--text-secondary);
}
.biz-card .biz-addr {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0 16px;
}
.biz-card .biz-quick {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.biz-card .biz-quick a {
    flex: 1;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.25s var(--ease);
}
.biz-card .biz-quick a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}
.biz-card .biz-quick a.call:hover {
    background: var(--blue);
    color: #fff;
}
.biz-card .biz-quick a.wa:hover {
    background: #25D366;
    color: #fff;
}
.biz-card .biz-quick a.dir:hover {
    background: var(--primary);
    color: #fff;
}
.biz-card .biz-quick a.save:hover,
.biz-card .biz-quick a.save.active {
    background: var(--warning);
    color: #fff;
}

/* Chip Filter Navigation */
.chip-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    cursor: pointer;
    line-height: 1;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    transition: all 0.25s var(--ease);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.chip-filter:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}
.chip-filter.active {
    background: linear-gradient(135deg, var(--primary), var(--blue));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.28);
}

/* Equal-height, non-collapsing slides for the update/featured swipers */
.featuredSwiper .swiper-slide,
.businessUpdatesSwiper .swiper-slide {
    height: auto;
}

/* Featured card polish — keep the rating pill and status badge aligned */
.featuredSwiper .update-card .uc-img {
    display: block;
}
.update-card .uc-img .uc-rating .rate-count {
    white-space: nowrap;
}

/* ==========================================================================
   JOBS LIST
   ========================================================================== */
.jobs-panel { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-xs); overflow: hidden; }
.job-row { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--border); transition: 0.25s var(--ease); }
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--bg); }
.job-row .job-logo { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; flex-shrink: 0; background: var(--bg); }
.job-row .job-info { flex: 1; min-width: 0; }
.job-row .job-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.job-row .job-meta { font-size: 0.8rem; color: var(--text-secondary); display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 3px; }
.job-row .job-meta span { display: inline-flex; align-items: center; gap: 4px; }
.job-row .job-salary { font-weight: 700; color: var(--success); font-size: 0.88rem; white-space: nowrap; }
.job-row .btn-apply {
    background: var(--text); color: #fff; border: none; padding: 8px 18px; font-size: 0.82rem;
    font-weight: 600; border-radius: var(--radius-pill); white-space: nowrap; transition: 0.3s var(--ease);
}
.job-row .btn-apply:hover { background: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-primary); }

/* ==========================================================================
   EXPLORE GRID + DISCOVER BANNER
   ========================================================================== */
.explore-tile {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 18px 8px; text-align: center; transition: 0.3s var(--ease); display: block; height: 100%;
}
.explore-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.explore-tile i { font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; display: block; transition: 0.3s var(--ease); }
.explore-tile:hover i { transform: scale(1.2) rotate(6deg); }
.explore-tile span { font-size: 0.8rem; font-weight: 600; color: var(--text); display: block; }

.discover-banner {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 22px;
}
.discover-banner::after { content: ''; position: absolute; right: -70px; bottom: -70px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(229, 57, 53, 0.35), transparent 70%); border-radius: 50%; }
.discover-banner::before { content: ''; position: absolute; left: 30%; top: -80px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(255, 90, 60, 0.2), transparent 70%); border-radius: 50%; }
.discover-banner h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.7rem; position: relative; z-index: 1; }
.discover-banner p { color: rgba(255, 255, 255, 0.65); position: relative; z-index: 1; margin-bottom: 20px; }
.discover-banner .db-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.discover-banner .db-img img { height: 140px; width: 100%; object-fit: cover; }

/* ==========================================================================
   DEALS & EVENTS
   ========================================================================== */
.deal-card { overflow: hidden; height: 100%; position: relative; }
.deal-card .deal-img-wrap { height: 130px; overflow: hidden; position: relative; }
.deal-card .deal-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.deal-card:hover .deal-img-wrap img { transform: scale(1.1); }
.deal-card .deal-discount-badge {
    position: absolute; top: 10px; left: 10px; background: var(--gradient-primary); color: #fff;
    font-weight: 800; font-size: 0.85rem; padding: 5px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-primary);
}
.deal-card .deal-body { padding: 14px 16px 16px; }
.deal-card .deal-brand { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--text); }
.deal-card .deal-valid { font-size: 0.72rem; color: var(--text-secondary); margin-top: 4px; }
.deal-card .btn-redeem { width: 100%; margin-top: 12px; font-size: 0.8rem; padding: 8px; }

.event-card { padding: 16px; display: flex; align-items: center; gap: 14px; height: 100%; }
.event-card .event-date-badge {
    width: 58px; height: 58px; border-radius: var(--radius-sm); background: var(--gradient-primary); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-primary);
}
.event-card .event-date-badge .day { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; line-height: 1; }
.event-card .event-date-badge .mon { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.event-card .event-info { min-width: 0; }
.event-card .event-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.event-card .event-loc { font-size: 0.76rem; color: var(--text-secondary); margin-top: 3px; }
.event-card .event-badge { font-size: 0.65rem; font-weight: 700; padding: 3px 9px; margin-top: 6px; display: inline-block; }
.event-card .event-badge.free { background: rgba(40, 167, 69, 0.1); color: var(--success); }
.event-card .event-badge.paid { background: rgba(255, 193, 7, 0.12); color: #a16207; }

/* ==========================================================================
   EXPLORE AREA
   ========================================================================== */
.area-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border-radius: var(--radius-pill);
    background: #fff; border: 1px solid var(--border); font-size: 0.88rem; font-weight: 500; color: var(--text);
    transition: 0.3s var(--ease);
}
.area-chip i { color: var(--primary); font-size: 0.8rem; }
.area-chip:hover { background: var(--gradient-primary); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-primary); }
.area-chip:hover i { color: #fff; }

/* ==========================================================================
   GROW BUSINESS CTA
   ========================================================================== */
.grow-cta {
    background: var(--gradient-primary);
    border-radius: 32px;
    padding: 54px 50px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.grow-cta::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22%3E%3Ccircle cx=%2210%22 cy=%2210%22 r=%221.4%22 fill=%22white%22 fill-opacity=%220.14%22/%3E%3C/svg%3E'); opacity: 0.5; }
.grow-cta::after { content: ''; position: absolute; right: -100px; top: -100px; width: 340px; height: 340px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }
.grow-cta h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2rem; position: relative; z-index: 1; }
.grow-cta p { color: rgba(255, 255, 255, 0.85); font-size: 1.02rem; position: relative; z-index: 1; max-width: 480px; }
.grow-cta .grow-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.grow-cta .grow-img { position: relative; z-index: 1; text-align: center; }
.grow-cta .grow-img img { max-height: 320px; width: auto; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25)); border-radius: 24px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #0F1117; color: rgba(255, 255, 255, 0.62); padding-top: 70px; position: relative; overflow: hidden; }
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200px;
    background: radial-gradient(ellipse at 20% 0%, rgba(229, 57, 53, 0.12), transparent 60%);
    pointer-events: none;
}
.site-footer h6 { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 22px; }
.site-footer a.footer-link { display: block; color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; margin-bottom: 12px; transition: 0.25s var(--ease); }
.site-footer a.footer-link:hover { color: #fff; transform: translateX(5px); }
.site-footer .footer-desc { font-size: 0.92rem; color: rgba(255, 255, 255, 0.5); max-width: 300px; line-height: 1.7; margin: 16px 0 22px; }
.site-footer .social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); display: inline-flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.7); margin-right: 8px; transition: 0.3s var(--ease); }
.site-footer .social-icon:hover { background: var(--gradient-primary); color: #fff; transform: translateY(-4px); }
.site-footer .footer-contact-item { display: flex; gap: 10px; font-size: 0.88rem; margin-bottom: 14px; color: rgba(255, 255, 255, 0.55); }
.site-footer .footer-contact-item i { color: var(--primary); margin-top: 3px; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 50px; padding: 22px 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); }
.site-footer .footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.site-footer .footer-bottom a:hover { color: #fff; }
.footer-app-badges a { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); padding: 8px 14px; margin-right: 8px; margin-bottom: 8px; color: #fff; font-size: 0.8rem; transition: 0.3s var(--ease); }
.footer-app-badges a:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }

/* ==========================================================================
   MISC — carousel nav, back to top, skeleton
   ========================================================================== */
.owl-carousel .owl-nav { position: absolute; top: -74px; right: 0; display: flex; gap: 10px; margin: 0; }
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    width: 44px; height: 44px; border-radius: 50% !important; background: #fff !important; color: var(--text) !important;
    border: 1px solid var(--border) !important; display: flex !important; align-items: center; justify-content: center;
    font-size: 0.95rem; transition: 0.3s var(--ease);
}
.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover { background: var(--gradient-primary) !important; color: #fff !important; border-color: transparent !important; box-shadow: var(--shadow-primary); }

.swiper-pagination-bullet { background: var(--border); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--primary); width: 22px; border-radius: 4px; }

/* ==========================================================================
   CUSTOM SWIPER NAVIGATION (Business Updates + Featured Businesses)
   Vibrant, modern gradient pill buttons with lift + sheen hover effects.
   ========================================================================== */
.swiper-nav-btn {
    width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0; margin: 0; border: none; cursor: pointer;
    color: #fff; font-size: 0.95rem; line-height: 1;
    background: var(--gradient-primary);
    box-shadow: 0 8px 18px rgba(229, 57, 53, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative; overflow: hidden; isolation: isolate;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.swiper-nav-btn::after {
    content: ''; position: absolute; inset: -40%;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-70%); transition: transform 0.6s var(--ease); z-index: -1;
}
.swiper-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(229, 57, 53, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.swiper-nav-btn:hover::after { transform: translateX(70%); }
.swiper-nav-btn:active { transform: translateY(0) scale(0.94); }
.swiper-nav-btn:focus-visible { outline: 3px solid rgba(255, 90, 60, 0.5); outline-offset: 2px; }
.swiper-nav-btn.swiper-button-disabled,
.swiper-nav-btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; box-shadow: none; transform: none; }

/* ==========================================================================
   SWIPER NAV OVERLAY — vertically centered, floated on the left/right of the
   carousel (Local Business Updates + Featured Businesses in Coimbatore).
   Since the base .swiper-nav-btn uses transform for hover lift, we center via
   top: 50% + margin-top (half of the 46px height) to avoid transform conflicts.
   ========================================================================== */
.businessUpdatesSwiper,
.featured-carousel {
    position: relative;
}

.businessUpdatesSwiper .swiper-nav-btn,
.featured-carousel .swiper-nav-btn {
    position: absolute;
    top: 50%;
    margin-top: -23px;                    /* half of the 46px button height */
    z-index: 12;
}

.businessUpdatesSwiper .businessUpdates-prev,
.featured-carousel .featured-prev { left: 0; }

.businessUpdatesSwiper .businessUpdates-next,
.featured-carousel .featured-next { right: 0; }

.back-to-top {
    position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%;
    background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-primary); z-index: 1000; opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: 0.35s var(--ease); border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.06); }

[data-aos] { }

/* ==========================================================================
   RESPONSIVE — BASE OVERRIDES
   ========================================================================== */
@media (min-width: 1600px) {
    .container-xl-custom { max-width: 1500px; padding: 0 45px; }
}

/* ==========================================================================
   LARGE DESKTOP (≥1600px) — HEADER & HERO ENHANCEMENTS
   Target: 1600px–1920px, 18–20 inch displays
   ========================================================================== */
@media (min-width: 1600px) {

    /* ===== HEADER — Single Row, Perfect Alignment ===== */
    .site-header {
        height: auto;
    }
    .site-header .navbar {
        min-height: 86px;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        display: flex;
        align-items: center;
    }

    /* Force single-row layout: NO flex-wrap */
    .site-header .container-xl-custom.d-flex {
        flex-wrap: nowrap !important;
        gap: 0;
        display: flex !important;
        align-items: center !important;
    }

    /* Logo — fixed left, no shrink, better prominence */
    .site-header .navbar .container-xl-custom > a[href="index.html"] {
        flex-shrink: 0;
        margin-right: 0 !important;
        display: flex;
        align-items: center;
    }
    .brand-mark {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-right: 14px;
        flex-shrink: 0;
    }
    .brand-logo-image { width: 72px; height: 72px; min-width: 72px; min-height: 72px; border-radius: 10px; }
    .brand-logo {
        flex-shrink: 0;
    }
    .brand-logo .brand-name {
        font-size: 1.75rem;
        letter-spacing: -0.03em;
    }
    .brand-logo .brand-tag {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
        color: #888;
    }

    /* Navbar collapse — keep inline on large screens */
    .site-header .navbar-collapse {
        display: flex !important;
        align-items: center;
        flex: 1 1 auto;
        justify-content: center;
    }

    /* Navigation — perfectly centered */
    .main-nav {
        gap: 38px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .main-nav .nav-item {
        display: flex;
        align-items: center;
    }
    .main-nav .nav-link {
        font-size: 0.98rem;
        padding: 8px 0 !important;
        white-space: nowrap;
        letter-spacing: 0.01em;
    }
    .main-nav .nav-link::after {
        left: 0;
        right: 0;
        bottom: 0;
        height: 2.5px;
        border-radius: 3px;
    }
    .main-nav .nav-link:hover {
        transform: translateY(-1px);
    }
    .main-nav .nav-link.active {
        font-weight: 600;
    }

    /* Header actions — single row, equal heights, right-aligned */
    .header-actions {
        flex-wrap: nowrap !important;
        gap: 14px;
        align-items: center;
        flex-shrink: 0;
        margin-left: auto;
    }
    .header-actions .btn {
        height: 48px;
        padding: 0 30px;
        font-size: 0.92rem;
        border-radius: 999px;
        letter-spacing: 0.01em;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
    }
    .header-actions .btn-brand-outline {
        border-width: 2px;
        padding: 0 26px;
    }
    .header-actions .btn-brand-primary {
        box-shadow: 0 12px 32px rgba(229, 57, 53, 0.3);
    }
    .header-actions .btn-brand-primary:hover {
        box-shadow: 0 18px 44px rgba(229, 57, 53, 0.42);
        transform: translateY(-3px);
    }
    .icon-btn {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
        border-radius: 50%;
    }
    .icon-btn:hover {
        transform: translateY(-2px) scale(1.05);
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
        padding: 50px 0 100px;
        overflow: hidden;
    }

    /* Hero row — custom column ratio: 47% left / 53% right */
    .hero-section .row.align-items-center {
        align-items: stretch !important;
    }
    .hero-section .row > div:first-child {
        flex: 0 0 47%;
        max-width: 47%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-section .row > div:last-child {
        flex: 0 0 53%;
        max-width: 53%;
    }

    /* Hero content vertical centering */
    .hero-section .row > div:first-child > [data-aos] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    /* Eyebrow badge */
    .hero-eyebrow {
        margin-bottom: 28px !important;
        font-size: 0.88rem;
        padding: 10px 22px 10px 10px;
        box-shadow: 0 4px 16px rgba(20, 20, 43, 0.06);
    }

    /* Heading — perfect line balance */
    .hero-section h1 {
        font-size: clamp(3.2rem, 2.6rem + 1.6vw, 4rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.025em;
        max-width: 620px;
        margin-bottom: 0;
    }

    /* Description */
    .hero-section .hero-desc {
        max-width: 560px;
        margin-top: 24px !important;
        margin-bottom: 0 !important;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
    }

    /* Search panel */
    .hero-search-panel {
        margin-top: 32px;
        height: 74px;
        border-radius: 18px;
        padding: 7px 7px 7px 26px;
        box-shadow: 0 18px 54px rgba(20, 20, 43, 0.12);
        max-width: 640px;
        border-color: rgba(20, 20, 43, 0.06);
        background: #fff;
        gap: 6px;
    }
    .hero-search-panel .search-field {
        padding: 14px 16px;
        gap: 12px;
    }
    .hero-search-panel .search-field i {
        font-size: 1.1rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.98rem;
        color: #333;
    }
    .hero-search-panel .search-field.search-field-location {
        flex: 0 0 210px !important;
    }
    .hero-search-panel .search-field select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 2px center;
        padding-right: 18px;
    }
    .hero-search-panel .divider-v {
        height: 38px;
        width: 1px;
        background: #e0e0e0;
        flex-shrink: 0;
    }
    .hero-search-panel .btn-search-round {
        width: 58px;
        height: 58px;
        font-size: 1.15rem;
        flex-shrink: 0;
    }
    .hero-search-panel .btn-search-round:hover {
        transform: scale(1.06) rotate(3deg);
    }

    /* Category chips */
    .hero-chips {
        gap: 12px;
        margin-top: 24px;
    }
    .hero-chip {
        padding: 10px 22px;
        font-size: 0.88rem;
        border-width: 1.5px;
        border-radius: 999px;
        font-weight: 500;
        color: #555;
    }
    .hero-chip:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(229, 57, 53, 0.12);
    }

    /* ===== HERO IMAGE — Full height, premium ===== */
    .hero-visual {
        height: 100%;
        min-height: 650px;
        display: flex;
        align-items: stretch;
    }
    .hero-visual .hero-img-wrap {
        border-radius: 34px;
        height: 100%;
        min-height: 650px;
        width: 100%;
        box-shadow: 0 30px 80px rgba(20, 20, 43, 0.16);
        overflow: hidden;
        position: relative;
    }
    .hero-visual .hero-img-wrap img {
        height: 100%;
        min-height: 650px;
        width: 100%;
        object-fit: cover;
    }
    .hero-visual .hero-img-wrap::after {
        background: linear-gradient(180deg, transparent 48%, rgba(20, 20, 43, 0.6) 100%);
    }

    /* ===== FLOATING CARDS — Properly inside image ===== */
    .float-card {
        padding: 18px 24px;
        border-radius: 20px;
        gap: 14px;
        border: 1px solid rgba(255, 255, 255, 0.75);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        box-shadow: 0 16px 50px rgba(20, 20, 43, 0.15);
        cursor: default;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .float-card:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 24px 60px rgba(20, 20, 43, 0.22);
        background: rgba(255, 255, 255, 0.95);
    }
    .float-card .fc-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 1.35rem;
    }
    .float-card .fc-title {
        font-size: 0.78rem;
        font-weight: 500;
        color: #777;
        margin-bottom: 3px;
        letter-spacing: 0.02em;
    }
    .float-card .fc-value {
        font-size: 1.08rem;
        font-weight: 700;
        color: #222;
    }

    /* Weather — top-left */
    .float-card--weather {
        top: 30px;
        left: 30px;
        animation-delay: 0s;
    }

    /* Verified — bottom-right */
    .float-card--verified {
        bottom: 30px;
        right: 30px;
        animation-delay: 0.6s;
    }

    /* Rating — bottom-left */
    .float-card--rating {
        bottom: 30px;
        left: 30px;
        animation-delay: 1.2s;
    }

    /* ===== STATISTICS STRIP ===== */
    .stats-strip {
        margin-top: 40px !important;
        padding: 0;
        border-radius: 24px;
        box-shadow: 0 18px 52px rgba(20, 20, 43, 0.1);
        border: 1px solid rgba(20, 20, 43, 0.05);
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        background: #fff;
    }
    .stats-strip .stat-item {
        flex: 1 1 0;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }
    .stat-item + .stat-item::before {
        top: 22%;
        height: 56%;
        background: rgba(20, 20, 43, 0.08);
        width: 1px;
    }
    .stat-item .stat-icon {
        font-size: 2.4rem;
        margin-bottom: 14px;
        line-height: 1;
    }
    .stat-item .stat-num {
        font-size: 2.4rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.1;
    }
    .stat-item .stat-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #888;
        margin-top: 6px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }
}

/* ============================================================
   RESPONSIVE OVERRIDES — HEADER & HERO ONLY
   Do NOT modify desktop styles (≥1281px)
   ============================================================ */

/* ---- Utility: off-canvas backdrop (JS-controlled) ---- */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 23, 0.55);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* ---- Off-canvas menu toggle (hamburger) improvements ---- */
.navbar-toggler {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg, #F8F9FB);
    border: 1px solid var(--border, #EEEEEE);
    transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0;
    flex-shrink: 0;
    margin-left: 8px;
    position: relative;
    z-index: 1060;
}
.navbar-toggler:hover {
    background: rgba(229, 57, 53, 0.06);
    border-color: var(--primary, #E53935);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
    outline: none;
}
.navbar-toggler i {
    font-size: 1.2rem;
    color: var(--text, #202124);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar-toggler[aria-expanded="true"] i {
    transform: rotate(90deg);
}

/* ---- Off-canvas panel ---- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(340px, 84vw);
        max-width: 400px;
        background: #fff;
        z-index: 1050;
        padding: 88px 28px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(105%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
        box-shadow: -20px 0 60px rgba(15, 17, 23, 0.18);
        border-left: 1px solid rgba(20, 20, 43, 0.06);
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        visibility: hidden;
        pointer-events: none;
    }
    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    /* hide collapse on open to prevent double scroll */
    body.nav-open {
        overflow: hidden;
    }
    body.nav-open .navbar-collapse {
        overflow-y: auto;
    }

    /* Main nav inside off-canvas */
    .main-nav {
        flex-direction: column !important;
        width: 100%;
        gap: 2px !important;
        margin: 0 0 12px !important;
        padding: 0;
    }
    .main-nav .nav-item {
        width: 100%;
    }
    .main-nav .nav-link {
        width: 100%;
        padding: 14px 16px !important;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text, #202124);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .main-nav .nav-link::after {
        display: none !important;
    }
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        background: rgba(229, 57, 53, 0.07);
        color: var(--primary, #E53935);
    }
    .main-nav .nav-link.active {
        font-weight: 600;
    }

    /* Header actions inside off-canvas */
    .header-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 10px !important;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid var(--border, #EEEEEE);
        flex-wrap: nowrap !important;
    }
    .header-actions .btn {
        width: 100% !important;
        justify-content: center;
        height: 48px;
        font-size: 0.92rem;
        border-radius: 999px;
    }
    .header-actions .btn-brand-outline {
        display: flex !important;
    }
    .header-actions .icon-btn {
        width: 100% !important;
        height: 48px;
        border-radius: 999px;
        justify-content: center;
        gap: 10px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--text, #202124);
        background: var(--bg, #F8F9FB);
        border: 1px solid var(--border, #EEEEEE);
        display: flex !important;
        align-items: center;
    }
    .header-actions .icon-btn::after {
        content: attr(title);
        display: inline;
    }
    .header-actions .icon-btn:hover {
        background: var(--primary, #E53935);
        color: #fff;
        border-color: var(--primary, #E53935);
    }
    .header-actions .btn-brand-primary {
        box-shadow: var(--shadow-primary, 0 14px 34px rgba(229, 57, 53, 0.28));
    }
    /* Hide "List Your Business" in off-canvas on small screens, show via btn-brand-outline */
    .header-actions .btn-brand-outline.d-none.d-xl-inline-flex {
        display: flex !important;
    }
}

/* ---- Tablet / small laptop header tweaks (≤1280px) ---- */
@media (max-width: 1280px) {
    .site-header .navbar {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }
    .container-xl-custom.d-flex {
        gap: 6px;
    }
    .brand-logo .brand-name {
        font-size: 1.35rem;
    }
    .brand-logo .brand-tag {
        font-size: 0.62rem;
    }
    .brand-mark {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 8px;
    }
    .brand-logo-image { width: 50px; height: 50px; min-width: 50px; min-height: 50px; border-radius: 8px; }
    .main-nav .nav-link {
        font-size: 0.88rem;
        padding: 8px 12px !important;
    }
    .header-actions .btn {
        font-size: 0.85rem;
        padding: 0 18px;
        height: 40px;
    }
    .header-actions .icon-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ---- Large tablet / small laptop (≤1199.98px) ---- */
@media (max-width: 1199.98px) {
    .main-nav .nav-link {
        font-size: 0.84rem;
        padding: 8px 10px !important;
    }
    .header-actions {
        gap: 6px;
    }
    .header-actions .btn-header-action {
        font-size: 0.78rem;
        padding: 7px 16px;
        height: 36px;
    }
    .header-actions .header-icon {
        width: 34px;
        height: 34px;
        font-size: 0.82rem;
    }
    .brand-logo .brand-name {
        font-size: 1.25rem;
    }
}

/* ---- Tablet portrait (≤991.98px) — off-canvas active ---- */
@media (max-width: 991.98px) {
    .site-header .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        min-height: 64px;
    }
    .container-xl-custom.d-flex {
        flex-wrap: nowrap !important;
        gap: 4px;
    }
    .brand-logo .brand-name {
        font-size: 1.15rem;
    }
    .brand-logo .brand-tag {
        font-size: 0.58rem;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .brand-mark {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 6px;
        border-radius: 10px;
    }
    .brand-logo-image { width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 8px; }
    /* Hide desktop-only actions, show mobile-friendly ones */
    .header-actions .btn-brand-outline.d-none.d-xl-inline-flex {
        display: none !important;
    }
    .header-actions .btn-brand-primary {
        padding: 0 16px;
        font-size: 0.82rem;
        height: 38px;
        border-radius: 999px;
    }
    .header-actions .icon-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    /* Hide extra nav items that might overflow */
    .main-nav .nav-item:last-child .nav-link {
        padding-right: 8px !important;
    }
}

/* ---- Small tablet (≤820px) ---- */
@media (max-width: 820px) {
    .navbar-collapse {
        width: min(300px, 86vw);
        padding: 80px 22px 28px;
    }
    .brand-logo .brand-tag {
        max-width: 100px;
    }
}

/* ---- Mobile landscape / large phone (≤767.98px) ---- */
@media (max-width: 767.98px) {
    .site-header .navbar {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
        min-height: 58px;
    }
    .brand-logo .brand-name {
        font-size: 1.05rem;
    }
    .brand-logo .brand-tag {
        font-size: 0.52rem;
        max-width: 80px;
    }
    .brand-mark {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 5px;
        border-radius: 8px;
    }
    .brand-logo-image { width: 40px; height: 40px; min-width: 40px; min-height: 40px; border-radius: 7px; }
    .navbar-toggler {
        width: 38px;
        height: 38px;
        margin-left: 4px;
    }
    .navbar-toggler i {
        font-size: 1rem;
    }
    .header-actions .btn-brand-primary {
        font-size: 0.75rem;
        padding: 0 12px;
        height: 34px;
    }
    .header-actions .icon-btn {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }
    .header-actions {
        gap: 4px;
    }
    .navbar-collapse {
        padding: 72px 18px 24px;
        width: min(280px, 88vw);
    }
}

/* ---- Small mobile (≤640px) ---- */
@media (max-width: 640px) {
    .brand-logo .brand-tag {
        display: none;
    }
    .brand-logo .brand-name {
        font-size: 1rem;
    }
    .brand-mark {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        margin-right: 4px;
        border-radius: 7px;
    }
    .brand-logo-image { width: 36px; height: 36px; min-width: 36px; min-height: 36px; border-radius: 7px; }
    .header-actions .btn-brand-primary {
        font-size: 0.7rem;
        padding: 0 10px;
        height: 32px;
        gap: 4px;
    }
    .header-actions .btn-brand-primary i {
        font-size: 0.7rem;
    }
    .header-actions .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.72rem;
    }
    .navbar-toggler {
        width: 34px;
        height: 34px;
    }
    .navbar-toggler i {
        font-size: 0.9rem;
    }
    .navbar-collapse {
        padding: 64px 16px 20px;
        width: min(260px, 90vw);
    }
    .main-nav .nav-link {
        padding: 12px 14px !important;
        font-size: 0.92rem;
    }
    .header-actions .btn {
        height: 42px;
        font-size: 0.85rem;
    }
    .header-actions .icon-btn {
        height: 42px;
        font-size: 0.85rem;
    }
}

/* ---- Very small mobile (≤576px) ---- */
@media (max-width: 575.98px) {
    .container-xl-custom {
        padding: 0 14px;
    }
    .header-actions .btn-brand-primary {
        font-size: 0.65rem;
        padding: 0 8px;
        height: 30px;
    }
    .header-actions .icon-btn {
        width: 30px;
        height: 30px;
        font-size: 0.68rem;
    }
    .navbar-toggler {
        width: 32px;
        height: 32px;
    }
    .navbar-toggler i {
        font-size: 0.8rem;
    }
    .brand-logo .brand-name {
        font-size: 0.92rem;
    }
    .brand-mark {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
        border-radius: 6px;
    }
    .brand-logo-image { width: 34px; height: 34px; min-width: 34px; min-height: 34px; border-radius: 6px; }
}

/* ---- Extra small (≤480px) ---- */
@media (max-width: 480px) {
    .header-actions .btn-brand-primary {
        font-size: 0.6rem;
        padding: 0 6px;
        height: 28px;
        gap: 3px;
    }
    .header-actions .btn-brand-primary i {
        font-size: 0.6rem;
    }
    .header-actions .icon-btn {
        width: 28px;
        height: 28px;
        font-size: 0.62rem;
    }
    .navbar-toggler {
        width: 30px;
        height: 30px;
    }
    .navbar-toggler i {
        font-size: 0.75rem;
    }
    .brand-logo .brand-name {
        font-size: 0.85rem;
    }
    .brand-mark {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
        border-radius: 5px;
    }
    .brand-logo-image { width: 32px; height: 32px; min-width: 32px; min-height: 32px; border-radius: 6px; }
    .navbar-collapse {
        padding: 56px 14px 16px;
        width: 92vw;
    }
}

/* ---- Very small phones (≤430px) ---- */
@media (max-width: 430px) {
    .brand-logo .brand-name {
        font-size: 0.8rem;
        letter-spacing: -0.01em;
    }
    .brand-mark {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
        border-radius: 5px;
        margin-right: 4px;
    }
    .brand-logo-image { width: 30px; height: 30px; min-width: 30px; min-height: 30px; border-radius: 5px; }
    .header-actions .btn-brand-primary {
        font-size: 0.55rem;
        padding: 0 5px;
        height: 26px;
    }
    .header-actions .icon-btn {
        width: 26px;
        height: 26px;
        font-size: 0.58rem;
    }
    .navbar-toggler {
        width: 28px;
        height: 28px;
    }
    .navbar-toggler i {
        font-size: 0.7rem;
    }
}

/* ---- Tiny phones (≤390px) ---- */
@media (max-width: 390px) {
    .brand-logo .brand-name {
        font-size: 0.75rem;
    }
    .brand-mark {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
        border-radius: 4px;
    }
    .brand-logo-image { width: 28px; height: 28px; min-width: 28px; min-height: 28px; border-radius: 5px; }
    .header-actions .btn-brand-primary {
        font-size: 0.5rem;
        padding: 0 4px;
        height: 24px;
        gap: 2px;
    }
    .header-actions .btn-brand-primary i {
        font-size: 0.5rem;
    }
    .header-actions .icon-btn {
        width: 24px;
        height: 24px;
        font-size: 0.52rem;
    }
    .navbar-toggler {
        width: 26px;
        height: 26px;
    }
    .navbar-toggler i {
        font-size: 0.65rem;
    }
    .navbar-collapse {
        padding: 50px 12px 16px;
    }
}

/* ---- 375px, 360px, 320px ---- */
@media (max-width: 375px) {
    .container-xl-custom {
        padding: 0 10px;
    }
    .brand-logo .brand-name {
        font-size: 0.7rem;
    }
    .brand-mark {
        width: 16px;
        height: 16px;
        font-size: 0.45rem;
        border-radius: 4px;
        margin-right: 3px;
    }
    .brand-logo-image { width: 26px; height: 26px; min-width: 26px; min-height: 26px; border-radius: 4px; }
    .header-actions .btn-brand-primary {
        font-size: 0.45rem;
        padding: 0 3px;
        height: 22px;
    }
    .header-actions .icon-btn {
        width: 22px;
        height: 22px;
        font-size: 0.48rem;
    }
    .navbar-toggler {
        width: 24px;
        height: 24px;
    }
    .navbar-toggler i {
        font-size: 0.6rem;
    }
    .navbar-collapse {
        padding: 44px 10px 14px;
        width: 94vw;
    }
}

@media (max-width: 360px) {
    .brand-logo .brand-name {
        font-size: 0.65rem;
    }
    .header-actions .btn-brand-primary {
        font-size: 0.4rem;
        padding: 0 2px;
        height: 20px;
    }
    .header-actions .icon-btn {
        width: 20px;
        height: 20px;
        font-size: 0.42rem;
    }
    .navbar-toggler {
        width: 22px;
        height: 22px;
    }
    .navbar-toggler i {
        font-size: 0.55rem;
    }
}

@media (max-width: 320px) {
    .container-xl-custom {
        padding: 0 8px;
    }
    .brand-logo .brand-name {
        font-size: 0.6rem;
    }
    .brand-mark {
        width: 14px;
        height: 14px;
        font-size: 0.4rem;
        border-radius: 3px;
        margin-right: 2px;
    }
    .brand-logo-image { width: 24px; height: 24px; min-width: 24px; min-height: 24px; border-radius: 4px; }
    .header-actions .btn-brand-primary {
        font-size: 0.38rem;
        padding: 0 2px;
        height: 18px;
        gap: 1px;
    }
    .header-actions .btn-brand-primary i {
        font-size: 0.38rem;
    }
    .header-actions .icon-btn {
        width: 18px;
        height: 18px;
        font-size: 0.38rem;
    }
    .navbar-toggler {
        width: 20px;
        height: 20px;
    }
    .navbar-toggler i {
        font-size: 0.5rem;
    }
    .navbar-collapse {
        padding: 40px 8px 12px;
        width: 96vw;
    }
    .main-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 0.82rem;
    }
}

/* ============================================================
   HERO SECTION — RESPONSIVE FIXES
   ============================================================ */

/* ---- Tablet / small laptop (≤1280px) ---- */
@media (max-width: 1280px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    .hero-section h1 {
        font-size: clamp(2rem, 1.2rem + 2.8vw, 2.8rem);
    }
    .hero-section .hero-desc {
        font-size: 0.98rem;
        max-width: 100%;
    }
    .hero-search-panel {
        max-width: 100%;
    }
    .hero-visual .hero-img-wrap img {
        height: 400px;
    }
    .float-card {
        padding: 10px 14px;
        gap: 8px;
    }
    .float-card .fc-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .float-card .fc-title {
        font-size: 0.65rem;
    }
    .float-card .fc-value {
        font-size: 0.82rem;
    }
    .float-card--weather {
        top: 20px;
        left: 16px;
    }
    .float-card--verified {
        bottom: 24px;
        right: 16px;
    }
    .float-card--rating {
        bottom: -10px;
        left: 16px;
    }
    .stats-strip {
        padding: 20px 8px;
        margin-top: -30px;
    }
    .stat-item .stat-num {
        font-size: 1.5rem;
    }
    .stat-item .stat-label {
        font-size: 0.75rem;
    }
    .stat-item .stat-icon {
        font-size: 1.2rem;
    }
}

/* ---- Large tablet (≤1199.98px) ---- */
@media (max-width: 1199.98px) {
    .hero-section {
        padding: 32px 0 50px;
    }
    .hero-section h1 {
        font-size: clamp(1.8rem, 1rem + 2.6vw, 2.4rem);
    }
    .hero-visual .hero-img-wrap img {
        height: 360px;
    }
    .hero-chips {
        gap: 6px;
    }
    .hero-chip {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ---- Tablet portrait (≤991.98px) ---- */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 28px 0 44px;
        text-align: center;
    }
    .hero-section .row.align-items-center {
        flex-direction: column-reverse;
    }
    .hero-section .row > div:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 28px;
    }
    .hero-section .row > div:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero-section h1 {
        font-size: clamp(1.7rem, 1rem + 2.8vw, 2.2rem);
        text-align: center;
    }
    .hero-section .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
        max-width: 520px;
    }
    .hero-eyebrow {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.75rem;
        padding: 6px 14px 6px 6px;
    }
    .hero-eyebrow .dot-avatars img {
        width: 22px;
        height: 22px;
    }
    .hero-search-panel {
        margin-left: auto;
        margin-right: auto;
        max-width: 560px;
        flex-wrap: wrap;
        border-radius: 18px;
        padding: 8px;
        gap: 6px;
        background: #fff;
    }
    .hero-search-panel .search-field {
        flex: 1 1 100% !important;
        width: 100%;
        padding: 10px 14px;
        border-bottom: 1px solid var(--border, #EEEEEE);
    }
    .hero-search-panel .search-field:last-of-type {
        border-bottom: none;
    }
    .hero-search-panel .search-field.search-field-location {
        flex: 1 1 100% !important;
        flex-basis: 100% !important;
    }
    .hero-search-panel .divider-v {
        display: none;
    }
    .hero-search-panel .btn-search-round {
        width: 100%;
        height: 48px;
        border-radius: 999px;
        margin-top: 2px;
    }
    .hero-chips {
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }
    .hero-chip {
        font-size: 0.78rem;
        padding: 6px 14px;
    }
    .hero-visual {
        margin-top: 0;
        width: 100%;
    }
    .hero-visual .hero-img-wrap img {
        height: 320px;
        min-height: 220px;
    }
    /* Hide floating cards on tablets (they overlap) */
    .float-card {
        display: none !important;
    }
    .stats-strip {
        margin-top: 20px;
        padding: 16px 4px;
        border-radius: 18px;
        flex-wrap: wrap;
    }
    .stats-strip .stat-item {
        flex: 1 1 50%;
        padding: 14px 6px;
    }
    .stat-item + .stat-item::before {
        display: none;
    }
    .stat-item .stat-num {
        font-size: 1.4rem;
    }
    .stat-item .stat-label {
        font-size: 0.72rem;
    }
    .stat-item .stat-icon {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
}

/* ---- Small tablet (≤820px) ---- */
@media (max-width: 820px) {
    .hero-section h1 {
        font-size: clamp(1.5rem, 0.9rem + 2.6vw, 1.9rem);
    }
    .hero-visual .hero-img-wrap img {
        height: 280px;
    }
    .hero-search-panel {
        max-width: 480px;
        padding: 6px;
    }
    .hero-search-panel .search-field {
        padding: 8px 12px;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.88rem;
    }
}

/* ---- Mobile landscape (≤767.98px) ---- */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 20px 0 36px;
    }
    .hero-section h1 {
        font-size: clamp(1.4rem, 0.8rem + 2.6vw, 1.7rem);
        line-height: 1.2;
    }
    .hero-section .hero-desc {
        font-size: 0.88rem;
        margin: 10px 0 18px;
        max-width: 100%;
    }
    .hero-eyebrow {
        font-size: 0.7rem;
        padding: 4px 12px 4px 4px;
        margin-bottom: 14px;
    }
    .hero-eyebrow .dot-avatars img {
        width: 20px;
        height: 20px;
    }
    .hero-search-panel {
        max-width: 100%;
        border-radius: 16px;
        padding: 6px;
    }
    .hero-search-panel .search-field {
        padding: 8px 12px;
    }
    .hero-search-panel .search-field i {
        font-size: 0.85rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.85rem;
    }
    .hero-search-panel .btn-search-round {
        height: 42px;
        font-size: 0.9rem;
    }
    .hero-chips {
        gap: 6px;
        margin-top: 14px;
    }
    .hero-chip {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
    .hero-visual .hero-img-wrap {
        border-radius: 20px;
    }
    .hero-visual .hero-img-wrap img {
        height: 240px;
        min-height: 180px;
    }
    .stats-strip {
        padding: 12px 2px;
        margin-top: 16px;
        border-radius: 14px;
    }
    .stats-strip .stat-item {
        padding: 10px 4px;
    }
    .stat-item .stat-num {
        font-size: 1.2rem;
    }
    .stat-item .stat-label {
        font-size: 0.65rem;
    }
    .stat-item .stat-icon {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
}

/* ---- Small mobile (≤640px) ---- */
@media (max-width: 640px) {
    .hero-section h1 {
        font-size: clamp(1.2rem, 0.7rem + 2.4vw, 1.5rem);
    }
    .hero-section .hero-desc {
        font-size: 0.82rem;
    }
    .hero-search-panel {
        border-radius: 14px;
        padding: 4px;
    }
    .hero-search-panel .search-field {
        padding: 6px 10px;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.82rem;
    }
    .hero-search-panel .btn-search-round {
        height: 38px;
        font-size: 0.8rem;
    }
    .hero-chip {
        font-size: 0.68rem;
        padding: 4px 9px;
    }
    .hero-visual .hero-img-wrap img {
        height: 200px;
        min-height: 160px;
    }
    .stats-strip .stat-item {
        flex: 1 1 50%;
        padding: 8px 2px;
    }
    .stat-item .stat-num {
        font-size: 1.05rem;
    }
    .stat-item .stat-label {
        font-size: 0.6rem;
    }
    .stat-item .stat-icon {
        font-size: 0.85rem;
    }
}

/* ---- Very small mobile (≤576px) ---- */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 16px 0 28px;
    }
    .hero-section h1 {
        font-size: clamp(1.1rem, 0.6rem + 2.4vw, 1.35rem);
    }
    .hero-section .hero-desc {
        font-size: 0.78rem;
        margin: 8px 0 14px;
    }
    .hero-eyebrow {
        font-size: 0.62rem;
        padding: 3px 10px 3px 3px;
        margin-bottom: 10px;
    }
    .hero-eyebrow .dot-avatars img {
        width: 16px;
        height: 16px;
        border-width: 1.5px;
    }
    .hero-search-panel {
        border-radius: 12px;
        padding: 4px;
        gap: 4px;
    }
    .hero-search-panel .search-field {
        padding: 5px 8px;
    }
    .hero-search-panel .search-field i {
        font-size: 0.75rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.78rem;
    }
    .hero-search-panel .btn-search-round {
        height: 34px;
        font-size: 0.75rem;
    }
    .hero-chips {
        gap: 4px;
        margin-top: 10px;
    }
    .hero-chip {
        font-size: 0.62rem;
        padding: 3px 8px;
        border-width: 1px;
    }
    .hero-visual .hero-img-wrap {
        border-radius: 16px;
    }
    .hero-visual .hero-img-wrap img {
        height: 170px;
        min-height: 140px;
    }
    .stats-strip {
        padding: 8px 2px;
        margin-top: 12px;
        border-radius: 12px;
    }
    .stats-strip .stat-item {
        padding: 6px 2px;
    }
    .stat-item .stat-num {
        font-size: 0.95rem;
    }
    .stat-item .stat-label {
        font-size: 0.55rem;
    }
    .stat-item .stat-icon {
        font-size: 0.75rem;
        margin-bottom: 1px;
    }
}

/* ---- Extra small (≤480px) ---- */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: clamp(1rem, 0.5rem + 2.4vw, 1.2rem);
    }
    .hero-section .hero-desc {
        font-size: 0.72rem;
    }
    .hero-search-panel .search-field {
        padding: 4px 6px;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.72rem;
    }
    .hero-search-panel .btn-search-round {
        height: 30px;
        font-size: 0.7rem;
    }
    .hero-chip {
        font-size: 0.58rem;
        padding: 3px 7px;
    }
    .hero-visual .hero-img-wrap img {
        height: 150px;
        min-height: 120px;
    }
    .stat-item .stat-num {
        font-size: 0.85rem;
    }
    .stat-item .stat-label {
        font-size: 0.5rem;
    }
    .stat-item .stat-icon {
        font-size: 0.65rem;
    }
    .stats-strip {
        padding: 6px 0;
    }
}

/* ---- Very small phones (≤430px) ---- */
@media (max-width: 430px) {
    .hero-section h1 {
        font-size: 0.95rem;
        line-height: 1.25;
    }
    .hero-section .hero-desc {
        font-size: 0.68rem;
    }
    .hero-eyebrow {
        font-size: 0.55rem;
        padding: 2px 8px 2px 2px;
    }
    .hero-eyebrow .dot-avatars img {
        width: 14px;
        height: 14px;
    }
    .hero-search-panel .search-field {
        padding: 3px 6px;
    }
    .hero-search-panel .search-field i {
        font-size: 0.65rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.65rem;
    }
    .hero-search-panel .btn-search-round {
        height: 28px;
        font-size: 0.65rem;
    }
    .hero-chip {
        font-size: 0.52rem;
        padding: 2px 6px;
    }
    .hero-visual .hero-img-wrap img {
        height: 130px;
        min-height: 100px;
    }
    .stats-strip .stat-item {
        padding: 4px 2px;
    }
    .stat-item .stat-num {
        font-size: 0.78rem;
    }
    .stat-item .stat-label {
        font-size: 0.45rem;
    }
    .stat-item .stat-icon {
        font-size: 0.6rem;
    }
}

/* ---- Tiny phones (≤390px) ---- */
@media (max-width: 390px) {
    .hero-section h1 {
        font-size: 0.85rem;
    }
    .hero-section .hero-desc {
        font-size: 0.62rem;
        margin: 4px 0 10px;
    }
    .hero-eyebrow {
        font-size: 0.5rem;
        padding: 2px 6px 2px 2px;
        margin-bottom: 8px;
    }
    .hero-eyebrow .dot-avatars img {
        width: 12px;
        height: 12px;
    }
    .hero-search-panel {
        border-radius: 10px;
        padding: 3px;
    }
    .hero-search-panel .search-field {
        padding: 2px 5px;
    }
    .hero-search-panel .search-field i {
        font-size: 0.6rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.6rem;
    }
    .hero-search-panel .btn-search-round {
        height: 26px;
        font-size: 0.6rem;
    }
    .hero-chips {
        gap: 3px;
        margin-top: 8px;
    }
    .hero-chip {
        font-size: 0.48rem;
        padding: 2px 5px;
    }
    .hero-visual .hero-img-wrap {
        border-radius: 12px;
    }
    .hero-visual .hero-img-wrap img {
        height: 110px;
        min-height: 90px;
    }
    .stats-strip {
        padding: 4px 0;
        margin-top: 8px;
        border-radius: 10px;
    }
    .stats-strip .stat-item {
        padding: 3px 2px;
    }
    .stat-item .stat-num {
        font-size: 0.7rem;
    }
    .stat-item .stat-label {
        font-size: 0.4rem;
    }
    .stat-item .stat-icon {
        font-size: 0.55rem;
    }
}

/* ---- 375px, 360px, 320px ---- */
@media (max-width: 375px) {
    .hero-section {
        padding: 12px 0 20px;
    }
    .hero-section h1 {
        font-size: 0.78rem;
    }
    .hero-section .hero-desc {
        font-size: 0.58rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.55rem;
    }
    .hero-search-panel .btn-search-round {
        height: 24px;
        font-size: 0.55rem;
    }
    .hero-chip {
        font-size: 0.44rem;
        padding: 1px 4px;
    }
    .hero-visual .hero-img-wrap img {
        height: 100px;
        min-height: 80px;
    }
    .stat-item .stat-num {
        font-size: 0.65rem;
    }
    .stat-item .stat-label {
        font-size: 0.38rem;
    }
    .stat-item .stat-icon {
        font-size: 0.5rem;
    }
}

@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 0.7rem;
    }
    .hero-section .hero-desc {
        font-size: 0.52rem;
    }
    .hero-eyebrow {
        font-size: 0.45rem;
    }
    .hero-eyebrow .dot-avatars img {
        width: 10px;
        height: 10px;
    }
    .hero-search-panel .search-field {
        padding: 2px 4px;
    }
    .hero-search-panel .search-field i {
        font-size: 0.5rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.5rem;
    }
    .hero-search-panel .btn-search-round {
        height: 22px;
        font-size: 0.5rem;
    }
    .hero-chip {
        font-size: 0.4rem;
        padding: 1px 3px;
    }
    .hero-visual .hero-img-wrap img {
        height: 85px;
        min-height: 70px;
    }
    .stat-item .stat-num {
        font-size: 0.6rem;
    }
    .stat-item .stat-label {
        font-size: 0.35rem;
    }
    .stat-item .stat-icon {
        font-size: 0.45rem;
    }
}

@media (max-width: 320px) {
    .hero-section h1 {
        font-size: 0.62rem;
    }
    .hero-section .hero-desc {
        font-size: 0.48rem;
        margin: 3px 0 8px;
    }
    .hero-eyebrow {
        font-size: 0.4rem;
        padding: 1px 4px 1px 1px;
        margin-bottom: 6px;
    }
    .hero-eyebrow .dot-avatars img {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    .hero-search-panel {
        border-radius: 8px;
        padding: 2px;
        gap: 2px;
    }
    .hero-search-panel .search-field {
        padding: 1px 3px;
    }
    .hero-search-panel .search-field i {
        font-size: 0.4rem;
    }
    .hero-search-panel .search-field input,
    .hero-search-panel .search-field select {
        font-size: 0.45rem;
    }
    .hero-search-panel .btn-search-round {
        height: 20px;
        font-size: 0.45rem;
    }
    .hero-chips {
        gap: 2px;
        margin-top: 6px;
    }
    .hero-chip {
        font-size: 0.36rem;
        padding: 1px 3px;
    }
    .hero-visual .hero-img-wrap {
        border-radius: 10px;
    }
    .hero-visual .hero-img-wrap img {
        height: 75px;
        min-height: 60px;
    }
    .stats-strip {
        padding: 2px 0;
        margin-top: 6px;
        border-radius: 8px;
    }
    .stats-strip .stat-item {
        padding: 2px 1px;
    }
    .stat-item .stat-num {
        font-size: 0.5rem;
    }
    .stat-item .stat-label {
        font-size: 0.3rem;
    }
    .stat-item .stat-icon {
        font-size: 0.4rem;
        margin-bottom: 0;
    }
}

/* ---- Sticky header scroll behavior (smooth) ---- */
.site-header.is-scrolled .navbar {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    transition: padding 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 991.98px) {
    .site-header.is-scrolled .navbar {
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
        min-height: 56px;
    }
}

@media (max-width: 640px) {
    .site-header.is-scrolled .navbar {
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .site-header.is-scrolled .navbar {
        min-height: 44px;
    }
}

@media (max-width: 390px) {
    .site-header.is-scrolled .navbar {
        min-height: 40px;
    }
}

@media (max-width: 320px) {
    .site-header.is-scrolled .navbar {
        min-height: 36px;
    }
}

/* ============================================================
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   ============================================================ */
@media (pointer: coarse) {
    .navbar-toggler,
    .header-actions .btn,
    .header-actions .icon-btn,
    .hero-chip,
    .hero-search-panel .btn-search-round {
        min-height: 44px;
        min-width: 44px;
    }
    .hero-search-panel .btn-search-round {
        min-height: 44px;
        min-width: 44px;
    }
    .hero-chip {
        min-height: 36px;
        padding: 6px 14px;
    }
}

@media (max-width: 640px) and (pointer: coarse) {
    .navbar-toggler,
    .header-actions .btn,
    .header-actions .icon-btn {
        min-height: 38px;
        min-width: 38px;
    }
    .hero-chip {
        min-height: 32px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) and (pointer: coarse) {
    .navbar-toggler,
    .header-actions .btn,
    .header-actions .icon-btn {
        min-height: 32px;
        min-width: 32px;
    }
    .hero-chip {
        min-height: 28px;
        padding: 3px 8px;
    }
}

.owl-carousel .owl-item .biz-logo
 {
    display: block;
     width:25% !important;
}

/* ==========================================================================
   MOBILE RESPONSIVE ENHANCEMENTS — HEADER & HERO
   Complements the base responsive overrides above. Targets the updated
   structural classes (container-xl-custom navbar, .search-field-location,
   .hero-row) so the header menu and hero banner are fully optimized for
   mobile devices.
   ========================================================================== */

/* ---- Header: navbar brand + toggler single-row alignment ---- */
.site-header .navbar .container-xl-custom.d-flex {
    flex-wrap: nowrap !important;
}
.site-header .navbar-brand-section {
    flex: 0 0 auto;
    min-width: 44px;
    min-height: 44px;
}

/* Pan-right logo on very small screens so the hamburger stays visible */
@media (max-width: 575.98px) {
    .site-header .navbar-brand-section {
        margin-right: auto;
    }
    .navbar-toggler {
        margin-left: 8px !important;
        flex-shrink: 0;
    }
}

/* ---- Header: logged-in user dropdown inside off-canvas (mobile) ---- */
@media (max-width: 991.98px) {
    .header-actions .dropdown {
        width: 100%;
    }
    .header-actions .dropdown > .btn {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 14px !important;
        border-radius: 12px;
        background: var(--bg, #F8F9FB);
        border: 1px solid var(--border, #EEEEEE);
        height: 48px;
        font-size: 0.92rem;
    }
    .header-actions .dropdown > .btn img {
        width: 34px;
        height: 34px;
    }
    .header-actions .dropdown-menu {
        width: 100%;
        position: static !important;
        transform: none !important;
        margin-top: 6px !important;
        box-shadow: 0 6px 18px rgba(20, 20, 43, 0.08) !important;
        border: 1px solid var(--border, #EEEEEE) !important;
        border-radius: 14px !important;
    }
    .header-actions .dropdown-menu .dropdown-item {
        padding: 12px 16px !important;
        font-size: 0.92rem;
        border-radius: 10px;
        margin: 2px 6px;
        white-space: normal;
    }
    .header-actions .dropdown-menu .dropdown-item i {
        width: 22px;
        text-align: center;
    }
    .header-actions .dropdown-menu .dropdown-header {
        padding: 14px 18px !important;
        margin: 2px 6px;
    }
}

/* ---- Hero: reduce excessive gutters on mobile ---- */
.hero-row {
    --bs-gutter-x: 1.5rem;
}
@media (max-width: 575.98px) {
    .hero-row {
        --bs-gutter-x: 0.75rem;
    }
    .hero-row > [class*="col-"] {
        margin-bottom: 1.75rem;
    }
    .hero-row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 390px) {
    .hero-row {
        --bs-gutter-x: 0.5rem;
    }
}

/* ---- Hero search panel: location field (class-based, replaces inline flex:0 0 190px) ---- */
.hero-search-panel .search-field.search-field-location {
    flex: 0 0 190px;
}

/* ---- Hero: heading and floating-card polish on small screens ---- */
@media (max-width: 767.98px) {
    .hero-section h1 br {
        display: none;
    }
    .hero-section .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-search-panel .search-field-location select {
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    .hero-section h1 .text-gradient {
        display: inline;
    }
}

/* ---- Disable AOS animations on mobile for smooth performance ---- */
@media (max-width: 767.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---- Off-canvas: prevent horizontal scroll flash when opening ---- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        will-change: transform;
    }
    body.nav-open {
        overflow: hidden;
    }
}

/* ---- Touch targets: ensure key controls are tappable on mobile ---- */
@media (max-width: 991.98px) and (pointer: coarse) {
    .navbar-brand-section {
        min-width: 48px;
        min-height: 48px;
    }
    .main-nav .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    .header-actions .dropdown > .btn {
        min-height: 48px;
    }
}

/* ==========================================================================
   DESKTOP NAVBAR EXPANSION — Guaranteed Expand (≥992px)
   Reinforces Bootstrap's navbar-expand-lg behavior. Without this, the
   off-canvas/transform styles below can leave the header menu collapsed
   on desktop. This block forces the collapse open, hides the hamburger,
   resets off-canvas positioning, and restores the horizontal row layout.
   ========================================================================== */
@media (min-width: 992px) {
    .site-header .navbar {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .site-header .navbar .container,
    .site-header .navbar .container-xl-custom {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        max-width: 1300px;
        width: 100%;
        margin: 0 auto;
        padding: 0 24px;
        gap: 16px;
    }

    /* Hide the hamburger entirely on desktop */
    .site-header .navbar-toggler,
    .navbar-toggler {
        display: none !important;
    }

    /* Force the collapse open on desktop — override any stale fixed/transform state */
    .site-header .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        flex-grow: 1 !important;
        align-items: center;
        justify-content: center;
        position: static !important;
        inset: auto !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        z-index: auto;
    }

    /* Restore horizontal main nav on desktop */
    .site-header .main-nav {
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 28px !important;
        margin: 0 auto !important;
        width: auto !important;
        padding: 0 !important;
    }
    .site-header .main-nav .nav-item {
        width: auto !important;
    }
    .site-header .main-nav .nav-link {
        width: auto !important;
        padding: 8px 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--text, #202124) !important;
        font-size: 0.94rem;
        white-space: nowrap;
    }
    .site-header .main-nav .nav-link::after {
        display: block !important;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
    }
    .site-header .main-nav .nav-link:hover,
    .site-header .main-nav .nav-link.active {
        background: transparent !important;
        color: var(--primary, #E53935) !important;
    }

    /* Header actions: single row, right-aligned on desktop */
    .site-header .header-actions {
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-end;
        width: auto !important;
        gap: 10px !important;
        margin: 0 0 0 auto !important;
        padding: 0 !important;
        border-top: none !important;
        flex-wrap: nowrap !important;
        flex-shrink: 0;
    }
    .site-header .header-actions .btn,
    .site-header .header-actions .icon-btn,
    .site-header .header-actions .dropdown {
        width: auto !important;
        flex: 0 0 auto;
    }
    .site-header .header-actions .icon-btn {
        height: 42px;
        width: 42px !important;
        border-radius: 50%;
        justify-content: center;
    }

    /* Logged-in dropdown on desktop: restore floating menu */
    .site-header .header-actions .dropdown > .btn {
        width: auto !important;
        height: auto !important;
        justify-content: center;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }
    .site-header .header-actions .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        inset: auto !important;
        transform: none !important;
        margin-top: 8px !important;
        width: auto !important;
        min-width: 220px;
        box-shadow: 0 10px 40px rgba(20, 20, 43, 0.12) !important;
        border: 1px solid var(--border, #EEEEEE) !important;
        border-radius: 14px !important;
    }
}

/* ==========================================================================
   HERO RE-LAYOUT — TWO-COLUMN SPLIT (CSS Grid)
   Left:  eyebrow → heading → description → search → chips → stacked widgets
   Right: hero image (vertically centered against the left column)
   ========================================================================== */
.hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    column-gap: clamp(28px, 4vw, 60px);
    row-gap: 34px;
}
.hero-col-content {
    display: flex;
    flex-direction: column;      /* vertical stack, source order */
    align-items: flex-start;
    text-align: left;
    max-width: 620px;
}
.hero-col-content .hero-desc,
.hero-col-content .hero-search-panel { margin-left: 0; margin-right: 0; }
.hero-col-content .hero-chips { justify-content: flex-start; }

.hero-col-visual { position: relative; }
.hero-col-visual .hero-img-wrap { height: 100%; }
.hero-col-visual .hero-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;           /* keeps the image present beside short text */
}

/* ==========================================================================
   HERO — LARGE & ULTRAWIDE DISPLAYS (22"+ / 1920px / 4K & ultrawide)
   The base split scales correctly on small/standard screens, but on very wide
   monitors the grid tracks stretch edge-to-edge and the fixed 650px image
   min-height (from the min-width:1600 block) makes the visual blow out of
   proportion. These @media rules cap + center the composition and lock a
   stable aspect ratio so hero-section, hero-col-content and hero-col-visual
   keep their intended structure on large, high-resolution displays.
   ========================================================================== */

/* Comfortable 14"–21" monitors (1440–1919px): keep the 47/53 ratio, prevent the
   content column from stretching and keep the visual within a tidy width. */
@media (min-width: 1440px) {
    .hero-row {
        grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
        column-gap: clamp(36px, 4.5vw, 88px);
    }
    .hero-col-content {
        max-width: 600px;   /* readable measure — never stretches to fill track */
        width: 100%;
    }
    .hero-col-visual {
        width: 100%;
        max-width: 780px;   /* proportionate visual, centered within its track */
        margin-left: auto;
        margin-right: auto;
    }
}

/* Large desktop (1920px+, i.e. 22"–24" monitors): cap + center the whole split
   so it never spans the full viewport, and let the image scale with a fixed
   16/9 crop instead of the fixed 650px min-height. */
@media (min-width: 1920px) {
    .hero-row {
        max-width: 1440px;
        margin: 0 auto;                                              /* no edge-to-edge stretch */
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: clamp(48px, 5vw, 96px);
    }

    .hero-col-content {
        max-width: 620px;
        width: 100%;
        align-self: center;
    }
    .hero-col-visual {
        max-width: 860px;           /* cap visual; never wider than content column */
        margin-left: auto;
        margin-right: auto;
    }

    /* Neutralise the 650px min-height forced by the min-width:1600 block and
       use a proportionate 16/9 frame so the banner never crops awkwardly. */
    .hero-section .hero-visual,
    .hero-section .hero-visual .hero-img-wrap {
        height: auto;
        min-height: 0;
    }
    .hero-section .hero-visual .hero-img-wrap {
        aspect-ratio: 16 / 9;
        max-height: 620px;
    }
    .hero-section .hero-visual .hero-img-wrap img {
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }

    /* Keep heading/description at a comfortable reading measure. */
    .hero-section h1 {
        font-size: clamp(3.4rem, 2.4rem + 0.9vw, 3.9rem);
        max-width: 620px;
    }
    .hero-section .hero-desc {
        max-width: 560px;
        font-size: 1.14rem;
    }
}

/* Genuine ultrawide / 4K (2560px+): a moderate scale-up so the hero doesn't
   feel lost in the middle of a very wide viewport. */
@media (min-width: 2560px) {
    .hero-row {
        max-width: 1640px;
        column-gap: 96px;
    }
    .hero-section { padding: 76px 0 116px; }
    .hero-col-content { max-width: 680px; }
    .hero-section h1 { font-size: 4rem; }
    .hero-section .hero-desc { font-size: 1.18rem; max-width: 640px; }
    .hero-section .hero-visual .hero-img-wrap { max-height: 720px; }
}

/* Widgets side-by-side under the chips: weather left · gold rate right */
.hero-info-widgets {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;        /* equal-height cards */
    gap: 16px;
    width: 100%;
    margin-top: 30px !important;
}
.hero-widget-slot { width: 100%; }

/* ---- Shared live-widget shell ---- */
.live-widget {
    height: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    color: #fff;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.live-widget:hover { transform: translateY(-6px); }

.live-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(6px);
    border-radius: var(--radius-pill);
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 12px;
}
.live-pill span { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: livePulse 1.6s ease-in-out infinite; }
.live-pill--gold { background: rgba(255, 213, 74, 0.18); color: #FFD54A; }
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }

/* ---- Weather widget ---- */
.weather-widget {
    background: var(--wx-bg, linear-gradient(135deg, #38BDF8, #2563EB));
    box-shadow: 0 18px 40px -14px rgba(37, 99, 235, 0.55);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 16px;
    align-items: center;
}
.weather-widget::before {
    content: ''; position: absolute; width: 230px; height: 230px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.18); filter: blur(42px); top: -100px; right: -70px; z-index: -1;
}
.weather-widget::after {
    content: ''; position: absolute; width: 170px; height: 170px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.12); filter: blur(36px); bottom: -80px; left: -50px; z-index: -1;
}
.weather-widget--offline { grid-template-columns: 1fr; box-shadow: var(--shadow-md); }
.ww-main { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ww-icon {
    font-size: 3rem; line-height: 1;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
    animation: wwFloat 5s ease-in-out infinite;
}
@keyframes wwFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.ww-temp { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 700; line-height: 1; letter-spacing: -0.02em; text-shadow: 0 3px 10px rgba(0, 0, 0, 0.18); }
.ww-temp sup { font-size: 1.1rem; font-weight: 500; vertical-align: super; }
.ww-cond { font-size: 0.92rem; font-weight: 600; opacity: 0.94; line-height: 1.35; }
.ww-side { display: flex; flex-direction: column; gap: 12px; border-left: 1px solid rgba(255, 255, 255, 0.28); padding-left: 18px; }
.ww-loc { font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 7px; }
.ww-stat { display: flex; align-items: center; gap: 10px; }
.ww-stat i {
    width: 34px; height: 34px; border-radius: 11px; flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2); display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.82rem;
}
.ww-stat b { display: block; font-family: 'Poppins', sans-serif; font-size: 0.95rem; line-height: 1.15; }
.ww-stat small { color: rgba(255, 255, 255, 0.78); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.05em; }


/* ---- Gold rate widget ---- */
.gold-widget {
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 213, 74, 0.22), transparent 46%),
        linear-gradient(140deg, #17181D 0%, #26221A 58%, #3A2F14 100%);
    border: 1px solid rgba(255, 213, 74, 0.28);
    box-shadow: 0 18px 40px -14px rgba(23, 20, 10, 0.55);
}
.gw-head { display: flex; align-items: center; gap: 10px; }
.gw-head .live-pill--gold { margin-left: auto; }
.gw-ico {
    width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, #FFD54A, #FF9800); color: #241A05;
    display: inline-flex; align-items: center; justify-content: center; font-size: 0.95rem;
    box-shadow: 0 8px 18px -6px rgba(255, 168, 0, 0.65);
}
.gw-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.98rem; color: #FFF8E1; }
.gw-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.gw-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0; border-bottom: 1px dashed rgba(255, 213, 74, 0.22);
}
.gw-list li:last-child { border-bottom: none; }
.gw-label { font-size: 0.85rem; font-weight: 500; color: rgba(255, 255, 255, 0.72); flex: 1; }
.gw-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: #FFD54A; letter-spacing: -0.01em; }
.gw-price small { font-size: 0.68rem; font-weight: 500; color: rgba(255, 213, 74, 0.6); margin-left: 2px; }
.gw-trend {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill);
}
.gw-trend.trend-up { color: #4ADE80; background: rgba(74, 222, 128, 0.12); }
.gw-trend.trend-down { color: #F87171; background: rgba(248, 113, 113, 0.12); }
.gw-note { font-size: 0.68rem; color: rgba(255, 255, 255, 0.42); }

/* ==========================================================================
   MOBILE NAV FIX — off-canvas menu was painting behind the hero.
   Root cause: backdrop-filter on the sticky header creates a containing
   block for the fixed panel and flattens its stacking context. Neutralize
   it on mobile and lift the header/panel above all page content.
   ========================================================================== */
@media (max-width: 991.98px) {
    .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.97) !important;
        z-index: 1200 !important;
    }
    .nav-backdrop { z-index: 1190 !important; }
    .site-header .navbar-collapse,
    .navbar-collapse { z-index: 1210 !important; }
}

/* ==========================================================================
   MOBILE HERO OVERHAUL — stacked search, fluid type, tight spacing
   ========================================================================== */
@media (max-width: 991.98px) {
    .hero-section { padding: 36px 0 64px; }
    /* collapse the split into a single column: content on top, image below */
    .hero-row { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: clamp(1.95rem, 5.6vw, 2.7rem); line-height: 1.17; }
    .hero-col-content {
        align-items: center;
        text-align: center;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-col-content .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-col-content .hero-chips { justify-content: center; }
    .hero-col-visual .hero-img-wrap img { min-height: 0; height: auto; }
    .hero-section .hero-desc { font-size: 0.98rem; max-width: 500px; margin: 14px auto 26px; }
    .hero-eyebrow { margin-bottom: 18px; font-size: 0.78rem; }
    .hero-search-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
        border-radius: var(--radius-md);
        max-width: 460px;
    }
    .hero-search-panel .divider-v { display: none; }
    .hero-search-panel .search-field { background: var(--bg); border-radius: 12px; padding: 11px 14px; }
    .hero-search-panel .search-field.search-field-location { flex: 1 1 auto; width: 100%; }
    .hero-search-panel .btn-search-round { width: 100%; height: 48px; border-radius: 999px; }
    .hero-chips { margin-top: 18px; }
    .hero-info-widgets { margin-top: 26px !important; }
}

@media (max-width: 575.98px) {
    .hero-section { padding: 28px 0 54px; }
    .hero-col-content { max-width: 100%; }
    .hero-section h1 { font-size: clamp(1.72rem, 8vw, 2.15rem); }
    .hero-eyebrow { padding: 6px 14px 6px 6px; }
    .hero-chips { gap: 8px; }
    .hero-chip { font-size: 0.76rem; padding: 6px 13px; }
    .hero-col-visual { margin-top: 2px; }
    .hero-visual .hero-img-wrap { border-radius: 22px; }
    .hero-visual .hero-img-wrap img { aspect-ratio: 16 / 11; }
    .live-widget { padding: 18px; }
    .weather-widget { grid-template-columns: 1fr; gap: 14px; }
    .ww-side {
        align-items: stretch;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        padding-left: 0;
        padding-top: 14px;
    }
    .ww-loc { justify-content: center; }
}

/* ---- Widgets: return to a vertical stack on compact screens ---- */
@media (max-width: 767.98px) {
    .hero-info-widgets { grid-template-columns: 1fr; gap: 14px; }
    .weather-widget { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   ASYNC WIDGET PRELOADERS + ERROR STATE (weather & gold rate)
   Shown while the jQuery AJAX request is in flight; replaced by content
   only after a successful response.
   ========================================================================== */
.widget-preloader {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 210px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.preloader-ring {
    width: 38px; height: 38px; border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    animation: spinRing 0.8s linear infinite;
}
.gold-widget .preloader-ring {
    border-color: rgba(255, 213, 74, 0.3);
    border-top-color: #FFD54A;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

/* Content reveal once loaded */
.live-widget.is-loaded > * { animation: widgetIn 0.45s var(--ease) both; }
@keyframes widgetIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Error state */
.widget-error {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 210px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
}
.widget-error i { font-size: 1.6rem; opacity: 0.8; }