/* ========================================================================
   🇯🇲 DRIVE SAFE JAMAICA — GLOBAL THEME VARIABLES
   Unified for site + chatbot (no duplication)
   ======================================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f0fdf4;
  --bg-tertiary: #f8faf9;
  --bg-card: #ffffff;
  --text-primary: #1a2e1a;
  --text-secondary: #2d4a2d;
  --text-muted: #5a7a5a;
  --text-light: #ffffff;
  --dark: #1a1a1a;
  --light: #ffffff;
  --gray: #f5f5f5;
  --text-gray: #5a7a5a;
  --ja-green: #009B3A;
  --ja-green-light: #00C853;
  --ja-gold: #FED100;
  --ja-gold-dark: #D4A017;
  --ja-black: #1a1a1a;
  --gradient-gold: linear-gradient(135deg, #FED100 0%, #FFA500 100%);
  --gradient-green: linear-gradient(135deg, #009B3A 0%, #00C853 100%);
  --gradient-hero: linear-gradient(135deg, #009B3A 0%, #FED100 100%);
  --gradient-jamaica: linear-gradient(135deg, #009B3A 0%, #FED100 50%, #009B3A 100%);
  --value-gradient: linear-gradient(135deg, #1a2e1a 0%, #009B3A 50%, #1a2e1a 100%);
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(0, 155, 58, 0.2);
  --card-shadow: 0 4px 20px rgba(0, 155, 58, 0.08);
  --card-shadow-hover: 0 12px 40px rgba(0, 155, 58, 0.15);
  --icon-bg: linear-gradient(135deg, rgba(0, 155, 58, 0.1), rgba(254, 209, 0, 0.1));
  --accent-glow: rgba(254, 209, 0, 0.3);
  --glow-primary: rgba(0, 155, 58, 0.3);
  --glow-secondary: rgba(254, 209, 0, 0.3);
  --button-text: #1a1a1a;
  --nav-height: 72px;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-border: rgba(0, 155, 58, 0.2);
  --nav-glow: rgba(254, 209, 0, 0.15);
  --nav-text: #1a2e1a;
  --nav-text-muted: #5a7a5a;
  --nav-accent: #009B3A;
  --nav-accent-dark: #007A2E;
  --shadow-lg: 0 25px 50px -12px rgba(0, 155, 58, 0.15);
  --shadow-glow: 0 0 40px rgba(254, 209, 0, 0.3);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --nav-transition: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --drawer-width: 320px;
  --drawer-bg: linear-gradient(180deg, #ffffff, #f0fdf4);
  --scroll-top: 0;
  --chat-bg: var(--bg-primary);
  --chat-header-bg: var(--bg-secondary);
  --chat-border: var(--card-border);
  --chat-text: var(--text-primary);
  --chat-text-muted: var(--text-muted);
  --chat-accent: var(--ja-green);
  --chat-gold: var(--ja-gold);
  --chat-user-text: var(--ja-green);
  --chat-input-bg: var(--bg-tertiary);
  --chat-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================================================
   🇯🇲 DRIVE SAFE JAMAICA — ABOUT PAGE (LIGHT THEME ONLY)
   Zero dark mode. Pure Jamaican green/gold/white aesthetic.
   =================================================================== */

