/* ==========================================================================
   Pune Junction Classifieds Master CSS - classifieds.css
   Optimized for High-Performance Desktop, Mobile & Smart TV Low-Memory Renders
   ========================================================================== */

:root {
    --primary-orange: #FF5722;
    --vibrant-pink: #E91E63;
    --purple-violet: #9C27B0;
    --royal-blue: #2196F3;
    --emerald-green: #00E676;
    --yellow-accent: #FFEB3B;
    --dark-navy: #0f172a;
    --dark-navy-surface: #1e293b;
    --light-bg: #f8fafc;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

    /* Featured Badge Styles (Light Red) */
    --featured-bg: #fff1f2;
    --featured-border: #dc2626;
    --featured-text: #991b1b;

    /* Premium Badge Styles (Light Green) */
    --premium-bg: #f0fdf4;
    --premium-border: #16a34a;
    --premium-text: #166534;

    /* Standard Design Tokens & UI Aliases */
    --primary-blue: #2563eb;
    --primary-blue-hover: #1d4ed8;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent-gold: #f59e0b;
    --accent-green: #10b981;
    --whatsapp-color: #25d366;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* SMART TV & LOW-MEMORY RENDER OPTIMIZATIONS */
body {
    background-color: var(--light-bg);
    color: #333;
    line-height: 1.6;
    padding-bottom: 40px;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
}

/* Smooth Scroll Target Margins */
#headerSection,
#quickCategoriesSection,
#filterCardSection,
#listingsContainerSection,
#popularLocalitiesSection,
#quickEnquirySection,
#footerSection {
    scroll-margin-top: 80px;
}

/* 1. TOP TICKER */
.top-ticker {
    background: linear-gradient(90deg, var(--vibrant-pink), var(--primary-orange), var(--purple-violet));
    color: white;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* 2. HEADER */
header, .site-header {
    background: white;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary-blue);
}

.header-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.logo-container img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.header-ads {
    display: flex;
    gap: 15px;
}

.ad-banner {
    width: 280px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.ad-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-post-ad {
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-post-ad:hover {
    background-color: var(--vibrant-pink);
    transform: translateY(-1px);
}

/* 3. HERO BANNER */
.hero {
    background: linear-gradient(135deg, #2A0845 0%, #6441A5 100%);
    color: white;
    padding: 35px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(to right, var(--yellow-accent), #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* 4. QUICK CATEGORY CHIPS */
.quick-categories, .category-nav-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.category-chips-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.cat-chip {
    padding: 8px 16px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border: 1px solid #cbd5e1;
    white-space: nowrap;
}

.cat-chip:hover, .cat-chip.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

/* CONTAINER */
.main-container, .main-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 5. FILTERS CARD */
.filter-card {
    background: white;
    padding: 22px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    border-top: 5px solid var(--vibrant-pink);
}

.filter-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.filter-title, .filter-card-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-reset, .reset-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.btn-reset:hover, .reset-btn:hover {
    opacity: 0.9;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.form-group, .filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label, .filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
}

.form-control, .filter-group input, .filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    background: #f8fafc;
    color: var(--text-primary);
}

.input-icon-wrapper input {
    padding-left: 36px;
}

.form-control:focus, .filter-group input:focus, .filter-group select:focus {
    border-color: var(--royal-blue);
    background: white;
}

/* 6. SEARCH BAR CARD */
.search-card {
    background: white;
    padding: 15px 22px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--royal-blue);
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input-wrapper input {
    padding-left: 45px;
}

/* 7. RESULTS BAR */
.results-bar, .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

.section-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.results-count {
    font-weight: 700;
    color: #475569;
}

.results-count span, #listingCount {
    color: var(--vibrant-pink);
    font-size: 1.1rem;
}

/* 8. LISTINGS GRID - EXACTLY 5 IN A ROW ON DESKTOP */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    content-visibility: auto; /* Optimizes DOM performance on old TVs */
}

/* CARD STYLING */
.listing-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: white;
    border: 1px solid #cbd5e1;
    will-change: transform;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.12);
}

