/* ==========================================================================
   MeythUs Club — Brand-Aligned Creative CSS
   Fonts:  Outfit (Headings / Display) & Plus Jakarta Sans (Body / UI)
   Colors: Primary Orange #e94210 | Charcoal #333333 | Gold #f0b409
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --orange: #e94210;
  --orange-hover: #c73a0e;
  --orange-light: rgba(233, 66, 16, 0.08);
  --orange-glow: rgba(233, 66, 16, 0.35);
  --charcoal: #333333;
  --deep-dark: #1a1a1a;
  --gold: #f0b409;
  --gold-hover: #d9a008;
  --gold-light: rgba(240, 180, 9, 0.12);
  --gold-glow: rgba(240, 180, 9, 0.35);
  --cream: #faf8f5;
  --white: #ffffff;
  --body-text: #4a4a4a;
  --border: #e8e4df;
  --heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Global ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--orange); color: var(--white); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ── Typography Hierarchy ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  color: var(--charcoal);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233, 66, 16, 0.4);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(233, 66, 16, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 30px;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,180,9,0.1);
}
.btn-lg { padding: 18px 44px; font-size: 18px; }

.btn-cta-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-cta-white:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 22px 0;
}
#navbar.is-scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: flex; align-items: center; z-index: 1002; }

/* Navbar Logo Swap */
.nav-logo-white { display: block; height: 42px; width: auto; }
.nav-logo-dark { display: none; height: 42px; width: auto; }

#navbar.is-scrolled .nav-logo-white { display: none; }
#navbar.is-scrolled .nav-logo-dark { display: block; }

.desktop-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
#navbar.is-scrolled .nav-link { color: var(--charcoal); }
.nav-link:hover, .nav-link.is-active { color: var(--gold) !important; }
#navbar.is-scrolled .nav-link:hover,
#navbar.is-scrolled .nav-link.is-active { color: var(--orange) !important; }
#navbar.is-scrolled .nav-link:hover::after,
#navbar.is-scrolled .nav-link.is-active::after { background: var(--orange); }

.btn-join {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 700;
}
.btn-join:hover { background: var(--orange-hover) !important; transform: translateY(-2px); }
.btn-join::after { display: none; }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  z-index: 1002; width: 32px; height: 24px; position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  position: absolute; left: 0;
  transition: all 0.3s ease;
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; top: 8px; }
#navbar.is-scrolled .hamburger,
#navbar.is-scrolled .hamburger::before,
#navbar.is-scrolled .hamburger::after { background: var(--charcoal); }
.mobile-toggle.is-active .hamburger { background: transparent !important; }
.mobile-toggle.is-active .hamburger::before {
  transform: rotate(45deg); top: 0; background: var(--white) !important;
}
.mobile-toggle.is-active .hamburger::after {
  transform: rotate(-45deg); top: 0; background: var(--white) !important;
}

/* Mobile drawer — CHARCOAL bg */
.mobile-drawer {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--charcoal);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer-header { margin-bottom: 36px; }
.mobile-drawer-logo { height: 48px; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav-link {
  color: var(--white);
  font-family: var(--heading);
  font-size: 24px; font-weight: 700;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link.btn-join {
  background: var(--orange); padding: 14px 36px; margin-top: 16px;
  font-family: var(--body);
}

/* ══════════════════════════════════════════
   HERO — CINEMATIC BRAND EXPERIENCE
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--deep-dark);
}
.hero-bg-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  opacity: 0.38;
}
.hero-bg-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(233,66,16,0.30) 45%, rgba(20,20,20,0.88) 100%);
}

/* Authentic MeythUs Watermark */
.hero-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  max-width: 50vw;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(240, 180, 9, 0.4));
  animation: float 8s ease-in-out infinite;
}
.hero-watermark-img { width: 100%; height: auto; }

/* Ambient shapes */
.hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -100px; left: -100px;
  animation: floatShape 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 250px; height: 250px;
  background: var(--orange);
  top: 40%; left: 50%;
  animation: floatShape 25s ease-in-out infinite;
}