/* === CORE VARIABLES (LIGHT ONLY) === */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f0fdf4;
  --bg-tertiary: #f8faf9;
  --hero-bg: linear-gradient(135deg, #d4f1e0 0%, #fff9d6 50%, #d4f1e0 100%);
  --text-primary: #1a2e1a;
  --text-secondary: #2d4a2d;
  --text-muted: #5a7a5a;
  --ja-green: #009B3A;
  --ja-gold: #FED100;
  --ja-black: #1a1a1a;
  --card-bg: #ffffff;
  --card-border: #d4edda;
  --card-shadow: 0 2px 8px rgba(0, 155, 58, 0.08);
  --card-shadow-hover: 0 12px 32px rgba(0, 155, 58, 0.15);
  --grad-jamaica: linear-gradient(135deg, #009B3A 0%, #FED100 50%, #009B3A 100%);
  --grad-hero: linear-gradient(135deg, #009B3A 0%, #FED100 100%);
  --section-title: #0a3d1a;
  --icon-bg: #e8f5e9;
  --highlight-bg: #fff9d6;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================================================================
   🎯 GLOBAL RESET & CONTAINER
   =================================================================== */

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}



/* ===================================================================
   🇯🇲 HERO SECTION
   =================================================================== */

.about-hero-section {
  background: var(--hero-bg);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(254, 209, 0, 0.03) 60px, rgba(254, 209, 0, 0.03) 62px), repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(0, 155, 58, 0.03) 60px, rgba(0, 155, 58, 0.03) 62px);
  pointer-events: none;
  z-index: 0;
}

.about-hero-content {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(254, 209, 0, 0.03) 60px, rgba(254, 209, 0, 0.03) 62px), repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(0, 155, 58, 0.03) 60px, rgba(0, 155, 58, 0.03) 62px);
  pointer-events: none;
  z-index: 0;
}

@keyframes patternShift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(60px);
  }
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s var(--ease) both;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--card-bg);
  border: 2px solid var(--ja-green);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ja-green);
  margin-bottom: 28px;
  box-shadow: var(--card-shadow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-hero-badge::before {
  content: '🇯🇲';
  margin-right: 4px;
}

.about-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--section-title);
  margin-bottom: 24px;
}

.about-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.about-stat-item {
  text-align: center;
  padding: 16px 24px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  min-width: 140px;
}

.about-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--ja-gold);
}

.about-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================================================================
   📖 MISSION SECTION
   =================================================================== */

.mission-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.mission-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mission-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--grad-jamaica);
  border-radius: 2px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ja-green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--icon-bg);
  border-radius: 50px;
}

.section-label::before {
  content: '●';
  color: var(--ja-gold);
  margin-right: 8px;
}

.mission-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 24px;
}

.mission-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===================================================================
   ✨ WHAT WE DO SECTION
   =================================================================== */

.what-we-do-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 72px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-jamaica);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--ja-green);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--icon-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.feature-icon i {
  font-size: 26px;
  color: var(--ja-green);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--grad-hero);
  transform: scale(1.1) rotate(-8deg);
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--section-title);
  margin-bottom: 12px;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================================
   💎 VALUES SECTION
   =================================================================== */

.values-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s var(--ease);
  box-shadow: var(--card-shadow);
  grid-column: span 4;
}

.value-card.large {
  grid-column: span 12;
  background: var(--hero-bg);
  padding: 64px;
}

.value-card.large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--grad-jamaica);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.value-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ja-green);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--icon-bg);
  border-radius: 50px;
}

.value-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 16px;
}

.value-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--icon-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.value-icon i {
  font-size: 22px;
  color: var(--ja-green);
}

.value-card:hover .value-icon {
  background: var(--grad-hero);
  transform: rotate(-8deg) scale(1.1);
}

.value-card:hover .value-icon i {
  color: #fff;
}

.value-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--section-title);
  margin-bottom: 10px;
}

.value-description {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .value-card {
    grid-column: span 6;
  }
}

@media (max-width: 992px) {
  .value-card.large {
    grid-column: span 12;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .value-card {
    grid-column: span 12;
  }
}

/* ===================================================================
   🛡️ SAFETY SECTION
   =================================================================== */

.safety-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.safety-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 20px;
}

.safety-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.safety-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.safety-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.safety-feature:hover {
  border-color: var(--ja-green);
  transform: translateX(4px);
}

.safety-feature i {
  color: var(--ja-green);
  font-size: 20px;
}

.safety-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.safety-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #FED100);
}

