/* =======================================
   Indian Community Portal - Main Styles
   ======================================= */

:root {
    --saffron: #FF6B00;
    --saffron-light: #FF8C00;
    --maroon: #8B0000;
    --gold: #D4AF37;
    --gold-light: #F5D060;
    --green: #138808;
    --dark: #1A0A00;
    --dark-2: #2D1B00;
    --surface: #FFF8F0;
    --surface-2: #FFF3E0;
    --white: #FFFFFF;
    --text: #2D1B00;
    --text-muted: #7A5C3A;
    --border: #E8D5B0;
    --shadow: 0 4px 20px rgba(139, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(139, 0, 0, 0.18);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--surface);
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
}

a { color: var(--saffron); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--maroon); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Topbar ===== */
.topbar {
    background: var(--dark);
    color: #ccc;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 2px solid var(--saffron);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left a, .topbar-right a {
    color: #ccc; margin-right: 16px; font-size: 12.5px;
}
.topbar-left a i, .topbar-right a i { margin-right: 5px; color: var(--saffron); }
.topbar-left a:hover, .topbar-right a:hover { color: var(--gold); }
.btn-register {
    background: var(--saffron);
    color: white !important;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
}
.btn-register:hover { background: var(--maroon) !important; }

/* ===== Header ===== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--saffron);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--saffron), var(--maroon));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white;
    box-shadow: 0 4px 12px rgba(255,107,0,0.3);
}
.logo-main { display: block; font-size: 20px; font-weight: 700; color: var(--dark); font-family: 'Playfair Display', serif; line-height: 1.1; }
.logo-sub { display: block; font-size: 10px; color: var(--saffron); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav a {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    background: var(--surface-2);
    color: var(--saffron);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 26px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ===== Flash Message ===== */
.flash {
    padding: 12px 0;
    font-weight: 500;
    font-size: 14px;
}
.flash .container { display: flex; justify-content: space-between; align-items: center; }
.flash button { background: none; border: none; font-size: 18px; cursor: pointer; }
.flash-success { background: #d4edda; color: #155724; }
.flash-error { background: #f8d7da; color: #721c24; }
.flash-info { background: #d1ecf1; color: #0c5460; }
.flash-warning { background: #fff3cd; color: #856404; }

/* ===== Hero / Slider ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #4A1500 100%);
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.2; margin-bottom: 15px; }
.hero-text h1 span { color: var(--gold); }
.hero-text p { font-size: 16px; color: #ccc; margin-bottom: 25px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 30px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--saffron); color: white; }
.btn-primary:hover { background: var(--maroon); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.4); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-secondary { background: var(--surface-2); color: var(--saffron); border-color: var(--saffron); }
.btn-secondary:hover { background: var(--saffron); color: white; }

/* Property Search */
.property-search {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 28px;
}
.property-search h3 { color: var(--gold); margin-bottom: 18px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.search-row select, .search-row input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    width: 100%;
}
.search-row select option { background: var(--dark); }
.search-row select:focus, .search-row input:focus { outline: none; border-color: var(--gold); }

/* ===== Section Styles ===== */
.section { padding: 60px 0; }
.section-alt { background: var(--surface-2); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--dark); position: relative; padding-bottom: 10px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold)); border-radius: 2px; }
.view-all { font-size: 13px; font-weight: 600; color: var(--saffron); display: flex; align-items: center; gap: 5px; }
.view-all:hover { color: var(--maroon); }

/* ===== Cards Grid ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-img { width: 100%; height: 180px; object-fit: cover; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--saffron); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px; }
.card-title { font-weight: 600; font-size: 15px; margin-bottom: 6px; color: var(--dark); }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--saffron); }
.card-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.card-meta i { color: var(--saffron); margin-right: 3px; }
.card-text { font-size: 13px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-saffron { background: #FFF0E0; color: var(--saffron); }
.badge-green { background: #E8F5E9; color: var(--green); }
.badge-maroon { background: #FCE4EC; color: var(--maroon); }
.badge-gold { background: #FFF8E1; color: #B8860B; }

/* ===== List Sections (Forums, Classifieds) ===== */
.list-section { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.list-box { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border); }
.list-box-header { background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: white; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.list-box-header h3 { font-size: 16px; font-weight: 600; }
.list-box-header a { color: var(--gold); font-size: 12px; }
.list-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.list-item:last-child { border-bottom: none; }
.list-item:hover { background: var(--surface); }
.list-item-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--saffron); font-size: 14px; flex-shrink: 0; }
.list-item-text { flex: 1; min-width: 0; }
.list-item-title { font-size: 13px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.list-item-title a { color: inherit; }
.list-item-title a:hover { color: var(--saffron); }
.list-item-meta { font-size: 11px; color: var(--text-muted); }
.list-item-action { font-size: 12px; color: var(--saffron); flex-shrink: 0; }

/* ===== Yellow Pages ===== */
.yp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.yp-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); text-align: center; }
.yp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.yp-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 22px; color: white; }
.yp-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--dark); }
.yp-category { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.yp-phone { font-size: 13px; color: var(--saffron); font-weight: 600; }

/* ===== Events ===== */
.events-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.event-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border); display: flex; transition: var(--transition); }
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.event-date-box { background: linear-gradient(135deg, var(--maroon), var(--saffron)); color: white; padding: 15px 20px; text-align: center; min-width: 75px; display: flex; flex-direction: column; justify-content: center; }
.event-date-day { font-size: 26px; font-weight: 700; line-height: 1; }
.event-date-month { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.event-info { padding: 15px; flex: 1; }
.event-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--dark); }
.event-meta { font-size: 12px; color: var(--text-muted); }
.event-meta i { color: var(--saffron); margin-right: 4px; }

