@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

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

:root {
  --ivory: #f7f2e9;
  --ivory2: #ede6d6;
  --cream: #faf7f2;
  --gold: #b8924a;
  --gold2: #d4aa6a;
  --gold3: #8a6a30;
  --dark: #1a140e;
  --dark2: #2d2318;
  --dark3: #3d3020;
  --text: #2a1f10;
  --muted: #7a6a50;
  --border: rgba(184,146,74,.25);
  --font: 'Noto Kufi Arabic', sans-serif;
  --hh: 83px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --sh: 0 8px 40px rgba(26,20,14,.15);
  --tr: all .3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); direction: rtl; text-align: right; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
.container { max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 15px; }

/* ── PRELOADER ── */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--dark); display: flex; align-items: center; justify-content: center; transition: opacity .7s, visibility .7s; }
#preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-wrap { position: relative; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
.pl-ornament { width: 60px; height: 60px; object-fit: contain; animation: spin 4s linear infinite; opacity: .7; }
.pl-ring { position: absolute; inset: 0; border: 2px solid transparent; border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 7px; right: 10px; z-index: 990; width: 44px; height: 44px; background: var(--gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 20px rgba(184,146,74,.45); opacity: 0; visibility: hidden; transition: var(--tr); }
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold2); transform: translateY(-3px); }

/* ── HEADER ── */
#header { position: fixed; top: 0; inset-inline: 0; z-index: 900; height: var(--hh); background: rgba(250,247,242,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: var(--tr); }
#header.scrolled { box-shadow: 0 4px 30px rgba(26,20,14,.12); }
.hdr-inner { height: var(--hh); display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.hdr-logo { flex-shrink: 0; display: flex; align-items: center; }
.hdr-logo img { height: 70px; width: auto; }

#navbar ul { display: flex; gap: 4px; }
.nl { display: block; padding: 8px 18px; font-size: 15px; font-weight: 700; color: var(--text); border-radius: var(--r-sm); transition: var(--tr); position: relative; background: none; border: none; cursor: pointer; font-family: var(--font); }
.nl::after { content: ''; position: absolute; bottom: 3px; right: 18px; left: 18px; height: 2px; background: var(--gold); border-radius: 2px; transform: scaleX(0); transition: transform .3s; }
.nl:hover, .nl.active { color: var(--gold); }
.nl:hover::after, .nl.active::after { transform: scaleX(1); }

.hdr-right { display: flex; align-items: center; gap: 14px; }
.lang-wrap { display: flex; align-items: center; gap: 6px; background: var(--ivory); border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 6px 12px; min-width: 140px; position: relative; }
.lang-wrap i { color: var(--gold); font-size: 15px; flex-shrink: 0; }
.lang-wrap select { border: none; background: transparent; outline: none; font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--gold3); cursor: pointer; width: 100%; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--gold); border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-menu { display: none; position: fixed; top: var(--hh); inset-inline: 0; z-index: 850; background: var(--cream); border-bottom: 2px solid var(--border); padding: 16px 28px 24px; box-shadow: var(--sh); }
.mob-menu.open { display: block; }
.mob-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mob-link { display: block; padding: 12px 16px; font-size: 16px; font-weight: 700; color: var(--text); border-radius: var(--r-sm); transition: var(--tr); border-right: 3px solid transparent; width: 100%; text-align: right; }
.mob-link:hover { color: var(--gold); border-color: var(--gold); background: var(--ivory); }

