/* ============================================================
   WORLD GM AWARDS — GLOBAL DESIGN SYSTEM
   Executive luxury palette: deep executive navy (#0c1635) primary
   structure, premium gold (#c9a34d) accent — buttons, highlights, CTAs,
   with champagne (#e8d8b5) for soft luxury surfaces.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0c1635;        /* executive navy */
  --primary-light: #16224a;
  --gold: #c9a34d;           /* premium gold — buttons, highlights, CTAs */
  --gold-dark: #a8842f;
  --gold-light: #e1c074;
  --gold-pale: #faf5e9;
  --white: #FFFFFF;
  --navy: #0c1635;
  --navy-light: #16224a;
  --champagne: #e8d8b5;
  --ocean: #1a2550;
  --cyan: #c9a34d;
  --violet: #16224a;
  --silver: #8d96a5;
  --beige: #f6f4ef;
  --text-dark: #0c1635;
  --text-body: #2c3140;
  --text-muted: #6b7280;
  --bg-light: #f7f8fa;
  --bg-section: #eef0f5;
  --border: rgba(201,163,77,0.20);
  --border-strong: rgba(201,163,77,0.50);
  --shadow-sm: 0 2px 8px rgba(12,22,53,0.08);
  --shadow: 0 6px 24px rgba(12,22,53,0.12);
  --shadow-lg: 0 16px 48px rgba(12,22,53,0.20);
  --shadow-gold: 0 8px 28px rgba(201,163,77,0.32);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; object-position: top center; }
.award-card-img, .blog-card-img, .region-card-img, .winner-card-img, .content-split-img img { object-fit: cover; object-position: top center; }
.page-hero-bg, .hero-slide { background-position: top center; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Manrope', sans-serif; color: var(--primary); }
p { line-height: 1.7; color: var(--text-body); }
.lead { font-size: 1.15rem; color: var(--text-body); line-height: 1.75; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.container { width: 92%; max-width: 1380px; margin: 0 auto; padding: 0 16px; }
.container-narrow { max-width: 900px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 90px 0; }
.section-alt { background: var(--bg-light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }
/* Readability: white-background benefit cards sit on the dark navy section — give them a translucent dark surface so their (white) text stays legible */
.section-navy .benefit-item { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); }
.section-navy .benefit-item:hover { background: rgba(255,255,255,0.09); border-color: var(--gold); box-shadow: none; }
.section-navy .benefit-text h3, .section-navy .benefit-text h4 { color: #fff; }
.section-navy .benefit-text p { color: rgba(255,255,255,0.82); }
.section-navy .spec-list li { color: rgba(255,255,255,0.85); }
/* Same readability fixes for the other dark surfaces (navy gradient sections) */
.section-primary .spec-list li, .section-gold-grad .spec-list li { color: rgba(255,255,255,0.85); }
.section-primary .benefit-item, .section-gold-grad .benefit-item { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); }
.section-primary .benefit-text h3, .section-primary .benefit-text h4, .section-gold-grad .benefit-text h3, .section-gold-grad .benefit-text h4 { color: #fff; }
.section-primary .benefit-text p, .section-gold-grad .benefit-text p { color: rgba(255,255,255,0.82); }
.section-primary { background: var(--primary); }
.section-primary h1, .section-primary h2, .section-primary h3 { color: var(--white); }
.section-primary p { color: rgba(255,255,255,0.85); }
.section-gold-grad { background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.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-4 { gap: 16px; } .gap-6 { gap: 24px; }
.text-center { text-align: center; }
.mt-2{margin-top:8px;} .mt-4{margin-top:16px;} .mt-6{margin-top:24px;}
.mb-4{margin-bottom:16px;} .mb-6{margin-bottom:24px;} .mb-8{margin-bottom:32px;}

.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 640px; }
.section-header.center p { margin: 0 auto; }
.gold-rule { width: 56px; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); margin: 14px 0; }
.gold-rule.center { margin: 14px auto; }

/* NAVIGATION */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12,22,53,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,163,77,0.15);
  transition: all var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.brand-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-logo-text span:first-child {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold); letter-spacing: 0.02em;
}
.brand-logo-text span:last-child {
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-main a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  text-transform: none; color: rgba(255,255,255,0.85);
  padding: 6px 10px; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
}
.nav-main a:hover { color: var(--gold); background: rgba(201,163,77,0.1); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.6rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; font-family: 'Manrope', sans-serif;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  padding: 9px 18px; transition: all var(--transition);
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,163,77,0.08); }
.nav-cta {
  font-family: 'Manrope', sans-serif !important; font-size: 0.68rem !important;
  font-weight: 700 !important; letter-spacing: 0.02em !important;
  text-transform: none !important;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)) !important;
  color: var(--navy) !important; padding: 8px 16px !important; border-radius: 2px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 20px; overflow-y: auto;
  z-index: 999; flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.82);
  padding: 14px 16px; border-bottom: 1px solid rgba(201,163,77,0.1);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  margin-top: 16px; background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--navy); text-align: center; padding: 14px; border-radius: var(--radius);
  font-weight: 700; letter-spacing: 0.1em;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 2px; cursor: pointer;
  transition: all var(--transition); border: none; text-decoration: none; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,163,77,0.45); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--gold-pale); color: var(--primary); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--primary); color: var(--white); }
