/* ============================================================
   GHANA PLATINUM EXCELLENCE AWARDS — MAIN STYLESHEET
   Color palette: Black #0a0a0a | Gold #c9a84c | Deep Gold #a07830
   Ghana flag: Red #CF0921 | Gold #FCD116 | Green #006B3F
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #1a1a1a;
  --dark: #222222;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07830;
  --gold-glow: rgba(201,168,76,0.25);
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text-muted: #999;
  --gh-red: #CF0921;
  --gh-gold: #FCD116;
  --gh-green: #006B3F;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --radius: 8px;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.gold { color: var(--gold); }
.section { padding: 90px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-lg { padding: 18px 48px; font-size: 1rem; }

/* ── GHANA FLAG STRIPE ── */
.ghana-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gh-red) 33.3%, var(--gh-gold) 33.3% 66.6%, var(--gh-green) 66.6%);
  z-index: 10;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.nav-container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-ghana { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; color: var(--gold); letter-spacing: 3px; }
.logo-sub { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
  border-radius: 4px;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-nominate {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  font-weight: 700 !important;
}
.btn-nominate:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.4rem; cursor: pointer; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    var(--black);
}
.hero-overlay {
  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='%23c9a84c' 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-content { position: relative; z-index: 5; max-width: 900px; padding: 0 20px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 24px; border-radius: 40px;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
}
.hero-badge i { font-size: 0.6rem; }
.hero-title { font-family: var(--font-heading); line-height: 1; margin-bottom: 20px; }
.title-ghana {
  display: block; font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; letter-spacing: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.title-platinum {
  display: block; font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900; letter-spacing: 6px; color: var(--white);
}
.title-excellence {
  display: block; font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; letter-spacing: 8px; color: var(--gold);
}
.hero-tagline {
  font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.hero-desc { font-size: 1.1rem; color: var(--off-white); max-width: 600px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* floating stars */
.hero-stars { position: absolute; inset: 0; pointer-events: none; }
.star { position: absolute; color: var(--gold); animation: twinkle 3s infinite alternate; }
.s1 { top: 15%; left: 10%; font-size: 1.2rem; animation-delay: 0s; }
.s2 { top: 25%; right: 8%; font-size: 0.8rem; animation-delay: 0.7s; }
.s3 { bottom: 30%; left: 6%; font-size: 1.5rem; animation-delay: 1.2s; }
.s4 { top: 60%; right: 12%; font-size: 1rem; animation-delay: 0.4s; }
.s5 { bottom: 20%; right: 5%; font-size: 0.7rem; animation-delay: 1.8s; }
@keyframes twinkle { from { opacity: 0.2; transform: scale(0.8); } to { opacity: 0.8; transform: scale(1.2); } }

.scroll-down {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold); font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── PILLARS ── */
.pillars {
  background: var(--black2);
  padding: 60px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 2px; }
.pillar-card {
  padding: 40px 30px;
  text-align: center;
  background: var(--black2);
  border-right: 1px solid rgba(201,168,76,0.1);
  transition: background var(--transition);
}
.pillar-card:last-child { border-right: none; }
.pillar-card:hover { background: rgba(201,168,76,0.05); }
.pillar-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.4rem; color: var(--black);
}
.pillar-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); margin-bottom: 10px; }
.pillar-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── ABOUT SNAP ── */
.about-snap { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-frame {
  background: linear-gradient(135deg, var(--black3), var(--dark));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.trophy-display { text-align: center; position: relative; z-index: 1; }
.trophy-icon { font-size: 8rem; color: var(--gold); display: block; filter: drop-shadow(0 0 30px rgba(201,168,76,0.5)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.trophy-stars { font-size: 2rem; color: var(--gold); margin-top: 10px; }
.about-badge-float {
  position: absolute; top: -15px; right: -15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); font-weight: 700; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 4px;
  box-shadow: var(--shadow-gold);
}
.section-label {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  padding-left: 30px; position: relative;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 20px; height: 2px; background: var(--gold);
  transform: translateY(-50%);
}
.about-text h2 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 20px; line-height: 1.2; }
.about-text p { color: #bbb; margin-bottom: 16px; }
.about-list { margin: 24px 0 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: #ccc; font-size: 0.92rem; }
.about-list i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 50px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-item { padding: 20px; border-right: 1px solid rgba(0,0,0,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; color: var(--black); line-height: 1; }
.stat-plus { font-size: 2rem; font-weight: 900; color: var(--black); }
.stat-item p { font-size: 0.85rem; font-weight: 700; color: rgba(0,0,0,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ── CATEGORIES PREVIEW ── */
.categories-preview { background: var(--black2); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 550px; margin: 0 auto; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-bottom: 50px; }
.cat-card {
  background: var(--black3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.cat-card i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; display: block; }
.cat-card h4 { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; }
.section-cta { text-align: center; }

/* ── TIMELINE ── */
.timeline-section { background: var(--black); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 32px; top: 0; bottom: 0;
  width: 2px; background: rgba(201,168,76,0.2);
}
.tl-item { display: flex; gap: 30px; margin-bottom: 50px; position: relative; }
.tl-dot {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--black);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.1);
  z-index: 1;
}
.tl-content { padding-top: 12px; }
.tl-content h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.tl-content span { font-size: 0.82rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.tl-content p { color: var(--text-muted); font-size: 0.9rem; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 90px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.ghana-stripe-cta {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--gh-red) 33.3%, var(--gh-gold) 33.3% 66.6%, var(--gh-green) 66.6%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer { background: #050505; padding: 80px 0 0; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { margin-bottom: 14px; }
.footer-col > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.footer-col h4 { font-family: var(--font-heading); color: var(--gold); font-size: 1.05rem; margin: 20px 0px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 12px; }
.contact-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: var(--black3); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.newsletter-form { display: flex; gap: 0; margin-top: 16px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px;
  background: var(--black3); border: 1px solid rgba(201,168,76,0.2);
  border-right: none; color: var(--white);
  font-family: var(--font-body); font-size: 0.85rem;
  border-radius: 4px 0 0 4px; outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; color: var(--black);
  font-size: 1rem; cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: opacity var(--transition);
}
.newsletter-form button:hover { opacity: 0.9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    var(--black);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 14px; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.8rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ── ABOUT PAGE ── */
.about-full { background: var(--black); }
.about-full .about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.mv-card {
  background: var(--black3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 36px 28px;
}
.mv-card .mv-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--black); margin-bottom: 18px; }
.mv-card h3 { font-family: var(--font-heading); color: var(--gold); margin-bottom: 12px; }
.mv-card p { color: var(--text-muted); font-size: 0.9rem; }
.team-section { background: var(--black2); padding: 90px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 30px; }
.team-card {
  background: var(--black3); border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius); padding: 40px 24px; text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--black);
}
.team-card h4 { font-family: var(--font-heading); color: var(--white); margin-bottom: 4px; }
.team-card span { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* ── CATEGORIES PAGE ── */
.cat-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.cat-full-card {
  background: var(--black3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 40px 30px;
  transition: all var(--transition);
}
.cat-full-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.cat-full-card .cat-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--black); margin-bottom: 20px; }
.cat-full-card h3 { font-family: var(--font-heading); color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.cat-full-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.cat-full-card .cat-criteria { font-size: 0.78rem; color: var(--gold); opacity: 0.7; font-weight: 600; letter-spacing: 0.5px; }

/* ── NOMINEES PAGE ── */
.nominees-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; justify-content: center; }
.filter-btn {
  padding: 9px 22px; border-radius: 30px; border: 1px solid rgba(201,168,76,0.3);
  background: transparent; color: var(--text-muted); font-size: 0.82rem; font-family: var(--font-body);
  cursor: pointer; transition: all var(--transition); letter-spacing: 0.5px;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }
.nominees-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.nominee-card {
  background: var(--black3); border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); overflow: hidden; transition: all var(--transition);
}
.nominee-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.nominee-header {
  background: linear-gradient(135deg, var(--dark), var(--black3));
  padding: 30px; text-align: center; border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nominee-logo {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--black);
}
.nominee-header h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 4px; }
.nominee-header span { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.nominee-body { padding: 20px 24px; }
.nominee-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.nominee-tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 0.5px;
}
.nominee-years { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }
.nominee-years strong { color: var(--gold); }

/* ── GALLERY PAGE ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--black3); border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); overflow: hidden; position: relative;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.gallery-item .gallery-icon { font-size: 3rem; color: rgba(201,168,76,0.3); transition: all var(--transition); }
.gallery-item:hover .gallery-icon { color: var(--gold); transform: scale(1.1); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--gold); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--black3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
}
.ci-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--black);
}
.ci-text h4 { color: var(--gold); margin-bottom: 4px; font-size: 0.9rem; font-weight: 700; }
.ci-text p { color: var(--text-muted); font-size: 0.85rem; }
.contact-form-wrap {
  background: var(--black3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 50px 40px;
}
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--black2); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--black2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 20px;
  background: rgba(0,107,63,0.15); border: 1px solid var(--gh-green);
  border-radius: var(--radius); margin-top: 20px; color: #4caf50;
}

/* ── NOMINATE PAGE ── */
.nominate-form-wrap {
  max-width: 820px; margin: 0 auto;
  background: var(--black3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 60px 50px;
}
.step-indicator { display: flex; justify-content: center; gap: 0; margin-bottom: 50px; }
.step {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px; position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--text-muted);
  transition: all var(--transition);
}
.step.active .step-num { background: var(--gold); color: var(--black); border-color: var(--gold); }
.step-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.step.active .step-label { color: var(--gold); }
.step-line { flex: 1; height: 2px; background: rgba(201,168,76,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .about-grid, .about-full .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .mission-vision { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; width: 100%;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black2); padding: 20px; gap: 4px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; display: block; }
  .nav-container { position: relative; flex-wrap: wrap; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar-card { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nominate-form-wrap { padding: 36px 24px; }
  .contact-form-wrap { padding: 36px 24px; }
  .step-label { display: none; }
}

@media (max-width: 480px) {
  .pillars-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* ── TRAFFI.CLICK CHATBOT ISOLATION ──
   Resets ALL inherited properties so our global body/a rules
   don't bleed into the widget's light-DOM gba-* elements. */
#gba-widget-btn,
#gba-widget-btn *,
#gba-chat-box,
#gba-chat-box * {
  color: initial !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
  font-size: initial !important;
  font-weight: initial !important;
  font-style: normal !important;
  line-height: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  text-decoration: none !important;
  background-color: initial;
}
#gba-chat-box a { color: initial !important; text-decoration: underline !important; }
#gba-chat-input { color: initial !important; background: initial !important; border: initial !important; }

/* ── COAT OF ARMS INTRO OVERLAY ── */
#coa-intro {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,10,0.97);
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.9s ease;
}
#coa-intro.visible { opacity: 1; }
#coa-intro img {
  width: min(240px, 52vw);
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.55));
  animation: coaFloat 3s ease-in-out infinite;
}
#coa-intro-tagline {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: clamp(0.8rem, 2.2vw, 1.1rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  opacity: 0.85;
}
@keyframes coaFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── GRID OVERRIDES — force 3 columns for 6-item grids ── */
.grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr !important; } }

/* ── PARTNER BENEFITS ── */
.partner-benefits { display: flex; flex-wrap: wrap; gap: 0; justify-content: center; margin-top: 40px; }
.pb-item { text-align: center; padding: 20px 28px; }
.pb-item i { color: var(--gold); font-size: 1.5rem; margin-bottom: 8px; display: block; }
.pb-item span { font-size: 0.85rem; color: #ccc; }

/* ── JOIN MOVEMENT ── */
.join-movement { background: var(--black2); text-align: center; }
.join-movement h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.join-movement p { color: #bbb; max-width: 680px; margin: 0 auto; }

/* ── STEP INDICATOR — 3×2 GRID (nominate page) ── */
.step-indicator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 44px;
  padding: 24px;
  background: var(--black2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
}
.sig-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 16px 8px; text-align: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.sig-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--text-muted);
}
.sig-item span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.sig-item.active .sig-num { background: var(--gold); color: var(--black); border-color: var(--gold); box-shadow: 0 0 0 6px rgba(201,168,76,0.15); }
.sig-item.active span { color: var(--gold); font-weight: 700; }
@media (max-width: 600px) {
  .step-indicator-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── NAVBAR LOGO IMAGE ── */
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

/* ── HERO COAT OF ARMS ── */
.hero-coat-of-arms {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  opacity: 0.12; z-index: 1;
  pointer-events: none;
}
.hero-coat-of-arms img { width: 320px; height: auto; }

/* ── HERO WAVING FLAG ── */
.hero-flag-wrap {
  position: absolute; left: 5%; top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: flex-start; gap: 0;
  z-index: 2; pointer-events: none;
}
.flag-pole {
  width: 4px; height: 200px;
  background: linear-gradient(180deg, #c9a84c, #6b4a1a);
  border-radius: 2px;
}
.waving-flag {
  width: 110px; height: 75px;
  position: relative; overflow: hidden;
  border-radius: 0 3px 3px 0;
  animation: flagWave 3s ease-in-out infinite;
  transform-origin: left center;
  opacity: 0.8;
}
.flag-r, .flag-g2, .flag-gr {
  width: 100%; height: 33.33%;
}
.flag-r { background: var(--gh-red); }
.flag-g2 { background: var(--gh-gold); position: relative; }
.flag-gr { background: var(--gh-green); }
.flag-star-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem; color: #000;
  z-index: 3; pointer-events: none;
}
@keyframes flagWave {
  0%,100% { clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%); }
  25%      { clip-path: polygon(0 0, 100% 0%,  100% 100%, 0 95%); }
  50%      { clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%); }
  75%      { clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 93%); }
}

