:root {
  --brand: #ef4b23;
  --brand-dark: #ba2d18;
  --red: #d83232;
  --ink: #172027;
  --muted: #68737d;
  --paper: #ffffff;
  --soft: #fff4ef;
  --line: #eadbd3;
  --gold: #f7bf3b;
  --green: #128c7e;
  --shadow: 0 18px 50px rgba(23, 32, 39, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  background: #fffaf7;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(234, 219, 211, .8);
  backdrop-filter: blur(14px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--red));
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}
.logo strong { display: block; font-size: 1rem; line-height: 1.1; }
.logo small { display: block; color: var(--muted); font-size: .72rem; line-height: 1.25; }
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a,
.nav-drop > a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #26323a;
  font-size: .92rem;
  font-weight: 600;
}
.main-nav > a:hover,
.nav-drop:hover > a { background: var(--soft); color: var(--brand-dark); }
.nav-drop { position: relative; }
.drop-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 230px;
  padding: 10px;
  display: none;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
}
.drop-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: .88rem;
}
.drop-menu a:hover { background: var(--soft); color: var(--brand); }
.nav-drop:hover .drop-menu { display: block; }
.header-cta,
.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 700;
}
.header-cta,
.primary-btn {
  border: 0;
  padding: 11px 18px;
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 22px rgba(239, 75, 35, .28);
}
.primary-btn:hover,
.header-cta:hover { background: var(--brand-dark); }
.ghost-btn {
  border: 1px solid var(--line);
  padding: 10px 16px;
  background: white;
  color: var(--ink);
}
.text-link {
  width: fit-content;
  color: var(--brand-dark);
  border-bottom: 2px solid var(--brand);
  border-radius: 0;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: #1b252c;
}
.slider, .slide {
  min-height: calc(100vh - 76px);
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(32px, 8vw, 88px);
  opacity: 0;
  transition: opacity .6s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 19, 23, .78), rgba(13, 19, 23, .35), rgba(13, 19, 23, .15));
}
.slide-content {
  position: relative;
  max-width: 740px;
  color: white;
}
.slide-content .tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-weight: 700;
  font-size: .85rem;
  backdrop-filter: blur(8px);
}
.slide h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: 0;
}
.slide p {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-controls {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.hero-controls button {
  min-width: 48px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  color: white;
  backdrop-filter: blur(8px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust-strip div {
  padding: 24px clamp(16px, 3vw, 38px);
  background: white;
}
.trust-strip strong {
  display: block;
  color: var(--brand);
  font-size: 1.7rem;
  line-height: 1;
}
.trust-strip span { color: var(--muted); font-size: .9rem; }

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}
.section-head {
  max-width: 840px;
  margin: 0 auto 32px;
  text-align: center;
}
.section-head h1,
.section-head h2,
.split-section h2,
.contact-section h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.section-head p,
.split-section p,
.contact-section p { color: var(--muted); }
.eyebrow {
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.warm-band { background: var(--soft); }
.about-grid,
.destination-grid,
.package-grid,
.category-grid,
.event-grid,
.blog-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}
.about-grid { grid-template-columns: repeat(3, 1fr); }
.about-grid article,
.category-card,
.testimonial-card,
.blog-card,
.event-card,
.featured-card,
.package-card,
.destination-card {
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
}
.about-grid article,
.category-card,
.testimonial-card,
.event-card,
.featured-card { padding: 22px; }
.about-grid h2,
.category-card h3,
.testimonial-card h3,
.event-card h3,
.featured-card h3 { margin: 0 0 8px; }
.about-grid p,
.category-card p,
.testimonial-card p,
.event-card p,
.featured-card p { margin: 0; color: var(--muted); }

.destination-grid { grid-template-columns: repeat(4, 1fr); }
.destination-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  background-size: cover;
  background-position: center;
}
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72));
}
.destination-card > div { position: relative; }
.destination-card h3 { margin: 0; font-size: 1.35rem; }
.destination-card p { margin: 5px 0 0; color: rgba(255, 255, 255, .86); }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 26px;
}
.filter-row button {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.filter-row button.active { background: var(--brand); color: white; border-color: var(--brand); }
.package-grid { grid-template-columns: repeat(3, 1fr); }
.package-card { box-shadow: 0 8px 30px rgba(23, 32, 39, .07); }
.card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #36230b;
  font-size: .74rem;
  font-weight: 800;
}
.card-image .badge {
  position: absolute;
  top: 14px;
  left: 14px;
}
.package-body { padding: 18px; }
.package-body h3 { margin: 8px 0; font-size: 1.18rem; }
.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
}
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.price-line span { color: var(--muted); font-size: .82rem; }
.price-line strong { color: var(--brand-dark); font-size: 1.2rem; white-space: nowrap; }
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.card-actions button,
.card-actions a {
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.card-actions button { background: white; color: var(--ink); }
.card-actions a { background: var(--green); color: white; border-color: var(--green); }

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: 32px;
  align-items: start;
}
.featured-list { display: grid; gap: 14px; }
.featured-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
}
.featured-thumb {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.category-grid { grid-template-columns: repeat(4, 1fr); }
.category-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand);
  font-weight: 800;
}