.btn-navy:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.65rem; }
.btn-lg { padding: 18px 38px; font-size: 0.78rem; }
.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* HERO */
.hero { position: relative; height: 92vh; min-height: 600px; max-height: 900px; overflow: hidden; margin-top: 68px; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,rgba(12,22,53,0.82) 0%,rgba(6,10,28,0.7) 40%,rgba(6,10,28,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-text { max-width: 760px; }
.hero-text .eyebrow { color: var(--gold-light); margin-bottom: 16px; display: block; font-size: 0.78rem; }
.hero-text h1 { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-text p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 28px; max-width: 580px; }
.hero-indicators { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 28px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: var(--gold); width: 40px; }

/* PAGE HERO */
.page-hero { position: relative; height: 340px; overflow: hidden; margin-top: 68px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(12,22,53,0.88),rgba(6,10,28,0.75)); }
.page-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.page-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 10px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,0.85); max-width: 580px; font-size: 1rem; }
.region-hero { height: 380px; }

/* BREADCRUMB */
.breadcrumb { padding: 12px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-family: 'Manrope', sans-serif; color: var(--text-muted); }
.breadcrumb nav a { color: var(--primary); }
.breadcrumb nav a:hover { color: var(--gold); }

/* STATS BAR */
.stats-bar {
  background: linear-gradient(135deg,var(--navy),var(--primary));
  padding: 28px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stats-grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; padding: 8px 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(201,163,77,0.3);
}
.stat-number { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-family: 'Manrope', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; display: block; }

/* CARDS */
.award-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--border); cursor: pointer;
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.award-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s ease; }
.award-card:hover .award-card-img { transform: scale(1.05); }
.award-card-body { padding: 18px; }
.award-card-icon {
  width: 34px; height: 34px; background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; margin-bottom: 0; margin-right: 10px; vertical-align: middle; flex-shrink: 0;
}
.award-card h3 { display: inline; font-size: 1.05rem; margin-bottom: 0; color: var(--primary); vertical-align: middle; }
.award-card-body > p { display: block; margin-top: 8px; }
.award-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.award-card-link {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Manrope', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  margin-top: 12px; transition: gap var(--transition);
}
.award-card:hover .award-card-link { gap: 10px; }

.winner-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition); }
.winner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.winner-card-img { width: 100%; height: 220px; object-fit: cover; cursor: pointer; }
.winner-card-body { padding: 18px; }
.winner-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy);
  font-family: 'Manrope', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}
.winner-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.winner-card .location { font-family: 'Manrope', sans-serif; font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* CTA SECTIONS */
.cta-banner { padding: 56px 0; position: relative; overflow: hidden; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-text .eyebrow { display: block; margin-bottom: 8px; }
.cta-banner-text h2 { margin-bottom: 10px; }
.cta-banner-text p { color: rgba(255,255,255,0.82); max-width: 520px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-center { text-align: center; padding: 64px 0; }
.cta-center .eyebrow { display: block; margin-bottom: 10px; }
.cta-center h2 { margin-bottom: 14px; }
.cta-center p { max-width: 560px; margin: 0 auto 28px; color: var(--text-muted); }
.cta-image-section { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; }
.cta-image-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(12,22,53,0.9),rgba(6,10,28,0.8)); }
.cta-image-content { position: relative; z-index: 2; text-align: center; padding: 60px 0; width: 100%; }
.cta-image-content .eyebrow { color: var(--gold-light); display: block; margin-bottom: 12px; }
.cta-image-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-image-content p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 28px; }

