/* ===== PAPUA DARKSIDE — TACTICAL DARK THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Fira+Code:wght@400;500&display=swap');

:root {
  --bg:       #080c08;
  --surface:  #0f1510;
  --surface2: #161e17;
  --surface3: #1e2820;
  --border:   #2a3528;
  --border2:  #344030;
  --accent:   #4a7c59;
  --accent2:  #3d6649;
  --gold:     #c9a227;
  --gold2:    #a8841f;
  --red:      #8b1a1a;
  --red2:     #a52020;
  --text:     #c8d5b9;
  --text2:    #9aaa8a;
  --muted:    #6b7a61;
  --white:    #e8eed8;
  --mono:     'Fira Code', monospace;
  --title:    'Rajdhani', sans-serif;
  --body:     'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--body); font-size: 15px; line-height: 1.7; min-height: 100vh; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5 { font-family: var(--title); color: var(--white); letter-spacing: 0.5px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(8,12,8,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 999;
  backdrop-filter: blur(8px);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--title); font-size: 22px; font-weight: 700; color: var(--white);
  letter-spacing: 1px;
}
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: 1px solid var(--border2);
}
.brand-badge {
  font-size: 9px; font-family: var(--mono); color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px; display: block; margin-top: -4px;
}
.navbar-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.navbar-nav a {
  display: block; padding: 6px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 500; color: var(--text2);
  transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.3px;
  white-space: nowrap;
}
.navbar-nav a:hover, .navbar-nav a.active {
  background: var(--surface3); color: var(--gold);
}
/* Language switcher */
.lang-switcher { display: flex; align-items: center; margin: 0 8px; }
.lang-select { background: var(--surface2); border: 1px solid var(--border2); border-radius: 7px; color: var(--text); font-size: 12px; font-weight: 600; padding: 6px 10px; cursor: pointer; outline: none; transition: border-color .2s; min-width: 130px; }
.lang-select:hover, .lang-select:focus { border-color: var(--gold); }
.lang-btn {
  display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 5px;
  font-size: 18px; text-decoration: none; opacity: 0.55; transition: opacity 0.2s, background 0.2s;
  line-height: 1;
}
.lang-btn:hover { opacity: 1; background: var(--surface3); }
.lang-btn.lang-active { opacity: 1; background: var(--surface3); box-shadow: 0 0 0 1px var(--border2); }

.hamburger { display: none; background: none; border: 1px solid var(--border); border-radius: 6px; padding: 7px 10px; color: var(--text); cursor: pointer; }
.mobile-menu { display: none; background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 24px; }
.mobile-menu a { display: block; padding: 10px 0; color: var(--text); border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

/* ===== HERO ===== */
/* ===== HERO — Opsi A: teks kiri, logo kanan ===== */
.hero {
  background: #000;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: stretch;
}
/* Hero banner — full image, no text */
.hero-banner {
  display: block;
  background: #040c14;
  line-height: 0;
}
.hero-full-img {
  display: block;
  width: 100%;
  height: auto;
}
/* Fallback hero dengan teks */
.hero-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  padding: 0 48px;
  min-height: 380px;
}
.hero-text-col {
  flex: 1;
  max-width: 680px;
  padding: 48px 0;
}
/* Sembunyikan elemen lama */
.hero-logo-col, .hero-bg, .hero-overlay, .hero-grid-lines, .hero-inner, .hero-banner-img { display: none; }

@media (max-width: 560px) {
  .hero-banner { height: 50vw; min-height: 220px; }
  .hero-wrap { padding: 0 20px; min-height: auto; }
  .hero-text-col { padding: 32px 0; }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  border: 1px solid rgba(74,124,89,0.3); border-radius: 4px;
  padding: 4px 12px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-title {
  font-family: var(--title); font-size: 56px; font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 2px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 16px; color: var(--text2); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s; border: none; text-transform: uppercase; letter-spacing: 1px; font-family: var(--body); }
.btn-primary { background: var(--accent); color: var(--white); border: 1px solid var(--accent2); }
.btn-primary:hover { background: var(--accent2); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold2); }
.btn-outline:hover { background: rgba(201,162,39,0.08); color: var(--gold); }
.btn-danger { background: var(--red); color: #fff; border: 1px solid var(--red2); }
.btn-danger:hover { background: var(--red2); }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-stat .num { font-family: var(--title); font-size: 28px; font-weight: 700; color: var(--gold); }
.hero-stat .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-family: var(--mono); }