/* ── HERO SECOND TAGLINE ── */
.hero-tagline2 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-style: italic;
  color: var(--gold-light); margin-bottom: 24px;
  letter-spacing: 1px;
}

/* ── ABOUT — COAT OF ARMS FRAME ── */
.coat-arms-large { width: 280px; height: auto; margin: 0 auto; position: relative; z-index: 2; filter: drop-shadow(0 0 30px rgba(201,168,76,0.4)); }
.flag-rings { position: absolute; inset: 0; pointer-events: none; }
.ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.12);
}
.r1 { inset: 5%; }
.r2 { inset: 15%; }
.r3 { inset: 25%; }

/* ── CAT CARD DESCRIPTION ── */
.cat-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; }

/* ── VALUES SECTION ── */
.values-section { background: var(--black); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.value-card {
  background: var(--black3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 36px 24px; text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.value-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--black); margin: 0 auto 16px;
}
.value-card h4 { font-family: var(--font-heading); color: var(--gold); margin-bottom: 10px; font-size: 1rem; }
.value-card p { font-size: 0.84rem; color: var(--text-muted); }

/* ── PARTNERS SECTION ── */
.partners-section { background: var(--black2); }
.partner-types { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.partner-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 30px;
  font-size: 0.82rem; color: var(--gold);
  font-weight: 600; letter-spacing: 1px;
  transition: all var(--transition);
}
.partner-badge:hover { background: var(--gold); color: var(--black); }

/* ── FLAG DIVIDER ── */
.flag-divider { display: flex; height: 50px; }
.fd-red { flex: 1; background: var(--gh-red); }
.fd-gold {
  flex: 1; background: var(--gh-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #000;
}
.fd-green { flex: 1; background: var(--gh-green); }

/* ── CTA BAND WITH COAT OF ARMS ── */
.cta-inner { display: flex; align-items: center; justify-content: center; gap: 40px; }
.cta-coat img { width: 100px; height: auto; opacity: 0.35; flex-shrink: 0; }
.cta-text { text-align: center; }
.cta-text h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 14px; }
.cta-text p { color: var(--text-muted); font-size: 1rem; margin-bottom: 30px; }

/* ── FOOTER LOGO ── */
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 150px; width: auto; object-fit: contain; }
.footer-motto { font-style: italic; color: rgba(201,168,76,0.5); font-size: 0.8rem; margin-top: 14px; }
.footer-flag-bar { display: flex; height: 4px; }
.footer-flag-bar .ffb-r { flex: 1; background: var(--gh-red); }
.footer-flag-bar .ffb-g { flex: 1; background: var(--gh-gold); }
.footer-flag-bar .ffb-gr { flex: 1; background: var(--gh-green); }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 992px) {
  .hero-coat-of-arms { display: none; }
  .hero-flag-wrap { display: none; }
  .cta-coat { display: none; }
  .cta-inner { flex-direction: column; }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .logo-img { height: 36px; }
}