/* TESTIMONIALS */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative; transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.testimonial-card::before {
  content: '\201C'; font-family: 'Fraunces', serif; font-size: 4rem;
  color: var(--gold); opacity: 0.5; position: absolute; top: 8px; left: 20px; line-height: 1;
}
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); margin-bottom: 18px; padding-top: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-info h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--primary); }
.testimonial-info span { font-size: 0.72rem; color: var(--text-muted); font-family: 'Manrope', sans-serif; }
.star-rating { color: var(--gold); font-size: 0.8rem; margin-bottom: 8px; }

/* GALLERY — tight mosaic collage (zero gaps, full aspect-ratio preservation) */
.gallery-grid {
  column-count: 5;
  column-gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  border: 0;
  outline: 0;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  vertical-align: bottom;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: saturate(0.92) brightness(0.96);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.05);
}
.gallery-item.tall, .gallery-item.wide { /* legacy spans — no-op in masonry */ }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,22,53,0.55) 0%, rgba(201,163,77,0.15) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-item::after {
  content: '↗';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1280px) { .gallery-grid { column-count: 4; } }
@media (max-width: 900px)  { .gallery-grid { column-count: 3; } }
@media (max-width: 600px)  { .gallery-grid { column-count: 2; } }

/* VIDEOS */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card-info { padding: 16px; }
.video-card-info .eyebrow { margin-bottom: 4px; font-size: 0.62rem; }
.video-card-info h4 { color: var(--white); font-size: 0.95rem; font-family: 'Manrope', sans-serif; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--white); text-align: left; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--primary); transition: all var(--transition); gap: 12px;
}
.faq-question:hover { background: var(--bg-light); color: var(--gold); }
.faq-item.open .faq-question { background: var(--gold-pale); color: var(--primary); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem; transition: all var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 16px 22px 20px; font-size: 0.88rem; color: var(--text-body); line-height: 1.75; border-top: 1px solid var(--border); background: var(--bg-light); }