.hero-container {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
  gap: 60px;
}
.hero-content { max-width: 640px; flex: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(233,66,16,0.15);
  border: 1px solid rgba(233,66,16,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--orange);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 8px;
  background: rgba(233,66,16,0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-cta-group { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero Visual Feature Cards */
.hero-visual { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 440px;
}
.hero-visual-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 24px 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-visual-card:nth-child(odd) { animation: float 6s ease-in-out infinite; }
.hero-visual-card:nth-child(even) { animation: float 6s ease-in-out 2s infinite; }
.hero-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233,66,16,0.4);
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}

.card-icon-box {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(233,66,16,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.card-icon-box--gold { background: rgba(240,180,9,0.18); }
.feature-svg-icon { width: 28px; height: 28px; }

.hero-visual-card h4 {
  color: var(--white);
  font-size: 16px; font-weight: 700;
  margin-bottom: 4px;
}
.hero-visual-card p {
  color: rgba(255,255,255,0.55);
  font-size: 13px; line-height: 1.45;
}

/* ══════════════════════════════════════════
   STATS STRIP — BOLD ORANGE BACKGROUND 🔥
   ══════════════════════════════════════════ */
.stats-strip {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.06) 0%, transparent 50%, rgba(255,255,255,0.06) 100%);
}
.stats-container {
  display: flex; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.stat-item {
  flex: 1; text-align: center;
  padding: 38px 24px;
  min-width: 200px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: ''; position: absolute;
  left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.25);
}
.stat-number {
  font-size: 44px; font-weight: 900;
  color: var(--white);
  font-family: var(--heading);
  display: block;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.92);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 4px; display: block;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   MOTTO — CHARCOAL BACKGROUND ⬛
   ══════════════════════════════════════════ */
.motto-section {
  background: var(--charcoal);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.motto-section::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.motto-mark-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(240,180,9,0.15);
  margin-bottom: 20px;
  border: 1px solid rgba(240,180,9,0.3);
}
.motto-mark-icon { width: 30px; height: 30px; filter: drop-shadow(0 2px 8px rgba(240,180,9,0.3)); }

.motto-label {
  text-transform: uppercase; letter-spacing: 5px;
  color: var(--gold);
  font-size: 13px; font-weight: 700;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.motto-quote {
  color: var(--white);
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--heading);
  letter-spacing: -0.02em;
  border: none; padding: 0; font-style: normal;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════════ */
.section { padding: 100px 0; }
.bg-light { background: var(--cream); }
.bg-dark { background: var(--charcoal); }
.bg-dark .section-title { color: var(--white); }

/* ── GOLD BACKGROUND 🟡 ── */
.bg-gold {
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.bg-gold::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%, rgba(0,0,0,0.06) 100%);
}
.bg-gold .section-title { color: var(--charcoal); position: relative; z-index: 1; }
.bg-gold .mission-body { position: relative; z-index: 1; }
.bg-gold .mission-body p { color: rgba(51,51,51,0.88); }
.bg-gold .mission-highlight {
  color: var(--charcoal) !important;
  border-left-color: var(--charcoal);
  font-weight: 700;
}

/* ── CHARCOAL BACKGROUND ── */
.bg-charcoal { background: var(--charcoal); }

/* ── ORANGE BACKGROUND ── */
.bg-orange { background: var(--orange); }

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -0.025em;
}

.section-subtitle {
  text-align: center;
  color: var(--body-text);
  font-size: 17px;
  margin-bottom: 52px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   ABOUT — SPLIT LAYOUT
   ══════════════════════════════════════════ */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-container .content p {
  font-size: 16px; line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 16px;
}
.split-container .content .section-title::after {
  content: '';
  display: block;
  width: 64px; height: 4px;
  background: linear-gradient(to right, var(--orange), var(--gold));
  border-radius: 2px;
  margin-top: 16px;
}
.image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.image-wrapper::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 18px;
  border: 2px solid rgba(233,66,16,0.2);
  pointer-events: none;
}
.rounded-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rounded-image:hover { transform: scale(1.04); }
.split-container.reverse { direction: rtl; }
.split-container.reverse > * { direction: ltr; }

