/* ============================================================
   style.css — Portal PSTL Kuantan
   Premium Government Naval Portal Design
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:        #0a1628;
  --navy-mid:    #132040;
  --navy-light:  #1e3260;
  --navy-accent: #2d4d8e;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dark:   #a07830;
  --maroon:      #7b1d2a;
  --maroon-light:#a83040;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --slate:       #4a5568;
  --slate-light: #718096;
  --teal:        #0e7490;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-serif:   'Crimson Pro', serif;

  --shadow-sm: 0 2px 8px rgba(10,22,40,.12);
  --shadow-md: 0 4px 24px rgba(10,22,40,.18);
  --shadow-lg: 0 8px 48px rgba(10,22,40,.24);

  --radius-sm:  6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: .25s ease;
}

[data-bs-theme="dark"] {
  --bs-body-bg: #0d1b2a;
  --bs-body-color: #e2e8f0;
  --off-white: #1a2840;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #2d3748;
  background: var(--off-white);
  line-height: 1.7;
}

/* ---- Top Bar Official ---- */
.topbar-official {
  background: var(--navy);
  color: #a0aec0;
  font-size: .78rem;
  padding: .4rem 0;
  border-bottom: 2px solid var(--gold-dark);
}
.topbar-official a { color: var(--gold-light); text-decoration: none; }
.topbar-official a:hover { color: var(--white); }
.topbar-official .dark-toggle { color: #a0aec0; padding: .2rem .5rem; }

/* ---- Navbar ---- */
.navbar-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 3px solid var(--gold);
  padding: .6rem 0;
  transition: box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}
.navbar-main.scrolled { box-shadow: 0 4px 30px rgba(10,22,40,.4); }
.brand-emblem {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy); flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,168,76,.4);
}
.brand-title {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 1rem; color: var(--white); line-height: 1.1; letter-spacing: .03em;
}
.brand-motto { font-family: var(--font-serif); font-style: italic; font-size: .72rem; color: var(--gold-light); }
.navbar-main .nav-link {
  color: #c8d6e8 !important; font-family: var(--font-body); font-weight: 500;
  font-size: .88rem; padding: .45rem .7rem !important;
  border-radius: var(--radius-sm); transition: all var(--transition); letter-spacing: .02em;
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active {
  color: var(--gold-light) !important; background: rgba(201,168,76,.12);
}
.navbar-main .dropdown-menu {
  background: var(--navy-mid); border: 1px solid var(--navy-accent);
  border-top: 2px solid var(--gold); min-width: 200px; margin-top: .25rem;
  z-index: 9999 !important;
}
.navbar-main .dropdown-item { color: #c8d6e8; font-size: .875rem; padding: .5rem 1rem; }
.navbar-main .dropdown-item:hover { background: rgba(201,168,76,.15); color: var(--gold-light); }
.offcanvas-navy { background: var(--navy-mid); width: 300px; }
.offcanvas-navy .nav-link {
  color: #c8d6e8; padding: .75rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,.05); font-weight: 500;
}
.offcanvas-navy .nav-link:hover { color: var(--gold-light); }
.text-gold { color: var(--gold-light); }

/* ---- Hero Section ---- */
.hero-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0e2042 40%, #1a3060 100%);
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center; padding: 80px 0 60px;
}
.hero-waves { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.wave { position: absolute; width: 200%; left: -50%; border-radius: 50%; opacity: .08; }
.wave-1 { height: 400px; bottom: -200px; background: var(--gold); animation: waveAnim 8s ease-in-out infinite; }
.wave-2 { height: 300px; bottom: -150px; background: #2d6b9e; animation: waveAnim 10s ease-in-out infinite reverse; }
.wave-3 { height: 200px; bottom: -100px; background: var(--white); animation: waveAnim 12s ease-in-out infinite; }
@keyframes waveAnim {
  0%,100% { transform: translateX(0) scaleY(1); }
  50%      { transform: translateX(-5%) scaleY(1.1); }
}
.hero-decor { position: absolute; inset: 0; pointer-events: none; }
.decor-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,.12); }
.circle-1 { width: 500px; height: 500px; top: -200px; right: -150px; }
.circle-2 { width: 300px; height: 300px; top: 100px; right: 50px; }
.decor-anchor {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  font-size: 12rem; color: rgba(255,255,255,.03);
  animation: floatAnchor 6s ease-in-out infinite;
}
@keyframes floatAnchor {
  0%,100% { transform: translateY(-50%) rotate(-5deg); }
  50%      { transform: translateY(-55%) rotate(5deg); }
}
.hero-content { position: relative; z-index: 2; }
.min-vh-80 { min-height: 80vh; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light); font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  animation: fadeInDown .6s ease both;
}
.hero-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white); line-height: 1.05; margin-bottom: 1rem;
  animation: fadeInDown .7s ease both;
}
.hero-title span { color: var(--gold-light); }
.hero-motto {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.15rem; color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem; animation: fadeInDown .8s ease both;
}
.hero-desc { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 2rem; animation: fadeInDown .9s ease both; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInDown 1s ease both; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); font-weight: 700; font-family: var(--font-heading);
  letter-spacing: .05em; padding: .75rem 2rem; border-radius: 50px;
  border: none; transition: all .3s ease; font-size: 1rem;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.4); color: var(--navy); }