.event-band {
  background: #172027;
  color: white;
}
.section-head.light p,
.section-head.light h2 { color: white; }
.event-grid { grid-template-columns: repeat(3, 1fr); }
.event-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}
.event-card p { color: rgba(255, 255, 255, .7); }
.event-date { color: var(--gold); font-weight: 800; }

.blog-grid { grid-template-columns: 1.2fr .8fr .8fr; }
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card:first-child img { aspect-ratio: 16 / 8; }
.blog-card:first-child { grid-row: span 2; }
.blog-card div { padding: 18px; }
.blog-card h3 { margin: 0 0 8px; }
.blog-card p { margin: 0; color: var(--muted); }

.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.rating { color: var(--gold); font-weight: 800; }

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
  background: var(--soft);
}
.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
label { display: grid; gap: 7px; font-weight: 700; color: #34404a; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
}
textarea { resize: vertical; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 22px;
  background: rgba(23, 32, 39, .62);
  overflow: auto;
}
.modal.open { display: block; }
.modal-panel {
  position: relative;
  max-width: 1080px;
  margin: 30px auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 0;
  background: white;
  color: var(--ink);
  font-size: 1.7rem;
}
.detail-hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .72));
}
.detail-hero > div { position: relative; max-width: 760px; }
.detail-hero h2 { margin: 10px 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1; }
.detail-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px;
  padding: 28px;
}
.detail-tabs { display: grid; gap: 18px; }
.detail-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.detail-box h3 { margin-top: 0; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.detail-sidebar {
  position: sticky;
  top: 92px;
  height: fit-content;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.site-footer {
  padding: 54px clamp(18px, 5vw, 72px) 20px;
  color: white;
  background: #11191f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 26px;
}
.site-footer h3 { margin: 0 0 12px; }
.site-footer p,
.site-footer a,
.site-footer small { color: rgba(255, 255, 255, .72); }
.site-footer a { display: block; margin: 7px 0; }
.footer-logo .logo-mark { background: var(--brand); }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
}
.copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  font-size: .86rem;
}

.admin-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: #f7f3ef;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 20px;
  background: #11191f;
  color: white;
  overflow: auto;
}
.admin-sidebar .logo { margin-bottom: 22px; }
.admin-sidebar small { color: rgba(255,255,255,.62); }
.admin-nav { display: grid; gap: 8px; }
.admin-nav button,
.admin-site-link {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,.05);
  color: white;
  text-align: left;
  font-weight: 700;
}
.admin-nav button.active { background: var(--brand); border-color: var(--brand); }
.admin-site-link { display: block; margin-top: 18px; text-align: center; }
.admin-main { padding: 28px; }
.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-hero h1 { margin: 8px 0; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; }
.admin-hero p { margin: 0; color: var(--muted); max-width: 760px; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-login-note {
  margin: 16px 0;
  padding: 14px 16px;
  background: #fff9e8;
  border: 1px solid #f1daa0;
  border-radius: 8px;
  color: #705210;
}
.admin-editor {
  display: grid;
  gap: 18px;
}
.admin-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.admin-card h2 { margin: 0 0 14px; }
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.admin-form-grid .wide { grid-column: 1 / -1; }
.admin-list {
  display: grid;
  gap: 14px;
}
.admin-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf7;
}
.admin-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.admin-item-head strong { font-size: 1.05rem; }
.admin-item-head button {
  border: 0;
  border-radius: 6px;
  background: #fee4dd;
  color: var(--brand-dark);
  font-weight: 800;
  min-height: 36px;
  padding: 7px 10px;
}
.add-row {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}
.status-message {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 80;
  padding: 12px 16px;
  border-radius: 8px;
  background: #172027;
  color: white;
  box-shadow: var(--shadow);
}

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; border: 1px solid var(--line); border-radius: 6px; background: white; }
  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .drop-menu { position: static; display: block; width: 100%; box-shadow: none; border-radius: 6px; }
  .header-cta { display: none; }
  .trust-strip,
  .about-grid,
  .destination-grid,
  .package-grid,
  .category-grid,
  .event-grid,
  .testimonial-grid,
  .contact-section,
  .split-section,
  .detail-content,
  .footer-grid,
  .admin-body { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-row: auto; }
  .admin-sidebar { position: static; height: auto; }
  .admin-main { padding: 18px; }
}

@media (max-width: 720px) {
  .site-header { padding: 10px 14px; }
  .logo strong { font-size: .9rem; }
  .hero, .slider, .slide { min-height: 680px; }
  .slide { padding: 24px 18px 92px; }
  .hero-controls { left: 18px; right: auto; }
  .section { padding: 50px 16px; }
  .trust-strip,
  .about-grid,
  .destination-grid,
  .package-grid,
  .category-grid,
  .event-grid,
  .testimonial-grid,
  .contact-section,
  .split-section,
  .detail-content,
  .footer-grid,
  .admin-body,
  .admin-form-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 88px 1fr; }
  .featured-card .price-line { grid-column: 1 / -1; margin: 0; }
  .featured-thumb { width: 88px; }
  .admin-hero { align-items: stretch; flex-direction: column; }
  .detail-hero { min-height: 300px; padding: 24px 18px; }
  .detail-content { padding: 18px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 8px; }
}
