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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a2e4a;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; line-height: 1.2; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: #e09415; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #1a2e4a;
  border: 2px solid #1a2e4a;
}
.btn-outline:hover { background: #1a2e4a; color: #fff; transform: translateY(-1px); }

.btn-large { width: 100%; padding: 18px; font-size: 1.1rem; }

/* =====================
   NAV
   ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a2e4a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: #f5a623;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #e09415; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  list-style: none;
  flex-direction: column;
  background: #1a2e4a;
  padding: 0 24px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu li a {
  display: block;
  color: rgba(255,255,255,0.9);
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, #1a2e4a 0%, #243d61 100%);
  color: #fff;
  padding: 96px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.hero-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
  text-align: left;
}
.hero-bullets li {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.hero-bullets li::first-letter { color: #f5a623; }

/* =====================
   PAIN POINT
   ===================== */
.pain {
  background: #f8f9fa;
  padding: 80px 0;
}

.pain-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.pain-text { flex: 1; }
.pain-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}
.pain-text p {
  color: #4a5568;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.pain-stat {
  flex-shrink: 0;
  text-align: center;
  background: #1a2e4a;
  color: #fff;
  border-radius: 16px;
  padding: 40px 50px;
}
.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: #f5a623;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  max-width: 120px;
}

@media (max-width: 700px) {
  .pain-inner { flex-direction: column; }
  .pain-stat { width: 100%; }
}

/* =====================
   HOW IT WORKS
   ===================== */
.how {
  padding: 90px 0;
  background: #fff;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #4a5568;
  font-size: 1.05rem;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #f5a623;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  color: #4a5568;
  font-size: 0.95rem;
}

/* =====================
   PACKAGES
   ===================== */
.packages {
  background: #f8f9fa;
  padding: 90px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(26,46,74,0.1); transform: translateY(-2px); }

.card-popular {
  border-color: #f5a623;
  box-shadow: 0 8px 32px rgba(245,166,35,0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a2e4a;
  line-height: 1;
  margin-bottom: 4px;
}

.sign-count {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 24px;
}

.card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: #4a5568;
}
.card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.card ul li::before { content: "✓ "; color: #f5a623; font-weight: 700; }

.addon-box {
  background: #fff;
  border: 2px solid #1a2e4a;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.addon-box strong { color: #1a2e4a; white-space: nowrap; }
.addon-box span { color: #4a5568; }

@media (max-width: 500px) {
  .addon-box { flex-direction: column; gap: 6px; }
}

.custom-note, .deadline-note {
  background: #fff;
  border-left: 4px solid #f5a623;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 12px;
}
.custom-note a { color: #f5a623; font-weight: 600; }

/* =====================
   BOOK / CONTACT
   ===================== */
.book {
  background: #fff;
  padding: 90px 0;
}

.booking-form {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.hidden { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2e4a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #1a2e4a;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #f5a623; }

.form-group textarea { resize: vertical; }

.contact-direct {
  text-align: center;
  margin-top: 40px;
  color: #4a5568;
  font-size: 0.95rem;
}
.contact-direct p { margin-bottom: 6px; }
.contact-direct a { color: #f5a623; font-weight: 600; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #1a2e4a;
  color: rgba(255,255,255,0.8);
  padding: 40px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand strong {
  color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}
.footer-brand span { font-size: 0.85rem; }

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