/* BLOG */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 0.68rem; font-weight: 500; color: var(--text-muted); margin-bottom: 10px; }
.blog-category { background: var(--gold-pale); color: var(--gold-dark); padding: 2px 8px; border-radius: 2px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.6rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.blog-card .read-more { margin-top: 14px; font-family: 'Manrope', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap var(--transition); }
.blog-card:hover .read-more { gap: 9px; }

/* REGION/COUNTRY CARDS */
.region-card { position: relative; height: 260px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.region-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.region-card:hover .region-card-img { transform: scale(1.08); }
.region-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(12,22,53,0.85) 0%,rgba(12,22,53,0.2) 60%); transition: background var(--transition); }
.region-card:hover .region-card-overlay { background: linear-gradient(0deg,rgba(12,22,53,0.95) 0%,rgba(12,22,53,0.3) 60%); }
.region-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.region-card-content .eyebrow { font-size: 0.6rem; margin-bottom: 4px; }
.region-card-content h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.region-card-content span { font-family: 'Manrope', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* BENEFITS */
.benefit-item { display: flex; gap: 18px; padding: 20px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all var(--transition); }
.benefit-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.benefit-icon { width: 50px; height: 50px; background: linear-gradient(135deg,rgba(201,163,77,0.15),rgba(201,163,77,0.08)); border: 1px solid var(--border-strong); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.benefit-text h4 { margin-bottom: 5px; font-size: 1rem; }
.benefit-text p { font-size: 0.85rem; color: var(--text-muted); }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process-step { text-align: center; padding: 28px 20px; position: relative; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -14px; top: 38px; color: var(--gold); font-size: 1.2rem; }
.step-number { width: 58px; height: 58px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* CONTACT */
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.contact-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--navy); }
.contact-details h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-details a { color: var(--gold); font-size: 0.88rem; }
.contact-details a:hover { color: var(--gold-dark); }
.contact-details p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; height: 380px; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(201,163,77,0.15); }
.footer-brand p { font-size: 0.83rem; line-height: 1.75; margin: 14px 0 18px; color: rgba(255,255,255,0.6); }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.social-btn { width: 50px; height: 50px; background: rgba(201,163,77,0.14); border: 1px solid rgba(201,163,77,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: rgba(255,255,255,0.85); transition: all var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.footer-col h5 { font-family: 'Manrope', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-newsletter p { font-size: 0.83rem; margin-bottom: 12px; color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(201,163,77,0.2); border-right: none; border-radius: var(--radius) 0 0 var(--radius); color: var(--white); font-family: 'Manrope', sans-serif; font-size: 0.82rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { padding: 10px 16px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); border: none; border-radius: 0 var(--radius) var(--radius) 0; font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 700; cursor: pointer; }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--gold); }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; transition: all var(--transition); font-size: 1.5rem; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* MISC */
.gold-text { color: var(--gold); }
.divider { height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 40px 0; opacity: 0.4; }
.tag { display: inline-flex; align-items: center; gap: 5px; font-family: 'Manrope', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.tag-gold { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid var(--border-strong); }
.tag-navy { background: var(--primary); color: var(--white); }
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }
.content-split-text .eyebrow { display: block; margin-bottom: 10px; }
.content-split-text h2 { margin-bottom: 14px; }
.content-split-text p { margin-bottom: 14px; color: var(--text-muted); }
.content-split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-split-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.content-split-img::before { content: ''; position: absolute; top: -10px; left: -10px; width: 60px; height: 60px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); z-index: 1; }
.content-split-img::after { content: ''; position: absolute; bottom: -10px; right: -10px; width: 60px; height: 60px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); z-index: 1; }
.lazy { opacity: 0; transition: opacity 0.5s ease; }
.lazy.loaded { opacity: 1; }
.highlight-card { background: linear-gradient(135deg,var(--gold-pale),var(--champagne)); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 28px; }
.category-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 200px 1fr; box-shadow: var(--shadow-sm); transition: all var(--transition); margin-bottom: 16px; }
.category-full-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.category-full-card img { width: 200px; height: 160px; object-fit: cover; }
.category-full-card-body { padding: 22px; }
.category-full-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.category-full-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.subcategory-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.subcategory-tag { background: var(--bg-light); border: 1px solid var(--border); color: var(--text-muted); font-family: 'Manrope', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 2px; }

/* ============================================================
   PARTICIPATE SECTION
   ============================================================ */
.participate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.participate-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.participate-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.participate-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.pb-icon {
  font-size: 1.3rem;
  display: inline;
  vertical-align: middle;
  margin-right: 7px;
  line-height: 1;
}
.participate-box h4 {
  display: inline;
  vertical-align: middle;
  font-size: 0.92rem;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}
