/* ============================================
   MW ESCAPES — Brand Stylesheet
   Colors pulled from the MW Escapes logo
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #141115;
  --pink: #ee0b66;
  --pink-light: #ff5fa2;
  --pink-dark: #b5074b;
  --white: #ffffff;
  --off-white: #faf6f7;
  --grey: #6b6470;
  --grey-light: #ece7e9;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.2;
}

p { margin: 0 0 16px; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 12px;
}

.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.section-title.center { text-align: center; }

.section-sub {
  color: var(--grey);
  max-width: 640px;
  font-size: 1.02rem;
}

.section-sub.center { margin: 0 auto 48px; text-align: center; }

section { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(238, 11, 102, 0.35);
}

.btn-primary:hover { box-shadow: 0 14px 30px rgba(238, 11, 102, 0.45); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

.btn-whatsapp {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp svg { fill: #25D366; }

.btn-small { padding: 10px 20px; font-size: 0.85rem; }

.btn-full { width: 100%; padding: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 24px;
}

.brand-logo {
  height: 92px;
  width: auto;
  margin: -14px 0;
}

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.main-nav a:hover { color: var(--pink-light); }

.nav-cta { margin-left: 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #1a0611 0%, var(--black) 55%);
  color: var(--white);
  padding: 130px 0 90px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 11, 102, 0.35), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 780px; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--white);
}

.hero h1 span { color: var(--pink-light); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--pink-light);
}

.hero-stats span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Deals ---------- */
.deals { background: var(--off-white); }

.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.deal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.16);
}

.deal-media {
  height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
}

.deal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
}

.deal-media--maldives { background: linear-gradient(135deg, #0891b2, #0e7490 40%, #083344); }
.deal-media--santorini { background: linear-gradient(135deg, #3b82f6, #1e3a8a 45%, #172554); }
.deal-media--bali { background: linear-gradient(135deg, #16a34a, #15803d 45%, #052e16); }
.deal-media--dubai { background: linear-gradient(135deg, #d97706, #b45309 45%, #451a03); }

.deal-tag {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.deal-body { padding: 22px 22px 26px; }

.deal-body h3 { margin-bottom: 4px; font-size: 1.25rem; }

.deal-meta {
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.deal-desc { font-size: 0.92rem; color: var(--grey); margin-bottom: 18px; }

.deal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
  flex-wrap: wrap;
}

.deal-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.deal-price span { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: var(--grey); display: block; text-transform: uppercase; }
.deal-price small { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: var(--grey); }

.deals-note {
  text-align: center;
  color: var(--grey);
  font-size: 0.88rem;
  margin: 40px 0 0;
}

/* ---------- How It Works ---------- */
.how-it-works { background: var(--white); }

.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.flow-line {
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--pink) 0, var(--pink) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.flow-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--black);
  color: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: 3px solid var(--white);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.flow-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.flow-step p { font-size: 0.86rem; color: var(--grey); margin-bottom: 0; }

/* ---------- About ---------- */
.about { background: var(--off-white); }

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--black) 0%, var(--pink-dark) 130%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--black);
  border-left: 3px solid var(--pink);
  padding-left: 18px;
  margin: 24px 0 28px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--black);
  color: var(--white);
}

.contact .section-sub { color: rgba(255,255,255,0.7); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-list { list-style: none; padding: 0; margin: 28px 0 32px; }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(238, 11, 102, 0.15);
  color: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-list a { color: rgba(255,255,255,0.85); }
.contact-list a:hover { color: var(--pink-light); }

.contact-whatsapp { margin-top: 8px; }

.contact-form {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  margin: 14px 0 6px;
}

.contact-form label:first-of-type { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--grey-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--black);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.contact-form button { margin-top: 24px; }

.form-note {
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
  margin: 14px 0 0;
}

.hidden-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
}

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

.brand-logo--footer { height: 64px; margin: -10px 0; }

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

.footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-nav a:hover { color: var(--pink-light); }

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social:hover { background: var(--pink); color: var(--white); }

.footer-copy {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 72px 0; }

  .flow { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .flow-line { display: none; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photo-frame { max-width: 320px; margin: 0 auto; }

  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .brand-logo { height: 68px; margin: -8px 0; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .hero { padding-top: 100px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 28px; }

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