/* FEATURED CARD STYLING (Light Red BG, Dark Red Border) */
.listing-card.card-featured {
    background-color: var(--featured-bg) !important;
    border: 2px solid var(--featured-border) !important;
}

/* PREMIUM CARD STYLING (Light Green BG, Dark Green Border) */
.listing-card.card-premium {
    background-color: var(--premium-bg) !important;
    border: 2px solid var(--premium-border) !important;
}

.card-image {
    height: 160px;
    width: 100%;
    object-fit: cover;
    background: #e2e8f0;
}

/* BADGES */
.badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-featured {
    background: var(--featured-border);
    color: white;
}

.badge-premium {
    background: var(--premium-border);
    color: white;
}

.card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-main-cat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--purple-violet);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.child-cats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.child-tag {
    background: rgba(255, 255, 255, 0.7);
    color: #475569;
    border: 1px solid #cbd5e1;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.card-location {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-location i {
    color: var(--primary-orange);
}

.card-desc {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BUTTONS LAYOUT: Call Button UPPER Row, WhatsApp Button BELOW It */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.btn {
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
}

.btn-call {
    background-color: var(--royal-blue);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

/* LOAD MORE BUTTON SECTION */
.load-more-wrapper {
    text-align: center;
    margin: 30px 0;
}

.load-more-btn, .btn-load-more {
    background: linear-gradient(135deg, var(--vibrant-pink), var(--primary-orange));
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover, .btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* ==========================================================================
   5 UNIQUE SECTIONS & FEATURED SPONSORED ADS SHOWCASE
   ========================================================================== */

.section-badge-header {
    margin-bottom: 18px;
}

.section-badge-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.sec-subtitle, .section-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin: 4px 0 16px 0;
}

/* 1. ONE DAY PICNIC SECTION */
.picnic-section {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    border-left: 6px solid #f59e0b;
}

.picnic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.picnic-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    background: #fff8f1;
}

.picnic-card:hover {
    transform: translateY(-3px);
}

.picnic-img-wrap {
    position: relative;
    height: 140px;
}

.picnic-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.picnic-distance {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.picnic-content {
    padding: 12px;
}

.picnic-content h4 {
    font-size: 0.95rem;
    color: var(--dark-navy);
}

.picnic-content p {
    font-size: 0.8rem;
    color: #64748b;
}

/* 2. SPA & WELLNESS SECTION */
.wellness-section {
    background: #f0fdf4;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    border-top: 5px solid #10b981;
}

.wellness-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.wellness-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #d1fae5;
    text-align: center;
}

.wellness-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 8px;
}

