/* ============================================
   SOULMATE — Main Stylesheet
   Colours:
     Primary Red   : #E03A00
     Dark Red      : #1a0500
     Orange        : #FF8C42
     Pink          : #D4537E
     Light Pink    : #FF9EBF
   Font: System sans-serif (swap for DM Sans
         or Helvetica Neue in Wix/Netlify)
============================================ */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a0500;
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: #1a0500;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.logo span {
  color: #FF6B9D;
  margin-right: 4px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #FF8C42;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  background: #D4537E;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #b83d66;
}

/* ---------- HERO ---------- */
.hero {
  padding: 72px 32px 64px;
  text-align: center;
  background: linear-gradient(135deg, #1a0500 0%, #6b1500 35%, #b02a00 60%, #D4537E 100%);
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(212, 83, 126, 0.2);
  color: #FFB3D1;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-weight: 500;
  border: 1px solid rgba(212, 83, 126, 0.4);
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  max-width: 580px;
  margin: 0 auto 16px;
}

.hero h1 em {
  color: #FF9EBF;
  font-style: normal;
}

.hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #E03A00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- STATS BAR ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #2a0800;
}

.stat {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 107, 26, 0.2);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #FF8C42;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

/* ---------- SECTIONS (shared) ---------- */
.section {
  padding: 56px 32px;
  border-bottom: 1px solid #f5d0c0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b02a00;
  margin-bottom: 8px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a0500;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: #7a3320;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ---------- CITIES ---------- */
.cities-section {
  background: #fff8f5;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-pill {
  background: #fff;
  border: 1px solid #f5b89a;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  color: #7a2200;
  display: flex;
  align-items: center;
  gap: 6px;
}

.city-pill svg {
  width: 14px;
  height: 14px;
  stroke: #E03A00;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.city-more {
  background: rgba(212, 83, 126, 0.08);
  border-color: #F4C0D1;
  color: #72243E;
  font-weight: 500;
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
  background: #fff;
}

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

.step {
  border-radius: 12px;
  padding: 22px;
}

.step:nth-child(1) { background: #FFF0F5; border: 1px solid #F4C0D1; }
.step:nth-child(2) { background: #FFE8DC; border: 1px solid #f0a07a; }
.step:nth-child(3) { background: #FFD9C8; border: 1px solid #eb8855; }
.step:nth-child(4) { background: #FFCAB5; border: 1px solid #e56e30; }

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step:nth-child(1) .step-num { background: #D4537E; }
.step:nth-child(2) .step-num { background: #E05A1A; }
.step:nth-child(3) .step-num { background: #C43200; }
.step:nth-child(4) .step-num { background: #8B1A00; }

.step h3 {
  font-size: 15px;
  font-weight: 600;
  color: #3d0f00;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: #7a3320;
  line-height: 1.6;
}

/* ---------- PACKAGES ---------- */
.pkg-section {
  background: #fff5f0;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.pkg {
  background: #fff;
  border: 1px solid #f5c0a8;
  border-radius: 12px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

/* coloured top strip */
.pkg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}

.pkg:nth-child(1)::before { background: #FF8C42; }
.pkg:nth-child(2)::before { background: linear-gradient(90deg, #D4537E, #FF8C42); }
.pkg:nth-child(3)::before { background: #8B1A00; }

.pkg.featured {
  border: 2px solid #D4537E;
}

.pkg-badge {
  display: inline-block;
  font-size: 11px;
  background: #FBEAF0;
  color: #72243E;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pkg h3 {
  font-size: 16px;
  font-weight: 600;
  color: #3d0f00;
  margin-bottom: 4px;
}

.pkg .price {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 3px;
}

.pkg:nth-child(1) .price { color: #b02a00; }
.pkg:nth-child(2) .price { color: #E03A00; }
.pkg:nth-child(3) .price { color: #8B1A00; }

.pkg .price-sub {
  font-size: 13px;
  color: #a05030;
  margin-bottom: 14px;
}

.pkg ul {
  list-style: none;
  font-size: 13px;
  color: #7a3320;
  line-height: 2;
}

.pkg ul li::before {
  content: "✓ ";
  color: #E03A00;
  font-weight: 700;
}

.pkg-btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  color: #fff;
  transition: opacity 0.2s;
}

.pkg-btn:hover { opacity: 0.88; }

.pkg:nth-child(1) .pkg-btn { background: #FF8C42; }
.pkg:nth-child(2) .pkg-btn { background: #D4537E; }
.pkg:nth-child(3) .pkg-btn { background: #8B1A00; }

/* ---------- CONTACT FORM ---------- */
.form-section {
  background: linear-gradient(160deg, #f58062 0%, #d41172 60%, #6b1500 100%);
}

.form-section .section-label { color: #FF8C42; }
.form-section  #form-label {font-size: 28px; color: #1ef4b4;}
.form-section .section-title { color: #fff; }
.form-section .section-sub   { color: rgba(255, 200, 160, 0.75); }

.form-inner {
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.25);
  border-radius: 12px;
  padding: 28px;
  max-width: 680px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 200, 160, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-size: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: #fff;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #FF8C42;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 200, 160, 0.35);
}

.form-group select option {
  background: #6b1500;
  color: #fff;
}

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

.form-note {
  font-size: 12px;
  color: rgba(255, 200, 160, 0.4);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.submit-btn {
  margin-top: 14px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  background: #D4537E;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #b83d66;
}

/* ---------- SUCCESS MESSAGE ---------- */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: #fff;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FF9EBF;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: rgba(255, 200, 160, 0.8);
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 24px 32px;
  background: #0f0200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 180, 120, 0.4);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 180, 120, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 180, 120, 0.8);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .nav-links       { display: none; }
  .stats           { grid-template-columns: repeat(2, 1fr); }
  .form-grid       { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero h1         { font-size: 26px; }
  .section         { padding: 40px 20px; }
  .nav             { padding: 12px 20px; }
  .footer          { padding: 20px; flex-direction: column; align-items: flex-start; }
}
