/* Wedding Venue Eksotis — destination-teal palette */
:root {
  --teal: #1a9e8f;
  --teal-dark: #127a6e;
  --teal-light: #4fc3b5;
  --teal-pale: #e0f5f3;
  --gold: #c8a84b;
  --gold-light: #e8c96a;
  --cream: #faf7f2;
  --dark: #1c2b2a;
  --muted: #4a6560;
  --white: #ffffff;
  --border: #c5dedd;
  --shadow: 0 4px 24px rgba(26,158,143,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}

/* ── DEMO BAR ── */
.demo-bar {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  position: relative;
}
.demo-bar span { opacity: .8; }
.demo-bar a {
  color: var(--teal-light);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--teal-light);
  padding: 2px 10px;
  border-radius: 20px;
  transition: background .2s;
}
.demo-bar a:hover { background: var(--teal-light); color: var(--dark); }
.demo-bar .cta {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.demo-bar .cta:hover { background: var(--gold-light); }

/* ── NAV ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,158,143,.08);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--gold); }
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}
nav a:hover, nav a.active { color: var(--teal); }

/* Mobile hamburger — checkbox hack */
.menu-toggle { display: none; }
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: all .3s;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav {
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--teal);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .menu-toggle:checked ~ nav { max-height: 400px; }
  nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  nav a { display: block; padding: 12px 24px; }
  .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background:
    linear-gradient(160deg, rgba(26,158,143,.85) 0%, rgba(18,122,110,.92) 60%, rgba(200,168,75,.4) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.03) 40px,
      rgba(255,255,255,.03) 80px
    );
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .15;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
  opacity: .2;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ── SECTIONS ── */
.section { padding: 72px 20px; }
.section-alt { background: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: .75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; fill: var(--teal-dark); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.feature-card p { color: var(--muted); font-size: .93rem; }

/* ── VENUE CARDS ── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.venue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.venue-card:hover { transform: translateY(-6px); }
.venue-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-body { padding: 24px; }
.venue-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.venue-body p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.venue-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  font-size: .75rem;
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.venue-price { font-weight: 800; color: var(--teal); font-size: 1.1rem; }

/* ── VISUAL ILLUSTRATIONS ── */
.visual-beach {
  background: linear-gradient(180deg, #87ceeb 0%, #87ceeb 40%, #e8c96a 40%, #e8c96a 60%, #1a9e8f 60%, #1a9e8f 100%);
  position: relative;
}
.visual-cliff {
  background: linear-gradient(180deg, #6db8d0 0%, #6db8d0 35%, #7a6b52 35%, #7a6b52 65%, #1a9e8f 65%, #1a9e8f 100%);
}
.visual-garden {
  background: linear-gradient(180deg, #d4edda 0%, #2d8a4e 40%, #1a6b3a 40%, #1a6b3a 70%, #c8a84b 70%, #c8a84b 100%);
}
.visual-villa {
  background: linear-gradient(180deg, #ffd89b 0%, #ff8c42 40%, #fff 40%, #fff 65%, var(--teal-pale) 65%);
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-visual {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; height: 200px; }
  .gallery-item { height: 130px; }
}

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all .25s;
  position: relative;
}
.package-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 40px rgba(26,158,143,.18);
}
.package-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.package-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.package-card .tagline { color: var(--muted); font-size: .85rem; margin-bottom: 20px; }
.package-price { font-size: 2rem; font-weight: 900; color: var(--teal); margin-bottom: 4px; }
.package-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.package-desc { color: var(--muted); font-size: .85rem; margin-bottom: 24px; }
.package-features { list-style: none; text-align: left; margin-bottom: 28px; }
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--dark);
  border-bottom: 1px solid var(--teal-pale);
}
.package-features li:last-child { border: none; }
.check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check svg { width: 10px; height: 10px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testi-text { color: var(--muted); font-size: .92rem; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: #fff;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.av2 { background: linear-gradient(135deg, var(--gold), #a07830); }
.av3 { background: linear-gradient(135deg, #9b59b6, #6c3483); }
.testi-author h4 { font-size: .9rem; font-weight: 700; }
.testi-author p { font-size: .78rem; color: var(--muted); }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 28px 20px; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: var(--muted); font-size: .88rem; }

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--teal); font-size: .82rem; font-weight: 600; margin-bottom: 8px; }
.team-card p { color: var(--muted); font-size: .82rem; }

/* ── FORM ── */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .93rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { text-align: center; margin-top: 10px; }
.success-msg {
  display: none;
  background: var(--teal-pale);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--teal-dark);
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .97rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  line-height: 1;
  transition: transform .3s;
}
details[open] summary::after { content: '−'; }
.faq-item p { color: var(--muted); font-size: .92rem; padding-top: 12px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal), var(--gold) 200%);
  padding: 72px 20px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 56px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { color: #fff; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: .87rem; line-height: 1.6; }
footer h4 { color: #fff; font-size: .92rem; margin-bottom: 14px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .87rem; transition: color .2s; }
footer a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .8rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.info-card p { color: var(--muted); font-size: .87rem; }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: linear-gradient(135deg, var(--teal-pale), var(--cream));
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: .9rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: .82rem;
  color: var(--muted);
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── PAGE HERO (inner) ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 56px 20px 48px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 520px; margin: 0 auto; }