/* ===== HERO TWO-COLUMN LAYOUT ===== */
.hero-two-col {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 0;
  align-items: center;
  min-height: 420px;
}
.hero-content { display: flex; flex-direction: column; }
/* Kanan: kolom kosong agar background image terlihat jelas dari belakang */
.hero-map-col {
  height: 100%;
  min-height: 420px;
  /* Jika hero-bg.jpg tidak ditemukan, tampilkan peta sebagai fallback */
  background: transparent;
  position: relative;
}

@media (max-width: 768px) {
  .hero-two-col { grid-template-columns: 1fr; }
  .hero-map-col { display: none; }
}

.lang-btn {
  cursor: pointer;
  background: none;
  font-family: inherit;
}

@media (max-width: 768px) {
  .hero-two-col { grid-template-columns: 1fr; }
  .hero-map-col { display: none; }
}

/* ===== SECTION ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 40px; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.section-label { font-family: var(--mono); font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.section-title { font-family: var(--title); font-size: 30px; font-weight: 700; color: var(--white); letter-spacing: 1px; }

/* ===== ARTICLE GRID ===== */
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.article-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: all 0.25s;
}
.article-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(74,124,89,0.12); }
.article-thumb { height: 180px; background: var(--surface2); overflow: hidden; position: relative; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-thumb img { transform: scale(1.04); }
.article-thumb-placeholder { width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:40px;color:var(--border2); }
.article-kategori {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: rgba(8,12,8,0.85); color: var(--gold);
  padding: 3px 8px; border-radius: 3px; border: 1px solid rgba(201,162,39,0.3);
}
.article-body { padding: 20px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 11px; color: var(--muted); font-family: var(--mono); }
.article-title { font-family: var(--title); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; line-height: 1.35; }
.article-title a { color: var(--white); }
.article-title a:hover { color: var(--gold); }
.article-excerpt { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.article-footer { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--muted); }
.read-more { color: var(--accent); font-weight: 600; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.read-more:hover { color: var(--gold); }

/* ===== FEATURED ARTICLE ===== */
.article-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; margin-bottom: 28px;
}
.article-featured .thumb { height: 300px; overflow: hidden; background: var(--surface2); }
.article-featured .thumb img { width:100%;height:100%;object-fit:cover; }
.article-featured .body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.article-featured .body .article-title { font-size: 24px; margin-bottom: 12px; }
.article-featured .body .article-excerpt { font-size: 14px; margin-bottom: 24px; }

/* ===== ABOUT STRIP ===== */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { font-size: 32px; margin-bottom: 16px; }
.about-text p { color: var(--text2); margin-bottom: 16px; }
.about-image { position: relative; }
.about-image img { border-radius: 10px; border: 1px solid var(--border); }
.about-image-placeholder { height: 320px; background: var(--surface2); border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 60px; color: var(--border2); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.value-item { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.value-icon { font-size: 22px; margin-bottom: 8px; }
.value-title { font-family: var(--title); font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.value-desc { font-size: 12px; color: var(--muted); }

/* ===== KONTAK ===== */
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.kontak-info { display: flex; flex-direction: column; gap: 20px; }
.kontak-item { display: flex; gap: 16px; align-items: flex-start; }
.kontak-icon { width: 44px; height: 44px; min-width: 44px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.kontak-detail .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-family: var(--mono); }
.kontak-detail .val { color: var(--text); font-weight: 500; margin-top: 2px; }

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 12px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-family: var(--mono); }
input[type=text], input[type=email], input[type=password], input[type=url], textarea, select {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 7px; padding: 10px 14px; color: var(--text);
  font-family: var(--body); font-size: 14px; outline: none; transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 120px; }

/* ===== ALERT ===== */
.alert { padding: 12px 18px; border-radius: 7px; font-size: 13px; margin-bottom: 20px; }
.alert-success { background: rgba(74,124,89,0.12); border: 1px solid rgba(74,124,89,0.3); color: #6db88a; }
.alert-error { background: rgba(139,26,26,0.12); border: 1px solid rgba(139,26,26,0.3); color: #d46060; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); font-family: var(--mono); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border2); }

/* ===== PAGE HEADER ===== */
.page-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 40px 0; margin-bottom: 48px; }
.page-header h1 { font-family: var(--title); font-size: 36px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.page-header p { color: var(--text2); font-size: 14px; }

/* ===== ARTICLE DETAIL ===== */
.article-detail { max-width: 780px; }
.article-detail-header { margin-bottom: 32px; }
.article-detail-title { font-size: 36px; line-height: 1.25; margin-bottom: 16px; }
.article-detail-meta { display: flex; gap: 16px; font-size: 12px; color: var(--muted); font-family: var(--mono); flex-wrap: wrap; }
.article-detail-thumb { border-radius: 10px; overflow: hidden; margin-bottom: 32px; }
.article-detail-thumb img { width: 100%; max-height: 440px; object-fit: cover; }
.article-content { color: var(--text); line-height: 1.85; font-size: 15px; }
.article-content h2 { font-size: 22px; margin: 28px 0 12px; color: var(--white); }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 0 0 16px 24px; }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 12px 20px; margin: 20px 0; background: var(--surface2); color: var(--text2); font-style: italic; border-radius: 0 6px 6px 0; }

/* ===== SIDEBAR ===== */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.sidebar-widget { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-bottom: 24px; }
.widget-title { font-family: var(--title); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.widget-article { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.widget-article:last-child { border-bottom: none; padding-bottom: 0; }
.widget-article-thumb { width: 60px; height: 50px; min-width: 60px; border-radius: 5px; overflow: hidden; background: var(--surface2); }
.widget-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-article-title { font-size: 12px; color: var(--text); line-height: 1.4; font-weight: 500; }
.widget-article-title a { color: var(--text); }
.widget-article-title a:hover { color: var(--gold); }
.widget-article-date { font-size: 10px; color: var(--muted); font-family: var(--mono); margin-top: 4px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--surface2); border: 1px solid var(--border); border-radius: 4px; padding: 4px 12px; font-size: 11px; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.5px; }
.tag:hover { border-color: var(--accent); color: var(--accent); }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 7px; background: var(--surface); border: 1px solid var(--border); color: var(--text2); font-size: 13px; font-family: var(--mono); transition: all 0.15s; }
.page-link:hover, .page-link.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ===== FOOTER ===== */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-main { margin-bottom: 32px; }
.footer-brand { max-width: 480px; }
.footer-brand .brand { font-family: var(--title); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 1px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-family: var(--title); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--muted); font-family: var(--mono); }
.social-links { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border-radius: 7px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted); transition: all 0.2s; }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ===== TACTICAL DECORATIONS ===== */
.tactical-line { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.tactical-line::before, .tactical-line::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.tactical-line span { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; }

/* ===== BADGE / TAG ===== */
.badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; font-family: var(--mono); text-transform: uppercase; letter-spacing: 1px; }
.badge-berita { background: rgba(74,124,89,0.2); color: #6db88a; border: 1px solid rgba(74,124,89,0.3); }
.badge-info { background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.3); }
.badge-opini { background: rgba(139,26,26,0.15); color: #d46060; border: 1px solid rgba(139,26,26,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: 36px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-featured { grid-template-columns: 1fr; }
  .article-featured .thumb { height: 220px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   PAPUA UNVEILED — NEW HOMEPAGE STYLES
   =================================================================== */

/* ----- NAVBAR additions ----- */
.navbar-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-donate {
  display: inline-block;
  padding: 8px 20px;
  background: #c0392b;
  color: #fff;
  font-family: var(--title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-donate:hover { background: #a93226; color: #fff; }

/* ----- HERO OVERLAY ----- */
.hero-revealed {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}
.hero-revealed-imgwrap {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 280px;
  max-height: 640px;
  background: #000;
}
.hero-revealed-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.92;
}
.hero-revealed-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.65) 65%,
    rgba(0,0,0,0.93) 100%
  );
}
.hero-revealed-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 36px;
}
.hero-revealed-title {
  font-family: 'Impact', 'Rajdhani', 'Arial Black', sans-serif;
  font-size: clamp(28px, 5.5vw, 78px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.85);
}
.hero-gold { color: #c8a227; }
.hero-glow {
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 210, 80, 0.9),
    0 0 30px rgba(200, 162, 39, 0.75),
    0 0 60px rgba(200, 130, 20, 0.5),
    0 0 100px rgba(180, 90, 10, 0.3);
}

/* ----- FEATURES SECTION ----- */
.revealed-features {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 36px;
}
.revealed-features-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.revealed-feat-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.revealed-feat-bar {
  width: 6px;
  height: 30px;
  background: #c0392b;
  border-radius: 2px;
  flex-shrink: 0;
}
.revealed-feat-label {
  font-family: var(--title);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.revealed-feat-arrows { display: flex; gap: 8px; }
.revealed-feat-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface2);
  color: var(--text2);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
}
.revealed-feat-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.revealed-feat-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.revealed-feat-scroll::-webkit-scrollbar { display: none; }
.revealed-feat-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px;
}
.revealed-feat-thumb {
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface2);
  margin-bottom: 12px;
  position: relative;
}
.revealed-feat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.revealed-feat-card:hover .revealed-feat-thumb img { transform: scale(1.05); }
.revealed-feat-nothumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0c00, #3d2500);
  border: 1px solid rgba(200,162,39,0.25);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: 6px;
}
.revealed-feat-nothumb-text {
  font-family: var(--title);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  text-transform: uppercase;
}
.revealed-feat-info { padding: 0 2px; }
.revealed-feat-cat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.revealed-feat-name {
  font-family: var(--title);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  text-transform: uppercase;
}
.revealed-feat-name a { color: var(--white); }
.revealed-feat-name a:hover { color: var(--gold); }

