/* ═══════════════════════════════════════════════
   MÉTÉO LIBAN — Public Website
   Lebanese Identity: Cedar, Mediterranean, Mountains
   ═══════════════════════════════════════════════ */

:root {
    /* Cedar & Forest */
    --cedar-900: #1A5C2A;
    --cedar-800: #228B3B;
    --cedar-700: #2E9E47;
    --cedar-600: #43B556;
    --cedar-500: #56C468;
    --cedar-400: #6FD67F;
    /* Mediterranean Sea */
    --sea-900: #134E7A;
    --sea-800: #1766A0;
    --sea-700: #1A85C4;
    --sea-600: #1E9BE0;
    --sea-500: #30AFF0;
    --sea-400: #5CC8FF;
    /* Warm Gold & Sand */
    --gold-600: #F0B020;
    --gold-500: #FFB830;
    --gold-400: #FFC840;
    --gold-300: #FFD966;
    --gold-200: #FFE699;
    --gold-100: #FFF8E1;
    /* Sand & Earth */
    --sand-50: #FFFEF9;
    --sand-100: #FFFBF0;
    --sand-200: #FFF5E0;
    --sand-300: #FFECC4;
    /* Neutrals */
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-300: #D6D3D1;
    --stone-400: #A8A29E;
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --white: #FFFFFF;
    /* Design tokens */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 4px 24px rgba(13,40,24,0.06);
    --shadow-lg: 0 12px 40px rgba(13,40,24,0.10);
    --shadow-warm: 0 8px 30px rgba(240,176,32,0.12);
}

/* ── Reset & Base ── */
* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--sand-50);
    color: var(--stone-800);
    -webkit-font-smoothing: antialiased;
}
body.lang-latin { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
body.lang-ar { font-family: 'Cairo', 'Inter', -apple-system, sans-serif; }

/* ═══════════════════════
   NAVBAR
   ═══════════════════════ */
.site-navbar {
    background: transparent;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-navbar.scrolled {
    background: rgba(26, 92, 42, 0.93);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.brand-logo {
    width: 50px; height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}
.scrolled .brand-logo { width: 40px; height: 40px; }

.brand-text { display: flex; flex-direction: column; margin-left: 14px; margin-right: 14px; }
.brand-name { font-weight: 800; font-size: 1.15rem; color: var(--white); letter-spacing: 0.3px; }
.brand-sub { font-size: 0.62rem; color: rgba(255,255,255,0.6); max-width: 200px; line-height: 1.3; }

.site-navbar .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
}

/* Language Switcher */
.lang-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    font-size: 0.78rem; font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid rgba(255,255,255,0.12);
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.lang-btn.active {
    color: var(--cedar-900);
    background: var(--gold-500);
    border-color: var(--gold-500);
    box-shadow: 0 2px 12px rgba(249,168,37,0.4);
}

/* ═══════════════════════
   HERO — Lebanese Landscape
   ═══════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center; justify-content: center;
    overflow: hidden;
    /* Mountain-to-sea gradient */
    background:
        linear-gradient(175deg,
            #1A5C2A 0%,
            #228B3B 20%,
            #1A8A6B 40%,
            #1776A0 55%,
            #1766A0 70%,
            #1E6FB8 100%
        );
}

/* Warm sun glow at the horizon */
.hero-glow {
    position: absolute;
    width: 120%;
    height: 400px;
    bottom: 25%;
    left: -10%;
    background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(249,168,37,0.2), rgba(249,168,37,0.08) 40%, transparent 70%);
    pointer-events: none;
}

/* Mountain silhouette */
.hero-mountains {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    pointer-events: none;
}
.hero-mountains svg { width: 100%; height: 100%; }

/* Cedar watermark — blended from the right */
.hero-cedar {
    position: absolute;
    top: 50%; right: -2rem;
    transform: translateY(-50%);
    pointer-events: none;
    width: 550px;
    height: 550px;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, transparent 80%);
    mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, transparent 80%);
}
.hero-cedar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
[dir="rtl"] .hero-cedar {
    right: auto;
    left: -2rem;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, transparent 80%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, transparent 80%);
}

