/* ===================================================================   🇯🇲 DRIVE SAFE JAMAICA — FAQ PAGE (LIGHT THEME ONLY)   Unified with About Page — No Dark Mode   =================================================================== */

/* === 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;
}

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

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

.faq-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;
}

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

.faq-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;
}

.faq-hero-badge i {
  font-size: 1.4rem;
}

.faq-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;
}

.faq-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;
}

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

.faq-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;
}

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

.faq-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;
}

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

.faq-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--card-border);
  margin: 0 28px;
}

/* Decorative Circles */

.faq-hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.faq-hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 155, 58, 0.05);
  filter: blur(40px);
}

.circle-1 {
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
}

.circle-2 {
  bottom: 15%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(254, 209, 0, 0.05);
}

.circle-3 {
  top: 50%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(0, 155, 58, 0.08);
}

/* ===================================================================   📚 FAQ TITLE SECTION   =================================================================== */

.faq-title-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.faq-title-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.faq-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--section-title);
  margin-bottom: 16px;
}

.faq-main-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================================   📋 FAQ MAIN CONTENT   =================================================================== */

.faq-container {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 40px 24px !important;
  position: relative !important;
  z-index: 1 !important;
}

.faq-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s var(--ease);
}

.faq-section:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: var(--ja-green);
}

.faq-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--section-title);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-section h2 i {
  color: var(--ja-green);
  font-size: 1.4rem;
}

.faq-intro {
  margin-bottom: 28px;
  padding: 0 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-intro strong {
  color: var(--ja-green);
}

/* Details Accordion */

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item summary {
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0;
  transition: color 0.3s ease;
}

.faq-item summary:hover {
  color: var(--ja-green);
}

.faq-q {
  flex: 1;
}

.faq-item summary i {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-a {
  margin-top: 16px;
  padding-left: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-a p, .faq-a li {
  margin-bottom: 12px;
}

.faq-a ol, .faq-a ul {
  padding-left: 24px;
}

.faq-a li {
  list-style-type: disc;
}

.faq-a ol li {
  list-style-type: decimal;
}

.faq-a a {
  color: var(--ja-green);
  text-decoration: underline;
  font-weight: 600;
}

.faq-a a:hover {
  color: var(--ja-gold);
}

.note {
  background: var(--highlight-bg);
  padding: 12px 16px;
  border-left: 4px solid var(--ja-green);
  font-size: 0.95rem;
  margin-top: 16px;
  color: var(--text-secondary);
  font-weight: 600;
}

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

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

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

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

@media (max-width: 768px) {
  .faq-section {
    padding: 24px 16px;
  }
}

@media (max-width: 768px) {
  .faq-intro {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .faq-item {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .faq-a {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .circle-1 {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 576px) {
  .circle-2 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .circle-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .faq-hero-title {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
  }
}

@media (max-width: 576px) {
  .faq-main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
}

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

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