.safety-icon {
  width: 64px;
  height: 64px;
  background: #fee2e2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.safety-icon i {
  font-size: 28px;
  color: #ef4444;
}

.safety-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--section-title);
  margin-bottom: 24px;
}

.distraction-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.distraction-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.distraction-list li:hover {
  padding-left: 8px;
  color: var(--text-primary);
}

.distraction-list li:last-child {
  border-bottom: none;
}

.distraction-list li i {
  color: #ef4444;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

@media (max-width: 992px) {
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===================================================================
   🎓 EDUCATION SECTION
   =================================================================== */

.education-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.education-card {
  background: var(--hero-bg);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.education-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(254, 209, 0, 0.05) 40px, rgba(254, 209, 0, 0.05) 42px);
  pointer-events: none;
}

.education-icon {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: var(--card-shadow);
  border: 3px solid var(--ja-gold);
}

.education-icon i {
  font-size: 36px;
  color: var(--ja-green);
}

.education-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--section-title);
  margin-bottom: 16px;
}

.education-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.education-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 20px;
}

.education-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.education-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ja-green);
  text-decoration: none;
  padding: 12px 24px;
  background: var(--icon-bg);
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.education-cta:hover {
  gap: 14px;
  border-color: var(--ja-green);
  background: var(--card-bg);
}

.education-cta i {
  transition: transform 0.3s ease;
}

.education-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .education-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===================================================================
   📚 GUIDE SECTION
   =================================================================== */

.guide-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.guide-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  position: relative;
}

.guide-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ja-green) 0%, var(--ja-green) 33%, var(--ja-gold) 33%, var(--ja-gold) 66%, var(--ja-black) 66%, var(--ja-black) 100%);
  border-radius: 24px 24px 0 0;
}

.guide-badge {
  width: 80px;
  height: 80px;
  background: var(--highlight-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 3px solid var(--ja-gold);
}

.guide-badge i {
  font-size: 36px;
  color: var(--ja-gold);
}

.guide-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 20px;
}

.guide-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.guide-text strong {
  color: var(--ja-green);
}

.guide-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.guide-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--icon-bg);
  border-radius: 50px;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.guide-feature:hover {
  border-color: var(--ja-green);
  transform: translateY(-2px);
}

.guide-feature i {
  color: var(--ja-green);
}

.guide-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--grad-hero);
  color: #000;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(254, 209, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.guide-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.guide-cta:hover::before {
  left: 100%;
}

.guide-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(254, 209, 0, 0.5);
}

.guide-cta i {
  transition: transform 0.3s ease;
}

.guide-cta:hover i {
  transform: translateX(4px);
}

/* ===================================================================
   🚀 CTA SECTION
   =================================================================== */

.cta-section {
  padding: 120px 0;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(0, 155, 58, 0.05) 80px, rgba(0, 155, 58, 0.05) 82px), repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(254, 209, 0, 0.05) 80px, rgba(254, 209, 0, 0.05) 82px);
  pointer-events: none;
}

.cta-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-size: 1.05rem;
}

.cta-buttons .btn-primary {
  background: var(--grad-hero);
  color: #000;
  box-shadow: 0 4px 20px rgba(254, 209, 0, 0.3);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(254, 209, 0, 0.5);
}

.cta-buttons .btn-outline {
  background: var(--card-bg);
  color: var(--section-title);
  border-color: var(--card-border);
}

.cta-buttons .btn-outline:hover {
  border-color: var(--ja-green);
  color: var(--ja-green);
  transform: translateY(-3px);
}

.cta-buttons .btn i {
  transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================================
   🎬 ANIMATIONS
   =================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================================
   📱 RESPONSIVE
   =================================================================== */

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .stat-item {
    min-width: 120px;
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .mission-section, .what-we-do-section, .values-section, .safety-section, .education-section, .guide-section, .cta-section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .guide-content {
    padding: 48px 24px;
  }
}