/* Floating weather elements */
.hero-weather-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.float-element {
    position: absolute;
    opacity: 0.15;
    color: var(--white);
    animation: floatDrift linear infinite;
}
.float-sun { top: 15%; right: 12%; font-size: 3rem; opacity: 0.2; animation: floatPulse 6s ease-in-out infinite; color: var(--gold-400); }
.float-cloud-1 { top: 20%; left: 8%; font-size: 2rem; animation: floatDrift 25s linear infinite; }
.float-cloud-2 { top: 35%; right: 5%; font-size: 1.5rem; animation: floatDrift 30s linear infinite reverse; }
.float-snow-1 { top: 12%; left: 25%; font-size: 1rem; animation: snowFall 12s linear infinite; }
.float-snow-2 { top: 8%; left: 35%; font-size: 0.8rem; animation: snowFall 16s linear infinite 3s; }
.float-snow-3 { top: 5%; left: 18%; font-size: 0.6rem; animation: snowFall 14s linear infinite 7s; }

@keyframes floatDrift {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}
@keyframes floatPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}
@keyframes snowFall {
    0% { transform: translateY(0) translateX(0); opacity: 0.2; }
    50% { transform: translateY(45vh) translateX(20px); opacity: 0.1; }
    100% { transform: translateY(90vh) translateX(-10px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0 100px;
}

/* Cedar icon badge */
.hero-icon-wrap {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 100px; height: 100px;
    border-radius: 28px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
    animation: heroFloat 5s ease-in-out infinite;
    position: relative;
}
.hero-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 32px;
    border: 2px solid rgba(249,168,37,0.15);
    animation: heroRing 4s ease-in-out infinite alternate;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes heroRing {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.15); }
}

.hero-icon {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.lang-ar .hero-title { font-size: 2.8rem; letter-spacing: 0; }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

/* Tagline */
.hero-tagline {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
    position: relative;
    padding: 0 20px;
}
.hero-tagline::before,
.hero-tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold-500);
    opacity: 0.4;
}
.hero-tagline::before { left: -20px; }
.hero-tagline::after { right: -20px; }

/* Weather info chips */
.hero-weather-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}
.weather-chip {
    display: inline-flex;
    align-items: center; gap: 8px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
}
.weather-chip:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(249,168,37,0.3);
}
.weather-chip i { color: var(--gold-400); font-size: 0.9rem; }

.temp-min { color: #7ec8e3; }
.temp-min i { font-size: 0.7rem; }
.temp-max { color: #f4845f; }
.temp-max i { font-size: 0.7rem; }
.precip-val { color: #81d4fa; }
.precip-val i { font-size: 0.65rem; }
.precip-cumul { color: #a5d6a7; }
.precip-cumul i { font-size: 0.65rem; }

.hero-scroll-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    animation: heroBounce 2.5s ease-in-out infinite;
    transition: all 0.25s;
}
.hero-scroll-btn:hover { color: var(--gold-400); border-color: var(--gold-400); }
@keyframes heroBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ═══════════════════════
   SECTION HEADERS
   ═══════════════════════ */
.section-header { margin-bottom: 48px; }
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cedar-700), var(--cedar-500));
    color: var(--white);
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(46,158,71,0.3);
}
.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--cedar-800);
    letter-spacing: -0.5px;
}

/* ═══════════════════════
   BULLETIN SECTION
   ═══════════════════════ */
.bulletin-section {
    padding: 90px 0;
    background: var(--sand-50);
    position: relative;
}
.bulletin-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(249,168,37,0.04), transparent),
        radial-gradient(ellipse 40% 50% at 90% 80%, rgba(27,94,32,0.03), transparent);
    pointer-events: none;
}

/* ── Info Box Grid ── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-box {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(46,158,71,0.1);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(13,40,24,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cedar-500), var(--gold-400));
    opacity: 0;
    transition: opacity 0.3s;
}
.info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(13,40,24,0.1);
    border-color: rgba(46,158,71,0.2);
}
.info-box:hover::before { opacity: 1; }

.info-box-full {
    grid-column: 1 / -1;
}

.info-box-event {
    background: var(--white);
    padding: 0;
    text-align: center;
    grid-column: 1 / -1;
}
.info-box-event img { max-width: 100%; height: auto; border-radius: var(--radius); }

.info-box-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cedar-600), var(--cedar-500));
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(46,158,71,0.2);
}

.info-box-body {
    flex: 1;
    min-width: 0;
}

.info-box-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cedar-700);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.info-box-content {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--stone-700);
}

.info-box-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cedar-800);
    line-height: 1.2;
    margin-bottom: 2px;
}

.info-box-sub {
    font-size: 0.78rem;
    color: var(--stone-500);
}

/* Forecast day rows */
.forecast-day-row { margin-bottom: 6px; line-height: 1.85; }
.forecast-day-name { margin-left: 8px; margin-right: 8px; font-weight: 600; }