/* ── HERO ── */
#hero { min-height: 100vh; position: relative; display: flex; align-items: center; padding-top: var(--hh); overflow: hidden; background: var(--ivory); }
.hero-arch { position: absolute; inset: 0; background-size: cover; background-position: top center; background-repeat: no-repeat; opacity: .35; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(247,242,233,.82) 35%, rgba(247,242,233,.45) 100%); pointer-events: none; }
.hero-ornament { position: absolute; width: 140px; height: 140px; object-fit: contain; opacity: .12; pointer-events: none; top: 120px; }
.hero-ornament.left { left: -30px; transform: rotate(-15deg); }
.hero-ornament.right { right: -30px; transform: rotate(15deg); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; padding: 80px 15px 25px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--gold); border-radius: 50px; padding: 6px 18px; font-size: 13px; font-weight: 700; color: var(--gold3); margin-bottom: 20px; background: rgba(184,146,74,.06); }
.live-pip { width: 8px; height: 8px; border-radius: 50%; background: #e04; animation: blink 1s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-h1 { font-size: 58px; font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 18px; }
.hero-h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 17px; color: var(--muted); max-width: 440px; line-height: 1.9; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #fff; padding: 10px 20px; border-radius: var(--r-sm); font-size: 15px; font-weight: 800; transition: var(--tr); box-shadow: 0 4px 24px rgba(184,146,74,.4); border: none; cursor: pointer; font-family: var(--font); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,146,74,.5); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--gold); color: var(--gold3); padding: 10px 20px; border-radius: var(--r-sm); font-size: 16px; font-weight: 700; transition: var(--tr); cursor: pointer; font-family: var(--font); background: none; }
.btn-ghost:hover { background: rgba(184,146,74,.1); transform: translateY(-2px); color: var(--gold); }

/* ── LIVE PLAYER ── */
.live-wrap { width: 100%; max-width: 780px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(26,20,14,.2); border: 3px solid var(--gold); }
.live-frame { position: relative; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.3); padding: 5px 16px; border-radius: 50px; margin: 10px; font-size: 13px; font-weight: 800; color: #dc2626; position: absolute; z-index: 5; top: 0; }
.live-dot-red { width: 9px; height: 9px; border-radius: 50%; background: #dc2626; animation: blink .9s ease infinite; }
.video-container { width: 100%; overflow: hidden; min-height: 200px; background: #000; position: relative; }
video { display: block; width: 100%; height: auto; max-height: 500px; object-fit: cover; }
#yt-frame-wrap { display: none; width: 100%; background: #000; }
#yt-frame-wrap iframe, #yt-player iframe { display: block; width: 100%; aspect-ratio: 16/9; min-height: 200px; border: 0; }
.vol-row { display: none; align-items: center; gap: 12px; padding: 10px 18px; background: rgba(26,20,14,.95); border-top: 1px solid rgba(212,170,106,.15); }
.vol-icon { color: var(--gold2); font-size: 15px; flex-shrink: 0; }
.vol-slider { flex: 1; accent-color: var(--gold); height: 4px; cursor: pointer; }
.stream-offline { display: none; align-items: center; justify-content: center; min-height: 300px; background: #0c0905 url('../images/haram-live.jpeg') center/cover no-repeat; position: relative; }
.stream-offline::before { content: ''; position: absolute; inset: 0; background: rgba(8,5,2,.72); }
.stream-offline-content { position: relative; z-index: 1; text-align: center; padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.stream-offline-icon { font-size: 48px; color: var(--gold2); opacity: .7; animation: blink 2.5s ease infinite; }
.stream-offline-ar { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: .03em; margin: 0; }
.stream-offline-en { font-size: 14px; font-weight: 500; color: var(--gold2); margin: 0; letter-spacing: .08em; text-transform: uppercase; }

/* ── CUSTOM VIDEO CONTROLS ── */
.vid-ctrls { background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.6)); padding: 0 12px 8px; direction: ltr; }
.vid-progress-wrap { padding: 10px 0 4px; }
.vid-seek { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; border-radius: 2px; background: rgba(255,255,255,.25); cursor: pointer; outline: none; display: block; accent-color: var(--gold); }
.vid-seek::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 0 4px rgba(0,0,0,.6); }
.vid-seek::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; }
.vid-bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.vid-left, .vid-right { display: flex; align-items: center; gap: 6px; }
.vid-btn { color: rgba(255,255,255,.85); font-size: 15px; padding: 5px 7px; border-radius: 6px; transition: var(--tr); min-width: 28px; text-align: center; background: none; border: none; cursor: pointer; font-family: var(--font); }
.vid-btn:hover { color: var(--gold); background: rgba(255,255,255,.1); }
.vid-time { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 600; white-space: nowrap; font-family: monospace; padding: 0 4px; }
.vid-live-btn { display: flex; align-items: center; gap: 5px; background: rgba(220,38,38,.15); border: 1px solid rgba(220,38,38,.4); color: #ff4444; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 4px; letter-spacing: .07em; cursor: pointer; transition: var(--tr); font-family: var(--font); }
.vid-live-btn:hover { background: rgba(220,38,38,.3); }
.vid-live-btn.vid-at-live { opacity: .4; cursor: default; pointer-events: none; }
.vid-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #dc2626; animation: blink .9s ease infinite; flex-shrink: 0; }
.vid-speed-btn { font-size: 12px; font-weight: 700; letter-spacing: .03em; }

/* Audio tracks bar */
.audio-tracks-bar { background: var(--dark3); padding: 12px 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.at-label { color: var(--gold2); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.at-list { display: flex; flex-wrap: wrap; gap: 6px; }
.at-btn { background: rgba(255,255,255,.08); border: 1px solid rgba(184,146,74,.3); color: rgba(255,255,255,.75); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--tr); font-family: var(--font); }
.at-btn:hover, .at-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ── AUDIO PANEL ── */
.audio-panel { background: rgba(10,8,5,.95); border-top: 1px solid rgba(212,170,106,.12); padding: 10px 16px; }
.ap-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ap-info { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ap-icon { color: var(--gold2); font-size: 15px; }
#ap-lang-name { color: #fff; font-size: 13px; font-weight: 700; }
.ap-vol { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 160px; direction: ltr; }
.ap-vol-icon { color: var(--gold2); font-size: 13px; flex-shrink: 0; }
.ap-vol-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); cursor: pointer; outline: none; accent-color: var(--gold); }
.ap-vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); cursor: pointer; }
.ap-vol-slider::-moz-range-thumb { width: 15px; height: 15px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; }
.ap-vol-pct { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); min-width: 30px; text-align: right; }
.ap-status { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; }
.ap-status-wait { background: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.ap-status-playing { background: rgba(34,197,94,.2); color: #22c55e; }
.ap-status-paused { background: rgba(251,191,36,.15); color: #fbbf24; }
.ap-play-btn { width: 30px; height: 30px; border-radius: 50%; background: rgba(212,170,106,.15); border: 1px solid rgba(212,170,106,.3); color: var(--gold2); font-size: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; flex-shrink: 0; padding: 0; }
.ap-play-btn:hover { background: rgba(212,170,106,.35); border-color: var(--gold2); }

.live-info-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; background: var(--dark); padding: 16px 24px; }
.lis-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; padding: 0 20px; }
.lis-item i { color: var(--gold2); font-size: 16px; }

/* ── COUNTDOWN ── */
#countdown-section { background: var(--dark); padding: 70px 0; position: relative; overflow: hidden; }
.cd-pattern-overlay { position: absolute; inset: 0; background-size: 180px; opacity: .05; pointer-events: none; }
.section-ornament { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 40px; color: #fff; font-size: clamp(18px,3vw,28px); font-weight: 900; }
.section-ornament img { width: 40px; height: 40px; object-fit: contain; opacity: .6; filter: invert(80%) sepia(40%) saturate(300%) hue-rotate(10deg); }
.cd-card { position: relative; border-radius: var(--r-lg); overflow: hidden; padding: 50px 30px; border: 1px solid rgba(184,146,74,.3); }
.cd-arch-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .08; pointer-events: none; }
.cd-arch-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,20,14,.9), rgba(45,35,24,.95)); pointer-events: none; }
.cd-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cd-box { width: 110px; height: 110px; border-radius: var(--r-md); background: rgba(184,146,74,.1); border: 2px solid rgba(184,146,74,.4); display: flex; align-items: center; justify-content: center; }
.cd-box span { font-size: 46px; font-weight: 900; color: #fff; line-height: 1; }
.cd-unit p { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); }
.cd-sep { font-size: 46px; font-weight: 900; color: var(--gold); margin-bottom: 28px; line-height: 1; }
.cd-ended { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 14px; background: rgba(184,146,74,.15); border: 2px solid rgba(184,146,74,.5); border-radius: var(--r-sm); padding: 18px 32px; color: #fff; font-size: 22px; font-weight: 900; }
.cd-ended i { color: var(--gold2); animation: blink 1s ease infinite; }

/* ── SECTIONS ── */
section { padding: 90px 0; }
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-head-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 3px; margin: 0 auto 20px; }
.sec-head h2 { font-size: clamp(26px,4vw,40px); font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.sec-head p { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; }

/* ── FEATURES ── */
#features { background: var(--cream); }
.feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.feat-card { background: #fff; border-radius: var(--r-md); padding: 36px 22px; text-align: center; border: 1.5px solid var(--border); transition: var(--tr); cursor: default; }
.feat-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(184,146,74,.15); border-color: var(--gold); }
.feat-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 20px; transition: var(--tr); }
.feat-icon.gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #fff; }
.feat-card:hover .feat-icon { transform: scale(1.1); }
.feat-card h3 { font-size: 17px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── TRANSLATIONS ── */
#translations { background: var(--cream); position: relative; }
.arc-top-deco { position: absolute; top: 0; left: 0; right: 0; height: 200px; background-size: cover; background-position: top center; opacity: .06; pointer-events: none; }
.lang-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; position: relative; z-index: 2; }
.lang-card { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: var(--r-sm); padding: 14px 26px; border: 1.5px solid var(--border); color: var(--dark); font-size: 14px; font-weight: 700; transition: var(--tr); cursor: pointer; font-family: var(--font); }
.lang-card:hover, .lang-card.active { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(184,146,74,.15); border-color: var(--gold); color: var(--gold); background: var(--ivory); }
.lang-card i { color: var(--gold2); font-size: 16px; }
.lang-card-arabic { border-color: var(--gold); background: linear-gradient(135deg, var(--ivory) 0%, #fff8ec 100%); font-size: 16px; }
.lang-card-arabic.active { box-shadow: 0 8px 28px rgba(184,146,74,.3); }

/* ── VOLUME CONTROL ── */
.audio-vol-bar { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; padding: 10px 16px; background: rgba(26,20,14,.06); border: 1px solid var(--border); border-radius: var(--r-sm); }
.audio-vol-icon { color: var(--gold2); font-size: 15px; flex-shrink: 0; }
.audio-vol-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 5px; border-radius: 3px; background: var(--border); outline: none; cursor: pointer; }
.audio-vol-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 2px 8px rgba(184,146,74,.4); }
.audio-vol-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; box-shadow: 0 2px 8px rgba(184,146,74,.4); }
.audio-vol-pct { font-size: 12px; font-weight: 700; color: var(--muted); min-width: 34px; text-align: right; }

