/* ============================================================
   KALIBOR ADVISORS — Main Stylesheet
   Colors: Navy #0B1E3E | Gold #C9A84C | Grey #F4F6F9
   ============================================================ */

:root {
  --navy: #0B1E3E;
  --navy-light: #1a3a6b;
  --navy-dark: #071428;
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --white: #FFFFFF;
  --grey-light: #F4F6F9;
  --grey-mid: #E8ECF0;
  --grey-text: #6b7280;
  --text-dark: #1a1a2e;
  --border: #dde3ea;
  --shadow: 0 4px 24px rgba(11,30,62,0.10);
  --shadow-hover: 0 8px 40px rgba(11,30,62,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--grey-text); }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.fw-600 { font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 28px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white); color: var(--navy);
}
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light); transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ── Section Headers ─────────────────────────────────────── */
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--grey-text); max-width: 640px; font-size: 1.05rem; }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.divider {
  width: 56px; height: 4px; background: var(--gold);
  border-radius: 2px; margin: 16px 0 24px;
}
.divider.centered { margin: 16px auto 24px; }

/* ── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  padding: 18px 0;
}
#navbar.scrolled {
  background: rgba(11,30,62,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  padding: 12px 0;
}
#navbar.nav-white {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
#navbar.nav-white .nav-logo,
#navbar.nav-white .nav-link,
#navbar.nav-white .nav-toggle { color: var(--navy); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-size: 1.5rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 8px; }

.nav-link {
  color: rgba(255,255,255,0.88); font-weight: 500;
  font-size: 0.9rem; padding: 8px 14px; border-radius: 6px;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); min-width: 220px;
  border-radius: var(--radius); box-shadow: var(--shadow-hover);
  padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition);
  border-top: 3px solid var(--gold);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; color: var(--text-dark);
  font-size: 0.88rem; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--grey-light); color: var(--gold); }

.nav-cta { margin-left: 12px; }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); cursor: pointer; padding: 4px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::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.03'%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");
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 7px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 580px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2rem; font-weight: 800; color: var(--gold); display: block;
}
.hero-stat-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.card-icon {
  width: 62px; height: 62px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.6rem;
}
.card-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { font-size: 0.92rem; line-height: 1.65; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.88rem; font-weight: 600;
  margin-top: 18px;
}
.card-arrow svg { width: 16px; height: 16px; transition: var(--transition); }
.card:hover .card-arrow svg { transform: translateX(4px); }

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold); box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.service-card .icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--grey-light); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition); font-size: 1.8rem;
}
.service-card:hover .icon-wrap { background: var(--navy); }
.service-card:hover .icon-wrap svg { stroke: var(--gold); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card ul { margin-top: 14px; }
.service-card ul li {
  font-size: 0.88rem; color: var(--grey-text); padding: 5px 0;
  padding-left: 18px; position: relative;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}

/* ── Why Us / Features ───────────────────────────────────── */
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 2; }
.feature-body h4 { color: var(--navy); margin-bottom: 5px; }
.feature-body p { font-size: 0.9rem; }

/* ── Process Steps ───────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 0; }
.process-step {
  text-align: center; padding: 36px 24px; position: relative;
}
.process-step::after {
  content: ''; position: absolute; top: 52px; right: -1px;
  width: 50%; height: 2px; background: var(--border);
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  padding: 18px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover { background: var(--grey-light); }
.faq-question.active { background: var(--navy); color: var(--white); }
.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grey-mid); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: var(--transition);
  font-size: 1.2rem; font-weight: 300;
}
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; padding: 16px 24px 20px; }
.faq-answer p { font-size: 0.93rem; }

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img {
  height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-cat {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--grey-text); }

/* ── CTA Banners ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg); padding: 70px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(201,168,76,0.07); top: -100px; right: -100px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 50px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 80px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  justify-content: center; margin-top: 18px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--navy); margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 13px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text-dark); font-size: 0.93rem;
  transition: var(--transition); font-family: inherit;
}
.form-control:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,30,62,0.08);
}
.form-control::placeholder { color: #adb5bd; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-alert {
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; margin-bottom: 20px;
}
.form-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Contact Info ────────────────────────────────────────── */
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px; background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--grey-text); margin-bottom: 3px; }
.contact-detail a, .contact-detail span { color: var(--navy); font-weight: 600; }
.contact-detail a:hover { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo { font-size: 1.6rem; color: var(--white); display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.8); fill: none; stroke-width: 2; }
.footer-social a:hover svg { stroke: var(--navy); }

.footer-col h5 {
  color: var(--white); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Back to Top ─────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; background: var(--gold); color: var(--navy);
  border: none; border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  opacity: 0; visibility: hidden; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-3px); }
#backToTop svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 2.5; }

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.product-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 30px 28px;
}
.product-card-header .icon { font-size: 2.4rem; margin-bottom: 12px; }
.product-card-header h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.product-card-header p { color: rgba(255,255,255,0.68); font-size: 0.88rem; }
.product-card-body { padding: 24px 28px; }
.product-features li {
  padding: 7px 0; font-size: 0.88rem; color: var(--grey-text);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--grey-mid);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.product-cta { padding: 0 28px 28px; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--grey-text); margin-bottom: 20px; font-size: 0.92rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-role { font-size: 0.8rem; color: var(--grey-text); }

/* ── Highlight boxes ─────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(11,30,62,0.04) 0%, rgba(201,168,76,0.06) 100%);
  border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius-lg);
  padding: 36px 32px;
}

/* ── Tag chips ───────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; background: var(--grey-light);
  color: var(--navy); margin: 4px 3px;
}
.tag-gold { background: rgba(201,168,76,0.15); color: #8a6a12; }

/* ── Admin ───────────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--navy-dark); flex-shrink: 0;
  padding: 0; position: fixed; top: 0; left: 0; height: 100vh;
  overflow-y: auto; z-index: 100;
}
.admin-sidebar-logo {
  padding: 24px 22px; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1.2rem; font-weight: 800; color: var(--white);
}
.admin-sidebar-logo span { color: var(--gold); }
.admin-nav { padding: 16px 0; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 22px; color: rgba(255,255,255,0.65);
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: var(--transition);
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255,255,255,0.07); color: var(--gold);
}
.admin-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-nav-sep {
  padding: 10px 22px 4px; font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-top: 8px;
}
.admin-main { margin-left: 260px; flex: 1; background: #f0f2f5; min-height: 100vh; }
.admin-topbar {
  background: var(--white); padding: 16px 32px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-content { padding: 32px; }
.admin-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}
.admin-card h3 { font-size: 1rem; margin-bottom: 16px; }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.stat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--gold);
}
.stat-card-num { font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-card-label { font-size: 0.82rem; color: var(--grey-text); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 12px 16px;
  background: var(--grey-light); font-size: 0.82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--navy); border-bottom: 2px solid var(--border);
}
.data-table td {
  padding: 13px 16px; font-size: 0.88rem; color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.data-table tr:hover td { background: var(--grey-light); }
.badge {
  padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info { background: #dbeafe; color: #1e40af; }

/* ── Animations ──────────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ── Mobile Nav ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--navy-dark); flex-direction: column; align-items: flex-start;
    padding: 80px 24px 40px; gap: 4px; transition: right 0.35s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2); overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: rgba(255,255,255,0.85); width: 100%; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; padding: 0 0 0 16px;
    background: transparent; border: none;
  }
  .nav-dropdown-menu a { color: rgba(255,255,255,0.6); padding: 8px 10px; }
  .nav-cta { margin: 12px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 20px; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .cta-banner { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .stat-cards { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
}
