/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   LAYOUT
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 750px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #f7f7f7;
}

.section-dark {
  background: #111;
  color: #fff;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  background: #111;
  color: #fff;
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: #d4af37;
}

.main-nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #d4af37;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/arc-hero.png") center/cover no-repeat;
  color: #fff;
  padding: 140px 0;
}

.hero-content {
  position: relative;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-subtext {
  margin-bottom: 25px;
  max-width: 640px;
  font-size: 1.02rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 10px;
}

.hero-buttons {
  margin-bottom: 10px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  margin-right: 10px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #d4af37;
  color: #000;
  font-weight: 600;
}

.btn-primary:hover {
  background: #c19d2f;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* =========================
   TRUST BAR
========================= */
.trust-bar {
  margin-top: 30px;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-bar span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 3px;
}

/* =========================
   TYPOGRAPHY
========================= */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

h3 {
  margin-bottom: 10px;
  line-height: 1.25;
}

h4 {
  margin-bottom: 6px;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

/* =========================
   WHY TRAINING (CHCL)
========================= */
.why-training-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-training-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-training-logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
}

.why-training-copy {
  max-width: 750px;
}

/* =========================
   COURSE GRID
========================= */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.course-card {
  background: #fff;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* =========================
   BENEFITS GRID
========================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.benefit-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 6px;
}

.section-dark .section-label {
  color: #d4af37;
}

/* =========================
   BOOKING SECTION
========================= */
.booking-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.booking-copy h2 {
  max-width: 650px;
}

.booking-copy p {
  max-width: 640px;
}

.booking-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 640px;
}

.booking-point {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-left: 4px solid #d4af37;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.booking-kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.booking-intro {
  margin-bottom: 20px;
}

.booking-options {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.booking-option {
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 16px;
  background: #fafafa;
}

.booking-option p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #444;
}

.booking-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin: 8px 0 14px 0;
  padding: 14px 20px;
  font-size: 1rem;
}

.booking-link {
  display: inline-block;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  margin-bottom: 0;
  transition: color 0.2s ease;
}

.booking-link:hover {
  color: #d4af37;
}

/* =========================
   CONTACT / PARTNERSHIP
========================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid #eee;
}

/* =========================
   RED DOT PAGE HERO OVERRIDE
========================= */
.red-dot-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/reddot1.jpg") center/cover no-repeat;
}

/* =========================
   RED DOT COMPARISON
========================= */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.comparison-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.comparison-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #666;
  background: #f1f1f1;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

.comparison-tag-gold {
  background: #d4af37;
  color: #111;
}

.comparison-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.comparison-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.comparison-subhead {
  margin-top: 16px;
  margin-bottom: 10px;
}

.comparison-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.comparison-list li {
  margin-bottom: 10px;
}

/* =========================
   GEAR / WHAT TO BRING
========================= */
.gear-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  margin-top: 30px;
}

.gear-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
}

.gear-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.gear-list li {
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #111;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-wrap p:last-child {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .course-grid,
  .benefit-grid,
  .booking-wrap,
  .contact-wrap,
  .comparison-grid,
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .why-training-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-training-logo {
    margin-bottom: 1rem;
  }

  .why-training-logo img {
    width: 180px;
  }

  .booking-points {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 24px;
  }

  .hero {
    padding: 110px 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .main-nav a {
    margin: 0;
  }
}

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

  .container {
    width: 92%;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-subtext {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .trust-bar {
    gap: 8px;
  }

  .comparison-card,
  .gear-card,
  .booking-box,
  .course-card,
  .contact-card,
  .benefit-card {
    padding: 20px;
  }
}