/* ----- FOOTER centered style ----- */
.footer-center {
  text-align: center;
  padding: 32px 0 24px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.fsoc-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, opacity 0.2s;
}
.fsoc-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.footer-info { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-office-label { font-size: 12px; color: var(--muted); font-family: var(--mono); letter-spacing: 1px; }
.footer-site-name { font-family: var(--title); font-size: 18px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.footer-address { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }

/* ----- FOOTER bottom bar (social + subscribe) ----- */
.footer-grid { margin-bottom: 32px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social-icon {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: all 0.2s;
}
.footer-social-icon:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-subscribe-label {
  font-family: var(--title);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.footer-subscribe-form {
  display: flex;
  border: 1px solid var(--border2);
  border-radius: 5px;
  overflow: hidden;
}
.footer-subscribe-input {
  width: 200px;
  background: var(--surface2);
  border: none;
  border-radius: 0;
  padding: 8px 14px;
  color: var(--text);
  font-size: 13px;
  outline: none;
}
.footer-subscribe-btn {
  background: #c0392b;
  border: none;
  color: #fff;
  padding: 8px 16px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-subscribe-btn:hover { background: #a93226; }
.footer-copy-bar {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ----- Responsive new styles ----- */
@media (max-width: 1024px) {
  .revealed-feat-card { flex: 0 0 calc(50% - 12px); }
  .navbar-right-group { gap: 8px; }
}
@media (max-width: 768px) {
  .hero-revealed-imgwrap { height: 50vw; min-height: 220px; }
  .hero-revealed-title { font-size: clamp(22px, 6vw, 42px); }
  .revealed-feat-card { flex: 0 0 80vw; }
  .navbar-right-group { display: none; }
  .footer-subscribe { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-subscribe-input { width: 160px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-copy-bar { flex-direction: column; gap: 4px; }
}