.btn-hero-outline {
  color: var(--white); border: 2px solid rgba(255,255,255,.35);
  font-weight: 600; font-family: var(--font-heading);
  letter-spacing: .05em; padding: .75rem 2rem; border-radius: 50px;
  background: transparent; transition: all .3s ease; font-size: 1rem;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; animation: fadeInDown 1.1s ease both; }
.hero-stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }

/* Quick Links */
.quick-links-section { background: var(--white); padding: 2rem 0; box-shadow: 0 4px 20px rgba(10,22,40,.08); position: relative; z-index: 10; margin-top: -1px; }
.quick-link-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.25rem 1rem; border-radius: var(--radius-md);
  text-decoration: none; color: var(--slate);
  transition: all .25s ease; border: 1px solid transparent;
}
.quick-link-card:hover { color: var(--navy); background: var(--off-white); border-color: #e2e8f0; transform: translateY(-3px); }
.quick-link-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: .75rem; transition: all .25s ease;
}
.quick-link-card:hover .quick-link-icon { transform: scale(1.1); }
.quick-link-label { font-family: var(--font-heading); font-weight: 700; font-size: .85rem; text-align: center; letter-spacing: .02em; }

/* Section Titles */
.section-eyebrow {
  font-family: var(--font-heading); font-weight: 700; font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark);
  display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
.section-title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: .5rem; }
.section-subtitle { color: var(--slate-light); font-size: .95rem; }

/* Pengumuman */
.announcement-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--navy); transition: all .25s ease;
  display: flex; gap: 1rem; align-items: flex-start;
}
.announcement-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.announcement-card.jenis-penting { border-left-color: var(--gold-dark); }
.announcement-card.jenis-kecemasan { border-left-color: var(--maroon); }
.ann-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ann-date { font-size: .75rem; color: var(--slate-light); }
.ann-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--navy); margin: .2rem 0 0; line-height: 1.3; }

/* Berita */
.news-card-main { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s ease; }
.news-card-main:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img { height: 200px; object-fit: cover; width: 100%; }
.news-card-body { padding: 1.25rem; }
.news-meta { font-size: .78rem; color: var(--slate-light); margin-bottom: .5rem; }
.news-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; line-height: 1.3; }
.news-excerpt { font-size: .875rem; color: var(--slate); line-height: 1.6; }

/* Stats */
.stats-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 4rem 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 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='%23ffffff' fill-opacity='0.02'%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"); }
.stat-item { text-align: center; padding: 1rem; }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--gold-light); line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; margin: 1rem 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1; position: relative; cursor: pointer;
  transition: transform .3s ease; background: var(--navy-light);
}
.gallery-item:first-child { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem; opacity: 0;
  transition: opacity .3s ease; color: white; text-align: center;
}
.gallery-overlay i { font-size: 1.5rem; margin-bottom: .5rem; color: var(--gold-light); }
.gallery-overlay span { font-size: .8rem; font-weight: 600; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Buttons */
.btn-outline-navy {
  color: var(--navy); border: 2px solid var(--navy);
  font-weight: 600; font-family: var(--font-heading); letter-spacing: .04em;
  padding: .6rem 1.75rem; border-radius: 50px; transition: all .3s ease;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--gold-light); }

/* Footer */
.footer-main { background: var(--navy); color: #94a3b8; }
.footer-top { padding: 4rem 0 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-emblem { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--navy); flex-shrink: 0; }
.footer-brand-title { font-family: var(--font-heading); font-weight: 800; font-size: .95rem; color: var(--white); }
.footer-heading { font-family: var(--font-heading); font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .35rem; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .75rem; margin-bottom: .6rem; font-size: .875rem; align-items: flex-start; }
.footer-contact a { color: var(--gold-light); }
.footer-hours { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.text-light-muted { color: #64748b; }
.text-danger-light { color: #fc8181; }
.btn-footer-social { width: 36px; height: 36px; border-radius: 50%; padding: 0; display: flex; align-items: center; justify-content: center; border-color: rgba(255,255,255,.2); color: #94a3b8; }
.btn-footer-social:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: white; }
.footer-bottom { padding: 1.25rem 0; background: rgba(0,0,0,.2); font-size: .8rem; }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   ADMIN STYLES
   ============================================================ */
.admin-body {
  background: #f0f4f8;
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── Admin Layout Wrapper ── */
#adminWrapper {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ── */
.admin-sidebar {
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: fixed;
  top: 0; left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
  box-shadow: 4px 0 20px rgba(10,22,40,.25);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.admin-sidebar.collapsed { transform: translateX(-260px); }

.sidebar-logo {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: .75rem;
  flex-shrink: 0;
}
.sidebar-logo-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--navy);
}
.sidebar-logo-text {
  font-family: var(--font-heading); font-weight: 800;
  font-size: .85rem; color: white;
  line-height: 1.3; word-break: break-word;
}
.sidebar-logo-subtitle { font-size: .68rem; color: var(--gold-light); }

.sidebar-nav { flex: 1; padding: 1rem 0; overflow-y: auto; }
.sidebar-section-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.25);
  padding: .75rem 1.5rem .25rem;
}
.sidebar-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 1.5rem; color: rgba(200,214,232,.75);
  text-decoration: none; font-size: .875rem; font-weight: 500;
  transition: all .2s ease; position: relative;
}
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,.07); }
.sidebar-link.active { color: var(--gold-light); background: rgba(255,255,255,.07); }
.sidebar-link.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold); border-radius: 0 3px 3px 0;
}
.sidebar-link i { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-badge {
  margin-left: auto;
  background: var(--maroon); color: white;
  font-size: .65rem; font-weight: 700;
  padding: .15rem .5rem; border-radius: 50px;
}
.sidebar-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.sidebar-user { display: flex; align-items: center; gap: .75rem; }
.sidebar-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-accent) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: white; font-weight: 700;
}
.sidebar-user-name { font-size: .82rem; font-weight: 600; color: white; line-height: 1.2; }
.sidebar-user-role { font-size: .7rem; color: var(--gold-light); }

