/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   Utility
=========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  background-color: #f5a623;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background-color: #d4891a;
  transform: translateY(-2px);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background-color: transparent;
  color: #2b5cad;
  border: 2px solid #2b5cad;
}

.btn-outline:hover {
  background-color: #2b5cad;
  color: #ffffff;
  transform: translateY(-2px);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #2b5cad;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #f5a623;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ===========================
   Navbar
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2b5cad;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f5a623;
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5a623;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1a1a1a;
  line-height: 1;
}

/* ===========================
   Hero
=========================== */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f5 60%, #efefed 100%);
  padding: 6rem 0;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #2b5cad;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero h1 br {
  display: block;
}

.tagline {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ===========================
   Why Choose Us
=========================== */
.why-us {
  padding: 5rem 0;
  background-color: #ffffff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.18);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #2b5cad;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

/* ===========================
   Page Hero (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f5 60%, #efefed 100%);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2b5cad;
  margin-bottom: 0.6rem;
}

.page-hero p {
  font-size: 1rem;
  color: #666;
}

/* ===========================
   Packages
=========================== */
.packages {
  padding: 5rem 0 4rem;
  background-color: #ffffff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.package-card {
  grid-column: span 2;
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Center the last two cards (row 2) in the 6-column grid */
.package-card:nth-child(4) {
  grid-column: 2 / 4;
}

.package-card:nth-child(5) {
  grid-column: 4 / 6;
}

.package-card:hover {
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.18);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: #f5a623;
  background-color: #fffdf7;
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f5a623;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.pkg-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b5cad;
}

.pkg-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #f5a623;
  line-height: 1.1;
}

.pkg-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

.pkg-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
}

.pkg-note {
  font-size: 0.8rem;
  color: #f5a623;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Netlify honeypot — hidden from humans, bots fill it and get silently rejected */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.package-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
}

/* GDL card includes list */
.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.pkg-includes li {
  font-size: 0.85rem;
  color: #444;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}

.pkg-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f5a623;
  font-weight: 700;
}

/* Ghost link button (modal trigger) */
.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2b5cad;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.btn-link:hover {
  color: #f5a623;
}

/* ===========================
   GDL Modal
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  padding: 1.5rem;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0.2rem 0.5rem;
}

.modal-close:hover {
  color: #333;
}

.modal-box h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b5cad;
  margin-bottom: 0.3rem;
}

.modal-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 1.5rem;
}

.modal-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.modal-includes li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.5;
}

.check {
  color: #f5a623;
  font-weight: 700;
  flex-shrink: 0;
}

.modal-payment-note {
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid #ebebeb;
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.modal-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #888;
}

.modal-best {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: #eef3fb;
  border-left: 3px solid #2b5cad;
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

.modal-box h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 0.6rem;
}

.modal-includes + h4 {
  margin-top: 0;
}

.modal-not-included .cross {
  color: #aaa;
  font-weight: 700;
  flex-shrink: 0;
}

.modal-requirements .req {
  color: #2b5cad;
  font-weight: 700;
  flex-shrink: 0;
}

.modal-box {
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card,
  .package-card:nth-child(4),
  .package-card:nth-child(5) {
    grid-column: span 1;
  }
}

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

/* ===========================
   Contact
=========================== */
.contact-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: stretch;
}

/* Contact Details — dark card */
.contact-details {
  background-color: #1a1a2e;
  border-radius: 10px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}

.contact-details h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-intro {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f5a623;
  margin-bottom: 0.25rem;
}

.contact-list a,
.contact-list span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.contact-list a {
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: #f5a623;
}

/* Contact Form */
.contact-form-wrap {
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 2.25rem 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2b5cad;
}

.optional {
  font-weight: 400;
  color: #aaa;
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23aaa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.btn-submit {
  align-self: flex-start;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
  }
}

/* ===========================
   About — Bio
=========================== */
.about-bio {
  padding: 5rem 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #f0f0f0;
  border: 2px dashed #ddd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

.about-text-col h2 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f5a623;
  margin-bottom: 0.4rem;
}

.instructor-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2b5cad;
  margin-bottom: 1.5rem;
}

.about-text-col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text-col p:last-child {
  margin-bottom: 0;
}

/* ===========================
   About — Mission
=========================== */
.mission {
  padding: 4.5rem 0;
  background-color: #f7f7f5;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.mission-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mission-inner p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* ===========================
   About — CTA
=========================== */
.about-cta {
  padding: 5rem 0;
  text-align: center;
  background-color: #ffffff;
}

.about-cta p {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.4rem;
}

.about-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #2b5cad;
  margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-placeholder {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ===========================
   Footer
=========================== */
.footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-name {
  font-weight: 600;
  color: #ffffff;
}

.footer-phone {
  color: #f5a623;
}

.footer-email a {
  color: #f5a623;
  transition: color 0.2s ease;
}

.footer-email a:hover {
  color: #ffffff;
}

.footer-copy {
  color: #888;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .navbar {
    position: relative;
  }

  .hero {
    padding: 4rem 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}