.participate-box p {
  display: block;
  margin-top: 7px;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.participate-box { text-align: left; }

/* ============================================================
   TESTIMONIAL VIDEOS (4-in-a-row)
   ============================================================ */
.video-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.video-4-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  transition: all var(--transition);
}
.video-4-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-4-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-4-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-4-info {
  padding: 14px 16px;
}
.video-4-info .eyebrow { font-size: 0.58rem; margin-bottom: 4px; display: block; }
.video-4-info h4 {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   HIGHLIGHTS VIDEO (70/30)
   ============================================================ */
.highlights-split {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 24px;
  align-items: stretch;
}
.highlights-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.highlights-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.highlights-video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.highlights-widget {
  background: linear-gradient(160deg, var(--primary) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(201,163,77,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.highlights-widget-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.highlights-widget-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hw-stat {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,163,77,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hw-stat:last-of-type { border-bottom: none; }
.hw-value {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.hw-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-align: right;
  line-height: 1.4;
}
.hw-cta {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
}
.hw-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================================
   AWARD CATEGORIES PILLS
   ============================================================ */
.cat-group { margin-bottom: 28px; }
.cat-group-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 7px 13px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.cat-pill:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--primary);
  transform: translateY(-1px);
}
.cat-pill-icon { font-size: 0.85rem; }

/* ============================================================
   MAJOR AWARDS SECTION
   ============================================================ */
.major-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.major-award-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto auto;
  gap: 4px 14px;
  align-items: start;
}
.major-award-box::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.major-award-box:hover::before { transform: scaleX(1); }
.major-award-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.major-award-logo {
  width: 48px; height: 48px;
  grid-column: 1; grid-row: 1;
  align-self: center;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 2px solid rgba(201,163,77,0.3);
  box-shadow: 0 4px 16px rgba(12,22,53,0.2);
}
.major-award-box h4 {
  grid-column: 2; grid-row: 1;
  align-self: center;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary);
  line-height: 1.25;
}
.major-award-box p {
  grid-column: 1 / -1; grid-row: 2;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  margin-top: 4px;
}
.major-award-box .mab-link {
  grid-column: 1 / -1; grid-row: 3;
}
.major-award-box .mab-link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.major-award-box:hover .mab-link { gap: 8px; }

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1100px) {
  .video-4-grid { grid-template-columns: repeat(2, 1fr); }
  .major-awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .highlights-split { grid-template-columns: 1fr; }
  .highlights-widget { padding: 24px 20px; }
}
@media (max-width: 768px) {
  .participate-grid { grid-template-columns: repeat(2, 1fr); }
  .video-4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .participate-grid { grid-template-columns: 1fr; }
  .video-4-grid { grid-template-columns: 1fr; }
  .major-awards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WINNERS LOGO MARQUEE (Few of Our Winners)
   ============================================================ */
.winners-logos-section { overflow: hidden; }
.logos-marquee {
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logos-marquee + .logos-marquee { margin-top: 14px; }
.logos-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scroll-logos-left 55s linear infinite;
}
.logos-track-reverse {
  animation: scroll-logos-right 65s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logo-item {
  flex-shrink: 0;
  width: 210px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(7, 44, 87, 0.04);
  filter: grayscale(45%);
  position: relative;
}
.logo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.logo-item:hover {
  border-color: var(--gold);
  filter: grayscale(0);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(7, 44, 87, 0.12);
}
.logo-item:hover::before { opacity: 1; }
.logo-item img {
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@keyframes scroll-logos-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-logos-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 768px) {
  .logo-item { width: 170px; height: 95px; padding: 14px 18px; }
  .logo-item img { max-height: 62px; }
  .logos-track { gap: 18px; animation-duration: 40s; }
  .logos-track-reverse { animation-duration: 48s; }
}
@media (max-width: 480px) {
  .logo-item { width: 140px; height: 80px; padding: 12px 16px; }
  .logo-item img { max-height: 50px; }
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-in-delay { animation: fadeInUp 0.6s ease 0.2s forwards; opacity: 0; }
.animate-in-delay-2 { animation: fadeInUp 0.6s ease 0.4s forwards; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: span 3; }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
}
/* Narrow-desktop band: keep the full nav from overflowing before the hamburger takes over */
@media (min-width: 1025px) and (max-width: 1366px) {
  .header-inner { padding: 0 10px; }
  .nav-main { gap: 0; }
  .nav-main a { padding: 6px 7px; font-size: 0.72rem; letter-spacing: 0.02em; }
  .nav-cta { padding: 8px 11px !important; letter-spacing: 0.05em !important; }
}
@media (max-width: 1024px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .hero { height: 75vh; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .content-split { gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .section-lg { padding: 56px 0; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; }
  .content-split.reverse { direction: ltr; }
  .content-split-img img { height: 280px; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .category-full-card { grid-template-columns: 1fr; }
  .category-full-card img { width: 100%; height: 180px; }
  .stat-item:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .hero { height: 85vh; }
  .page-hero { height: 260px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:first-child { grid-column: span 1; }
  .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ============================================================
   TAB SYSTEM (About / Fee pages)
   ============================================================ */
/* Full-width sticky tab bar (About / Fee pages) */
.tab-bar {
  position: sticky; top: 68px; z-index: 500;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.tab-bar .tab-nav {
  width: 92%; max-width: 1380px; margin: 0 auto;
  border-bottom: none; margin-bottom: 0;
  justify-content: center;
}
.tab-nav {
  display: flex; flex-wrap: wrap; gap: 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
/* Give tab content breathing room below the sticky bar */
.tab-panes { padding-top: 36px; }
.tab-pane > *:first-child { margin-top: 0; }
.tab-pane { line-height: 1.85; }
.tab-pane p { margin-bottom: 16px; }
.tab-pane h2, .tab-pane h3 { margin-bottom: 16px; margin-top: 8px; }
.tab-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 14px 20px; border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: all var(--transition); background: transparent;
}
.tab-btn:hover { color: var(--primary); background: var(--bg-light); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: var(--gold-pale); }
.tab-pane { display: none; animation: fadeIn 0.4s ease; }
.tab-pane.active { display: block; }

/* ============================================================
   TEXT NAME-WALL (nominees & winners — text marquee variant)
   ============================================================ */
.name-item {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 26px;
  font-family: 'Fraunces', sans-serif;
  font-size: 0.98rem; font-weight: 600; color: var(--primary);
  white-space: nowrap; box-shadow: 0 2px 8px rgba(12,22,53,0.04);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.name-item::before {
  content: '⬢'; color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
}
.name-item:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(12,22,53,0.12); background: var(--gold-pale);
}

/* ============================================================
   TECH GRID-GLOW DECOR (hero / sector accents)
   ============================================================ */
.tech-grid-bg {
  background-image:
    linear-gradient(rgba(201,163,77,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,163,77,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,163,77,0.14), rgba(124,92,252,0.10));
  border: 1px solid var(--border-strong); font-size: 1.5rem; margin-bottom: 14px;
}
.spec-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.spec-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.92rem; color: var(--text-body); line-height: 1.6;
}
.spec-list li::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold-pale);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem;
}
.prose p { margin-bottom: 16px; color: var(--text-body); }
.prose h2 { margin: 32px 0 14px; }
.prose h3 { margin: 24px 0 10px; }
.prose ul.spec-list { margin-bottom: 16px; }

/* ============================================================
   AWARD NOMINATION FORM (embedded Golden Tree iframe)
   ============================================================ */
.award-nomination-form-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--bg-light);
}
.award-nomination-form-section iframe {
  width: 100%;
  max-width: 100%;
  min-height: 1800px;
  border: 0;
  display: block;
}

/* Notice / merit callout box */
.notice-box { background: var(--gold-pale); border: 1px solid var(--border-strong); border-left: 4px solid var(--gold); border-radius: var(--radius-lg); padding: 22px 28px; }
.notice-box p { color: var(--text-body); margin: 0; }
.notice-box strong { color: var(--primary); }

/* ============================================================
   BLOG POST LAYOUT (article + right sidebar widget)
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 40px; align-items: start; }
.blog-article { min-width: 0; }
.blog-article h2 { margin: 32px 0 14px; }
.blog-article h3 { margin: 24px 0 10px; }
.blog-article p { margin-bottom: 16px; line-height: 1.85; }
.blog-article ul.post-list { list-style: disc; padding-left: 22px; margin: 0 0 18px; }
.blog-article ul.post-list li { margin-bottom: 8px; line-height: 1.7; }
.blog-article img { border-radius: var(--radius-lg); margin: 8px 0 22px; box-shadow: var(--shadow-sm); }
.blog-article blockquote { border-left: 4px solid var(--gold); background: var(--gold-pale); padding: 16px 22px; margin: 0 0 22px; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-body); }
.post-hero-meta { color: var(--text-muted); font-family: 'Manrope',sans-serif; font-size: 0.8rem; letter-spacing: 0.04em; margin-bottom: 8px; }
.blog-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.sidebar-widget h4 { font-family: 'Fraunces',serif; color: var(--primary); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-widget ul li { margin-bottom: 9px; }
.sidebar-widget ul li a { color: var(--text-body); font-size: 0.9rem; transition: color var(--transition); }
.sidebar-widget ul li a:hover { color: var(--gold); }
.sidebar-widget.widget-cta { background: var(--primary); border-color: var(--primary); text-align: center; }
.sidebar-widget.widget-cta h4 { color: #fff; border-color: rgba(255,255,255,0.18); }
.sidebar-widget.widget-cta p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 14px; }
.sidebar-widget.widget-whatsapp { background: #0c3b27; border-color: #0c3b27; text-align:center; }
.sidebar-widget.widget-whatsapp h4 { color:#fff; border-color: rgba(255,255,255,0.18);} 
.sidebar-widget.widget-whatsapp p { color: rgba(255,255,255,0.85); font-size:0.88rem; margin-bottom:12px; }
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