/* Bulletin tables */
.bulletin-temp-table,
.bulletin-precip-table {
    font-size: 0.85rem;
    font-family: 'Cairo', 'Inter', sans-serif;
    border-collapse: collapse;
}
.bulletin-temp-table th,
.bulletin-precip-table th {
    background: linear-gradient(135deg, var(--cedar-700), var(--cedar-600));
    color: var(--white);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 10px 8px;
    border-color: var(--cedar-700) !important;
}
.bulletin-temp-table td,
.bulletin-precip-table td {
    padding: 7px 8px;
    vertical-align: middle;
    border-color: var(--sand-200) !important;
}
.bulletin-temp-table tbody tr:nth-child(even) td,
.bulletin-precip-table tbody tr:nth-child(even) td {
    background: var(--sand-50);
}
.region-cell { background: var(--sand-100) !important; font-weight: 600; }
.agg-cell { background: rgba(249,168,37,0.06) !important; }

/* Officers */
.bulletin-officers { display: flex; flex-wrap: wrap; gap: 12px; }
.officer-card {
    flex: 1; min-width: 140px;
    text-align: center; padding: 16px;
    background: var(--sand-100);
    border-radius: var(--radius-sm);
    border: 1px solid var(--sand-200);
    transition: all 0.3s;
}
.officer-card:hover { border-color: var(--cedar-400); }
.officer-main {
    background: linear-gradient(135deg, var(--cedar-700), var(--cedar-600));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(46,158,71,0.25);
}
.officer-main .officer-position { color: rgba(255,255,255,0.7); }
.officer-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
.officer-position { font-size: 0.78rem; color: var(--stone-500); }

/* ═══════════════════════
   SOCIAL CTA
   ═══════════════════════ */
.social-section {
    padding: 30px 0;
    background: var(--sand-50);
}
.social-banners {
    display: flex;
    gap: 16px;
}
.social-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    flex: 1;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.social-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.social-banner:hover {
    transform: translateY(-3px);
    color: var(--white);
}
.social-banner-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 50%, #006da4 100%);
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.25);
}
.social-banner-telegram:hover {
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.35);
}
.social-banner-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #1565c0 50%, #0d47a1 100%);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.25);
}
.social-banner-facebook:hover {
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.35);
}
.social-banner-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    opacity: 0.95;
}
.social-banner-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.social-banner-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}
.social-banner-sub {
    font-size: 0.85rem;
    opacity: 0.8;
}
.social-banner-arrow {
    font-size: 1.3rem;
    opacity: 0.7;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.social-banner:hover .social-banner-arrow {
    transform: translateX(4px);
    opacity: 1;
}
.lang-ar .social-banner:hover .social-banner-arrow {
    transform: translateX(-4px);
}
@media (max-width: 768px) {
    .social-banners { flex-direction: column; }
}
@media (max-width: 576px) {
    .social-banner { padding: 16px 20px; gap: 14px; }
    .social-banner-icon { font-size: 2rem; }
    .social-banner-title { font-size: 0.95rem; }
    .social-banner-sub { font-size: 0.78rem; }
}

/* ═══════════════════════
   VIDEOS SECTION
   ═══════════════════════ */
.videos-section {
    padding: 90px 0;
    background: var(--white);
    position: relative;
}
.videos-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--sand-50), transparent);
    pointer-events: none;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--sand-200);
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(13,40,24,0.12);
    border-color: var(--cedar-400);
}
.video-thumb-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0; overflow: hidden;
}
.video-thumb-wrap iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}