/* ── Admin Content Area ── */
.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  width: calc(100% - 260px);
  display: flex;
  flex-direction: column;
  transition: margin-left .3s ease, width .3s ease;
  background: #f0f4f8;
}

/* Sidebar collapsed — content expand */
#adminWrapper.sidebar-collapsed .admin-content {
  margin-left: 0;
  width: 100%;
}

/* ── Admin Topbar ── */
.admin-topbar {
  background: var(--white);
  padding: .75rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(10,22,40,.06);
  flex-shrink: 0;
}
.topbar-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--navy); }

/* ── Stat Cards Admin ── */
.stat-card-admin {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-sm); transition: all .3s ease;
  border-left: 4px solid transparent;
}
.stat-card-admin:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sca-navy   { border-left-color: var(--navy); }
.sca-gold   { border-left-color: var(--gold-dark); }
.sca-teal   { border-left-color: var(--teal); }
.sca-maroon { border-left-color: var(--maroon); }
.sca-icon   { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.sca-navy  .sca-icon  { background: rgba(10,22,40,.08);   color: var(--navy); }
.sca-gold  .sca-icon  { background: rgba(160,120,48,.1);  color: var(--gold-dark); }
.sca-teal  .sca-icon  { background: rgba(14,116,144,.1);  color: var(--teal); }
.sca-maroon .sca-icon { background: rgba(123,29,42,.1);   color: var(--maroon); }
.sca-num   { font-family: var(--font-heading); font-weight: 800; font-size: 1.8rem; color: var(--navy); line-height: 1; }
.sca-label { font-size: .8rem; color: var(--slate-light); font-weight: 500; }

/* ── Admin Card ── */
.admin-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.admin-card-header { padding: 1rem 1.5rem; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: space-between; background: #f8fafc; }
.admin-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--navy); margin: 0; }
.admin-card-body  { padding: 1.5rem; }

/* ── Admin Login ── */
.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0e2042 50%, #1a3060 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 2rem;
}
.admin-login-page::before {
  content: '⚓'; position: absolute;
  font-size: 30rem; opacity: .02; color: white; right: -5%; bottom: -5%; line-height: 1;
}
.login-card {
  background: rgba(255,255,255,.97); border-radius: var(--radius-lg);
  padding: 2.5rem; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(10,22,40,.4); position: relative; z-index: 1;
}
.login-logo {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--navy); margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.login-title    { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.login-subtitle { font-size: .85rem; color: var(--slate-light); }
.btn-login {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-accent) 100%);
  color: white; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: .04em; padding: .75rem; border: none;
  border-radius: var(--radius-sm); width: 100%; transition: all .3s ease;
}
.btn-login:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(10,22,40,.35); color: white; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .admin-sidebar {
    transform: translateX(-260px);
  }
  .admin-sidebar.mobile-open {
    transform: translateX(0);
  }
  .admin-content {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .hero-section { min-height: auto; padding: 100px 0 60px; }
}
@media (max-width: 575.98px) {
  .hero-title    { font-size: 2.5rem; }
  .stat-num      { font-size: 2rem; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .login-card    { padding: 1.75rem; }
}
/* Sidebar scrollbar */
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-track { background: transparent; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,.6); }

/* ── Hero Stats Panel ── */
.hero-stats-panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.hsp-header {
  background: rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: .85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hsp-body { padding: .5rem 0; }
.hsp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
}
.hsp-item:last-child { border-bottom: none; }
.hsp-item:hover { background: rgba(255,255,255,.05); }
.hsp-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
  min-width: 48px;
  text-align: right;
}
.hsp-label {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  flex: 1;
  padding-right: 1rem;
}

/* ── Countdown Widget ── */
.countdown-card { transition: transform .3s ease; }
.countdown-card:hover { transform: translateY(-4px); }
.cd-box {
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .5rem .75rem;
  min-width: 54px;
  backdrop-filter: blur(4px);
}
.cd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.cd-lbl {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  color: #fff;
}
.cd-sep { align-self: center; color: #fff; margin-top: -8px; }