/* ===== Ads Banner ===== */
.ads-section { padding: 20px 0; background: var(--dark); }
.ads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.ad-slot { background: rgba(255,255,255,0.05); border: 1px dashed rgba(255,165,0,0.3); border-radius: var(--radius-sm); padding: 30px; text-align: center; color: rgba(255,255,255,0.4); font-size: 13px; min-height: 100px; display: flex; align-items: center; justify-content: center; }
.ad-slot.filled { padding: 0; }
.ad-slot img { width: 100%; border-radius: var(--radius-sm); }

/* ===== Sticky Ads ===== */
.sticky-ads-section { background: #FFF8F0; border: 2px solid var(--gold); border-radius: var(--radius); padding: 25px; margin: 20px 0; }
.sticky-ads-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.sticky-ads-header h3 { color: var(--maroon); font-family: 'Playfair Display', serif; }
.sticky-cta { background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: white; border-radius: var(--radius); padding: 20px; text-align: center; }
.sticky-cta h4 { color: var(--gold); margin-bottom: 8px; }
.sticky-cta p { font-size: 13px; color: #ccc; margin-bottom: 14px; }

/* ===== Page Header ===== */
.page-header { background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: white; padding: 40px 0; margin-bottom: 40px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 34px; }
.page-header p { color: #ccc; margin-top: 6px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.breadcrumb a { color: var(--gold); }

/* ===== Forms ===== */
.form-page { max-width: 600px; margin: 0 auto; background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 35px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 25px; color: var(--dark); text-align: center; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: white;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(255,107,0,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-submit { width: 100%; padding: 13px; background: linear-gradient(135deg, var(--saffron), var(--maroon)); color: white; border: none; border-radius: 30px; font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.4); }
.form-link { text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-muted); }

/* ===== Tables ===== */
.data-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.data-table thead tr { background: var(--dark); color: white; }
.data-table th, .data-table td { padding: 13px 16px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: var(--surface); }

/* ===== Pagination ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.page-link { display: inline-block; padding: 8px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); color: var(--text); font-size: 13px; font-weight: 500; transition: var(--transition); }
.page-link:hover, .page-link.active { background: var(--saffron); color: white; border-color: var(--saffron); }

/* ===== Stats Bar ===== */
.stats-bar { background: var(--dark); color: white; padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 15px; }
.stat-number { font-size: 32px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== Newsletter ===== */
.newsletter-section { background: linear-gradient(135deg, var(--maroon), var(--dark)); color: white; padding: 40px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 20px; font-family: 'Playfair Display', serif; margin-bottom: 5px; }
.newsletter-text p { color: rgba(255,255,255,0.7); font-size: 14px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 450px; }
.newsletter-form input { flex: 1; padding: 12px 18px; border-radius: 30px; border: none; font-family: 'Poppins', sans-serif; font-size: 14px; }
.newsletter-form button { background: var(--gold); color: var(--dark); padding: 12px 24px; border: none; border-radius: 30px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: 'Poppins', sans-serif; white-space: nowrap; }
.newsletter-form button:hover { background: var(--gold-light); transform: scale(1.02); }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-size: 22px; font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 15px; }
.site-footer p { font-size: 13px; line-height: 1.8; }
.footer-col h4 { color: var(--gold); margin-bottom: 18px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer-col ul li a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.social-links a:hover { background: var(--saffron); color: white; }
.footer-contact p { font-size: 13px; margin-bottom: 8px; }
.footer-contact a { color: var(--gold); }
.footer-ad-cta { margin-top: 18px; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 16px; font-size: 13px; }
.footer-ad-cta p { margin-bottom: 5px; }
.btn-ad { display: inline-block; margin-top: 10px; background: var(--saffron); color: white !important; padding: 8px 18px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; }
.footer-bottom .container { display: flex; justify-content: space-between; width: 100%; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 5px; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== Category Filter ===== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 25px; padding: 18px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.filter-btn { padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; background: var(--surface-2); border: 1.5px solid var(--border); color: var(--text); cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--saffron); color: white; border-color: var(--saffron); }
.search-bar { display: flex; gap: 10px; margin-bottom: 25px; }
.search-bar input { flex: 1; padding: 11px 18px; border: 1.5px solid var(--border); border-radius: 30px; font-family: 'Poppins', sans-serif; font-size: 14px; }
.search-bar input:focus { outline: none; border-color: var(--saffron); }
.search-bar button { padding: 11px 22px; background: var(--saffron); color: white; border: none; border-radius: 30px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.search-bar button:hover { background: var(--maroon); }

/* ===== Detail Page ===== */
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }
.detail-main { background: white; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.detail-sidebar {}
.sidebar-box { background: white; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 20px; border: 1px solid var(--border); }
.sidebar-box h4 { color: var(--maroon); margin-bottom: 16px; font-size: 15px; border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.detail-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 20px; }
.detail-title { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 10px; }
.detail-meta-row { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; font-size: 13px; color: var(--text-muted); }
.detail-meta-row i { color: var(--saffron); margin-right: 4px; }
.detail-body { font-size: 14px; line-height: 1.9; color: var(--text); }
.price-tag { font-size: 26px; font-weight: 700; color: var(--saffron); margin-bottom: 18px; }

/* ===== Dashboard ===== */
.dashboard-grid { display: grid; grid-template-columns: 240px 1fr; gap: 30px; }
.dashboard-nav { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; height: fit-content; }
.dashboard-nav h4 { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.dashboard-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text); font-size: 14px; margin-bottom: 3px; transition: var(--transition); }
.dashboard-nav a:hover, .dashboard-nav a.active { background: var(--surface-2); color: var(--saffron); }
.dashboard-nav a i { width: 20px; text-align: center; }
.dashboard-content { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.stats-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.stat-card { padding: 20px; border-radius: var(--radius); text-align: center; }
.stat-card.orange { background: linear-gradient(135deg, #FF6B00, #FF8C00); color: white; }
.stat-card.red { background: linear-gradient(135deg, #8B0000, #C62828); color: white; }
.stat-card.green { background: linear-gradient(135deg, #138808, #2E7D32); color: white; }
.stat-card.gold { background: linear-gradient(135deg, #B8860B, #D4AF37); color: white; }
.stat-card .num { font-size: 28px; font-weight: 700; }
.stat-card .lbl { font-size: 12px; opacity: 0.85; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .list-section { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .ads-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; flex-direction: column; gap: 2px; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
    .main-nav.open { display: flex; }
    .hamburger { display: flex; }
    .site-header { position: relative; }
    .header-inner { position: relative; }
    .hero-text h1 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .search-row { grid-template-columns: 1fr; }
    .topbar-left { display: none; }
}
@media (max-width: 480px) {
    .cards-grid { grid-template-columns: 1fr; }
    .events-row { grid-template-columns: 1fr; }
    .yp-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { flex-direction: column; }
    .newsletter-form { flex-direction: column; max-width: 100%; width: 100%; }
}