/* ── FOOTER ── */
#footer { background: var(--dark2); color: #fff; position: relative; overflow: hidden; }
.ftr-pattern { position: absolute; inset: 0; background-size: 160px; opacity: .04; pointer-events: none; }
.ftr-top { position: relative; z-index: 2; padding: 70px 15px 15px; }
.ftr-grid { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 50px; margin-bottom: 5px; }
.ftr-col ul { column-count: 2; }
.ftr-col ul button { font-family: var(--font); cursor: pointer; border: none; background: none; display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.65); transition: var(--tr); padding: 5px 0; width: 100%; text-align: right; }
.ftr-col ul button:hover { color: #fff; padding-right: 4px; }
.ftr-col ul button i { font-size: 10px; color: var(--gold); flex-shrink: 0; }
.ftr-logo { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.ftr-brand h3 { font-size: 17px; font-weight: 900; color: var(--gold2); margin-bottom: 10px; }
.ftr-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.9; margin-bottom: 22px; }
.ftr-socials { display: flex; gap: 10px; }
.ftr-soc { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(184,146,74,.25); display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,.8); transition: var(--tr); }
.ftr-soc:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); color: #fff; }
.ftr-col h4 { font-size: 15px; font-weight: 900; color: var(--gold2); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.ftr-col-line { display: inline-block; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }
.ftr-col ul li { margin-bottom: 10px; }
.ftr-contact { display: flex; flex-direction: column; gap: 14px; }
.ftr-ci { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); }
.ftr-ci i { color: var(--gold2); font-size: 18px; width: 20px; text-align: center; flex-shrink: 0; }
.ftr-ornament { display: flex; align-items: center; gap: 16px; padding: 24px 0 0; }
.ftr-orn-line { flex: 1; height: 1px; background: rgba(184,146,74,.2); }
.ftr-ornament img { width: 36px; height: 36px; object-fit: contain; opacity: .4; filter: invert(80%) sepia(40%) saturate(300%) hue-rotate(10deg); }
.ftr-bottom { position: relative; z-index: 2; padding: 18px 0; text-align: center; }
.ftr-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }

/* ── WHATSAPP ── */
.wa-btn { position: fixed; bottom: 8px; left: 10px; z-index: 980; width: 54px; height: 54px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 24px rgba(37,211,102,.45); transition: var(--tr); }
.wa-btn:hover { background: #1ebe5d; transform: scale(1.1); }

/* ── SCROLL ANIMATIONS ── */
[data-anim] { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
[data-anim="right"] { transform: translateX(40px); }
[data-anim="left"] { transform: translateX(-40px); }
[data-anim].in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1300px) {
  .hero-grid { grid-template-columns: 1fr 1.3fr; }
  .hero-h1 { font-size: 45px; }
}
@media (max-width: 900px) {
  #navbar { display: none; }
  .burger { display: flex; }
  section { padding: 65px 0; }
  .container { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; display: block; width: 90%; margin: 0 auto; }
  .hero-txt { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .live-wrap { margin: 20px auto; }
  #hero { min-height: auto; }
  .cd-box { width: 82px; height: 82px; }
  .cd-box span { font-size: 34px; }
  .cd-sep { font-size: 26px; margin-bottom: 22px; }
  .live-info-strip { flex-direction: column; gap: 8px; padding: 14px 16px; }
  .lis-item { padding: 0; justify-content: center; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  section { padding: 50px 0; }
  .container { padding: 0 16px; }
  .hero-grid { padding: 25px 0 10px; }
  .hero-h1 { font-size: clamp(30px,8vw,48px); margin-bottom: 10px; }
  .hero-sub { font-size: 14px; margin-bottom: 11px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-gold { width: 100%; justify-content: center; font-size: 14px; }
  .btn-ghost { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 26px 18px; }
  .section-ornament { font-size: 15px; gap: 10px; }
  .section-ornament img { width: 26px; height: 26px; }
  .cd-card { padding: 28px 14px; }
  .cd-inner { gap: 4px; flex-wrap: nowrap; }
  .cd-box { width: 56px; height: 56px; }
  .cd-box span { font-size: 20px; }
  .cd-unit p { font-size: 10px; text-align: center; }
  .cd-sep { font-size: 16px; margin-bottom: 18px; }
  .live-info-strip { padding: 10px 14px; gap: 6px; }
  .lis-item { font-size: 12px; }
  .sec-head { margin-bottom: 36px; }
  .lang-grid { flex-direction: column; align-items: stretch; gap: 10px; }
  .lang-card { justify-content: flex-start; }
  .ftr-grid { grid-template-columns: 1fr; gap: 28px; }
  .ftr-top { padding: 30px 15px 0; }
  .ftr-col ul { column-count: 1; }
  .video-container { min-height: 180px; }
}

/* LTR layout adjustments */
html[dir="ltr"] body { text-align: left; }
html[dir="ltr"] .mob-link { text-align: left; border-right: none; border-left: 3px solid transparent; }
html[dir="ltr"] .mob-link:hover { border-left-color: var(--gold); }
html[dir="ltr"] .ftr-col ul button { text-align: left; }

/* ── Scroll animations (replaces React framer-motion) ── */
[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-anim="right"] { transform: translateX(-40px); }
[data-anim="left"] { transform: translateX(40px); }
[data-anim].in { opacity: 1; transform: none; }