/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
.site-footer {
    background: linear-gradient(175deg, #165025 0%, #0F3A1A 100%);
    color: rgba(255,255,255,0.65);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}
/* Cedar pattern watermark */
.site-footer::before {
    content: '🌲';
    position: absolute;
    font-size: 15rem;
    opacity: 0.02;
    top: -30px; right: -20px;
    transform: rotate(-15deg);
    pointer-events: none;
}

.footer-brand { margin-bottom: 20px; }
.footer-logo {
    width: 60px; height: 60px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 14px;
    border: 2px solid rgba(255,255,255,0.08);
}
.footer-brand h5 { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.text-muted-light { color: rgba(255,255,255,0.35) !important; font-size: 0.82rem; }

.footer-title {
    color: var(--gold-400);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { font-size: 0.88rem; margin-bottom: 12px; display: flex; align-items: center; }
.footer-links li i { color: var(--gold-500); width: 22px; flex-shrink: 0; }
.footer-links a { color: var(--gold-300); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-400); }

.footer-lang-links { display: flex; flex-direction: column; gap: 10px; }
.footer-lang-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 6px;
}
.footer-lang-links a:hover { color: var(--gold-400); }
.footer-lang-links a::before {
    content: '›';
    font-weight: 700;
    color: var(--gold-500);
    opacity: 0.5;
}

.footer-bottom {
    margin-top: 48px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */
@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        background: rgba(26, 92, 42, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 12px;
        padding: 16px;
        margin-top: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }
}
@media (max-width: 992px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.1rem; }
    .lang-ar .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-icon-wrap { width: 76px; height: 76px; border-radius: 20px; }
    .hero-icon { font-size: 2.2rem; }
    .hero-tagline { font-size: 0.72rem; letter-spacing: 1.5px; }
    .section-title { font-size: 1.6rem; }
    .info-grid { grid-template-columns: 1fr; gap: 14px; }
    .info-box { padding: 18px; }
    .info-box-value { font-size: 1.3rem; }
    .brand-sub { display: none; }
    .brand-name { font-size: 0.85rem; }
    .weather-chip { font-size: 0.8rem; padding: 8px 14px; }
    .bulletin-section, .videos-section { padding: 56px 0; }
    .hero-glow { display: none; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.7rem; }
    .hero-weather-strip { gap: 8px; }
    .weather-chip { font-size: 0.75rem; padding: 6px 12px; }
    .officer-card { min-width: 100%; }
    .brand-name { font-size: 0.78rem; white-space: normal; line-height: 1.3; }
    .hero-content { padding: 110px 0 70px; }
}

/* ═══════════ NO-HERO PAGES ═══════════ */
body.no-hero .site-navbar {
    background: rgba(26, 92, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

/* ═══════════ CHARTS PAGE ═══════════ */
.charts-page-section {
    padding: 100px 0 60px;
    position: relative;
    min-height: 80vh;
}
.charts-cedar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
}
.charts-cedar img {
    width: 500px;
    height: auto;
}
.charts-page-section .container {
    position: relative;
    z-index: 1;
}
.chart-section-title {
    font-weight: 700;
    color: var(--cedar-900);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-400);
}
.chart-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 24px;
    height: 100%;
    transition: box-shadow 0.2s;
}
.chart-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.chart-card-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--cedar-900);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.lang-ar .chart-card-title {
    text-align: right;
}
.lang-ar .chart-section-title {
    text-align: right;
}

/* ═══════════════════════
   COOKIE CONSENT
   ═══════════════════════ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 58, 26, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 184, 48, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    padding: 16px 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}
.cookie-consent-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.cookie-consent-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}
.cookie-consent-icon {
    color: var(--gold-400);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 9px 22px;
    border-radius: 8px;
    transition: all 0.25s;
    font-family: inherit;
}
.cookie-btn-accept {
    background: var(--gold-500);
    color: var(--cedar-900);
    box-shadow: 0 2px 12px rgba(249, 168, 37, 0.3);
}
.cookie-btn-accept:hover {
    background: var(--gold-400);
    box-shadow: 0 4px 18px rgba(249, 168, 37, 0.4);
}
.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}
@media (max-width: 576px) {
    .cookie-consent-inner { flex-direction: column; text-align: center; }
    .cookie-consent-text { justify-content: center; }
    .cookie-consent-actions { width: 100%; justify-content: center; }
}