.wellness-card h3 {
    font-size: 1rem;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.wellness-card p {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 12px;
}

.wellness-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

/* 3. NIGHTLIFE SECTION */
.nightlife-section {
    background: linear-gradient(135deg, #090d16 0%, #1a102f 100%);
    color: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.nightlife-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
}

.nightlife-header p {
    font-size: 0.85rem;
    color: #a1a1aa;
    margin-bottom: 15px;
}

.nightlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.nightlife-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nightlife-card-icon {
    font-size: 1.5rem;
    color: #ec4899;
}

.nightlife-card h4 {
    font-size: 0.9rem;
}

.nightlife-card p {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* 4. ROAD TRIPS & ADVENTURE SECTION */
.roadtrip-section {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    border-right: 6px solid #3b82f6;
}

.roadtrip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.roadtrip-card {
    border: 1px dashed #bfdbfe;
    background: #eff6ff;
    padding: 15px;
    border-radius: 12px;
}

.roadtrip-tag {
    display: inline-block;
    background: #3b82f6;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.roadtrip-card h4 {
    font-size: 0.95rem;
    color: var(--dark-navy);
}

.roadtrip-card p {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 10px;
}

.roadtrip-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1d4ed8;
}

/* 5. FAMILY TIME SECTION */
.family-section {
    background: #fef2f2;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    border-bottom: 5px solid #ef4444;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.family-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #fecaca;
}

.family-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fee2e2;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.family-info h4 {
    font-size: 0.95rem;
    color: var(--dark-navy);
}

.family-info p {
    font-size: 0.8rem;
    color: #64748b;
}

/* NEW FEATURED ADS SPOTLIGHT SECTION STYLES (5 CARDS GRID) */
.featured-ads-spotlight {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 16px;
    padding: 25px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.spotlight-header {
    margin-bottom: 20px;
}

.spotlight-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--yellow-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotlight-header p {
    font-size: 0.85rem;
    color: #c7d2fe;
}

.featured-ads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.ad-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid var(--yellow-accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ad-badge-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #7c3aed;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    z-index: 2;
    text-transform: uppercase;
}

.ad-card-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.ad-card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ad-card-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 4px;
    line-height: 1.2;
}

.ad-card-sub {
    font-size: 0.72rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 6px;
}

.ad-card-content p {
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad-card-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* 9. POST AD CTA */
.post-ad-banner {
    background: linear-gradient(135deg, #FF5722, #E91E63);
    color: white;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    margin: 35px 0;
    box-shadow: var(--card-shadow);
}

.post-ad-banner h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.post-ad-btn {
    display: inline-block;
    background: var(--yellow-accent);
    color: var(--dark-navy);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 12px;
}

/* 10. LOCALITIES INFOGRAPHIC & SECTION */
.localities-section, .section-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.section-heading, .section-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.locality-tags, .locality-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.locality-tag {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.locality-tag:hover {
    background: var(--royal-blue);
    color: white;
    border-color: var(--royal-blue);
}

/* LIVE EVENT & DEAL HIGHLIGHTS TICKER */
.deals-highlight-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.deal-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.deal-icon {
    font-size: 2rem;
    color: var(--yellow-accent);
}

.deal-text h4 {
    font-size: 0.95rem;
    color: white;
}

.deal-text p {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* 11. TRUST & SAFETY GUIDE */
.safety-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.safety-card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    border-left: 4px solid var(--emerald-green);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.safety-card h4 {
    font-size: 0.95rem;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.safety-card p {
    font-size: 0.8rem;
    color: #64748b;
}

/* 12. RICH MULTI-COLUMN FOOTER (UPDATED FOR 5 COLUMNS) */
footer, .site-footer {
    background: var(--dark-navy);
    color: var(--text-muted);
    padding: 48px 0 0 0;
    font-size: 0.85rem;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
    color: var(--yellow-accent);
    text-decoration: none;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 32px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 24px;
    text-align: left;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-about {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease;
}

.footer-socials a:hover {
    background: var(--primary-blue);
}

.footer-links-col h4, 
.footer-contact-col h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-links-col a:hover {
    color: #ffffff;
}

.footer-links-col a i {
    font-size: 0.75rem;
    margin-right: 6px;
    color: var(--primary-blue);
}

.footer-contact-col p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-col i {
    color: var(--primary-blue);
}

.btn-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-back-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 16px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-legal-links {
    display: flex;
    gap: 16px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* BREAKPOINTS FOR DESKTOP, ULTRA-WIDE, SMART TV & MOBILE */
@media (min-width: 1920px) {
    .listings-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    body {
        font-size: 18px;
    }
}

@media (max-width: 1400px) {
    .listings-grid, .featured-ads-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .listings-grid, .featured-ads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .listings-grid, .featured-ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE & OLD TV RESPONSIVE */
@media (max-width: 600px) {
    header, .site-header {
        flex-direction: column;
        text-align: center;
    }

    .header-ads {
        flex-direction: column;
        width: 100%;
    }

    .ad-banner {
        width: 100%;
    }

    .listings-grid, .featured-ads-grid {
        grid-template-columns: 1fr !important;
    }

    .filter-card, .search-card, .listing-card, .hero, .post-ad-banner, 
    .localities-section, .safety-card, .deals-highlight-section, 
    .featured-ads-spotlight, .card-body, .picnic-section, 
    .wellness-section, .nightlife-section, .roadtrip-section, .family-section {
        text-align: center !important;
    }

    .card-location, .child-cats-list, .filter-title {
        justify-content: center;
    }

    .search-card, .deal-card, .family-card, .nightlife-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-container { 
        grid-template-columns: 1fr; 
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}