/* ══════════════════════════════════════════
   MISSION STATEMENT (on gold bg)
   ══════════════════════════════════════════ */
.mission-body { max-width: 800px; margin: 0 auto; }
.mission-body p { font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.mission-highlight {
  font-weight: 700; color: var(--charcoal);
  font-size: 18px; font-style: italic;
  border-left: 4px solid var(--charcoal);
  padding-left: 20px; margin-top: 28px;
}

/* ══════════════════════════════════════════
   VISION & MISSION — CHARCOAL BG
   ══════════════════════════════════════════ */
.vision-mission { padding: 100px 0; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vision-card, .mission-card {
  padding: 48px 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
}
.vision-card:hover, .mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(233,66,16,0.15);
  border-color: rgba(233,66,16,0.35);
}
.card-accent-bar {
  width: 60px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 24px;
}
.card-accent-bar--gold { background: var(--gold); }

.vision-card .section-title,
.mission-card .section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  color: var(--white);
}
.vision-card p, .mission-card p {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════
   DIVIDER BAND — ORANGE
   ══════════════════════════════════════════ */
.divider-band {
  padding: 26px 0;
  text-align: center;
}
.divider-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.divider-item {
  color: var(--white);
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.divider-bullet {
  color: var(--gold);
  font-size: 10px;
  opacity: 0.9;
}

/* ══════════════════════════════════════════
   WHAT WE DO — WITH BESPOKE SVG ICONS
   ══════════════════════════════════════════ */
.what-we-do .section-title { margin-bottom: 12px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px 30px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(233,66,16,0.12);
}

/* FEATURED CARD — ORANGE BG 🔥 */
.card--featured {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}
.card--featured::before { background: var(--gold); }
.card--featured .card-number { color: rgba(255,255,255,0.15) !important; }
.card--featured .card-title { color: var(--white) !important; }
.card--featured .card-text { color: rgba(255,255,255,0.88) !important; }
.card--featured .card-icon-wrap {
  background: rgba(255,255,255,0.2) !important;
}
.card--featured:hover {
  box-shadow: 0 20px 50px rgba(233,66,16,0.3);
}

/* FEATURED CARD — GOLD BG 🟡 */
.card--featured-gold {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.card--featured-gold::before { background: var(--orange); }
.card--featured-gold .card-number { color: rgba(51,51,51,0.1) !important; }
.card--featured-gold .card-title { color: var(--charcoal) !important; }
.card--featured-gold .card-text { color: rgba(51,51,51,0.85) !important; }
.card--featured-gold .card-icon-wrap {
  background: rgba(51,51,51,0.12) !important;
}
.card--featured-gold:hover {
  box-shadow: 0 20px 50px rgba(240,180,9,0.3);
}

.card-number {
  font-size: 52px; font-weight: 900;
  color: var(--orange-light);
  font-family: var(--heading);
  line-height: 1;
  margin-bottom: 12px;
  pointer-events: none;
}

/* Realistic SVG Icon Container */
.card-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}
.card:hover .card-icon-wrap {
  transform: scale(1.08);
}
.service-svg {
  width: 40px; height: 40px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}

.card-title {
  font-size: 19px; font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.card-text { font-size: 15px; color: var(--body-text); line-height: 1.7; }

/* ══════════════════════════════════════════
   IMAGE BAND — FULL WIDTH
   ══════════════════════════════════════════ */
.image-band {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.image-band-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-band-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(233,66,16,0.72) 0%, rgba(30,30,30,0.78) 100%);
  display: flex; align-items: center; justify-content: center;
}
.image-band-content {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.image-band-logo-mark {
  width: 50px; height: 50px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.image-band-text {
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.image-band-text span {
  color: var(--gold);
  display: block;
}

/* ══════════════════════════════════════════
   GUIDELINES ACCORDION — ON CHARCOAL
   ══════════════════════════════════════════ */
.guidelines-section .section-title { margin-bottom: 8px; }
.guidelines-intro { font-size: 16px; margin-bottom: 48px; }

.accordion { max-width: 860px; margin: 0 auto; }
.accordion-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.accordion-item.is-active {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(233,66,16,0.1);
  background: rgba(255,255,255,0.08);
}
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--heading);
  font-size: 16px; font-weight: 700;
  color: var(--white);
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: rgba(255,255,255,0.04); }
.accordion-number {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 10px;
  background: rgba(233,66,16,0.15);
  color: var(--orange);
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  transition: all 0.3s;
}
.accordion-item.is-active .accordion-number {
  background: var(--orange);
  color: var(--white);
}
.accordion-label { flex: 1; }
.accordion-chevron {
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}
.accordion-item.is-active .accordion-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}
.accordion-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 24px;
}
.accordion-item.is-active .accordion-panel {
  max-height: 3000px;
  padding: 0 24px 28px;
}
.accordion-panel p {
  font-size: 15px; line-height: 1.8;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.72);
}
.accordion-panel h4 {
  font-family: var(--heading);
  font-size: 16px;
  color: var(--gold);
  margin-top: 20px; margin-bottom: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.accordion-panel ul, .accordion-panel ol {
  padding-left: 20px; margin-bottom: 14px;
  list-style: disc;
}
.accordion-panel ol { list-style: decimal; }
.accordion-panel li {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 4px;
}
.accordion-panel dl { margin-bottom: 14px; }
.accordion-panel dt {
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  margin-top: 14px; margin-bottom: 4px;
}
.accordion-panel dd {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-left: 0; margin-bottom: 8px;
}
.accordion-panel strong { color: var(--white); }
.principles-list { color: var(--orange) !important; }
.principles-list strong { color: var(--orange) !important; }
.topics-list { color: rgba(255,255,255,0.85) !important; font-weight: 500; }
.fee-amount { font-size: 28px !important; font-weight: 900; color: var(--gold) !important; font-family: var(--heading); }
.name-tag-example {
  display: inline-block;
  background: rgba(233,66,16,0.15);
  color: var(--orange) !important;
  letter-spacing: 3px; font-weight: 700;
  padding: 10px 24px; border-radius: 8px;
}

/* ══════════════════════════════════════════
   CTA SECTION — BOLD ORANGE
   ══════════════════════════════════════════ */
.cta-section {
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 40%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-container {
  max-width: 660px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-section .section-title { color: var(--white); margin-bottom: 20px; }
.cta-text {
  color: rgba(255,255,255,0.92);
  font-size: 18px; line-height: 1.7;
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════
   FOOTER — DEEP DARK
   ══════════════════════════════════════════ */
.footer {
  background: var(--deep-dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}
.footer-container {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; text-align: center;
}
.footer-logo { height: 48px; }
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-family: var(--heading);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-links {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.footer-link {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}
.copyright {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; width: 100%;
  font-size: 14px;
}

/* ══════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(10px, -10px) scale(1.02); }
}

/* ══════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════ */
@media (max-width: 1200px) { .container { padding: 0 32px; } }

@media (max-width: 992px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { gap: 24px; }
  .split-container { gap: 40px; }
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 120px; padding-bottom: 60px;
  }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta-group { justify-content: center; }
  .hero-visual { display: none; }
  .image-band { height: 320px; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: block; }
  .section { padding: 64px 0; }
  .split-container { grid-template-columns: 1fr; }
  .split-container.reverse { direction: ltr; }
  .grid-2 { grid-template-columns: 1fr; }
  .vision-card, .mission-card { padding: 32px 24px; }
  .stat-item { min-width: 50%; }
  .stat-item + .stat-item::before { display: none; }
  .image-band { height: 260px; }
  .image-band-text { font-size: clamp(1.6rem, 6vw, 2.6rem); }
}

@media (max-width: 576px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .stat-item { min-width: 100%; }
  .btn-lg { padding: 14px 32px; font-size: 16px; width: 100%; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; }
  .divider-item { font-size: 13px; letter-spacing: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
