:root {
  --primary: #0c3b2e;
  --secondary: #f4b942;
  --secondary-deep: #d9961f;
  --sand: #f8f0e2;
  --text: #1a1a1a;
  --muted: #5e6a66;
  --white: #ffffff;
  --shadow-soft: 0 18px 60px rgba(12, 59, 46, 0.14);
  --shadow-card: 0 20px 45px rgba(14, 31, 24, 0.18);
  --radius-xl: 28px;
  --font-body: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-display: "Playfair Display", "Georgia", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fffdf9;
  line-height: 1.65;
}
h1, h2 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
h3, h4, h5, h6 { font-family: var(--font-body); }
body .container { max-width: 1280px; }
@media (min-width: 1400px) {
  body .container { max-width: 1380px; }
}
@media (min-width: 1600px) {
  body .container { max-width: 1520px; }
}
img { display: block; width: 100%; }
a { text-decoration: none; }
.btn { border-radius: 999px; font-weight: 700; letter-spacing: 0.02em; }
.btn-warning {
  background: linear-gradient(135deg, var(--secondary), #ffe29a);
  border: none;
  color: #2b1f04;
  box-shadow: 0 12px 24px rgba(244, 185, 66, 0.35);
}
.btn-warning:hover, .btn-warning:focus {
  background: linear-gradient(135deg, var(--secondary-deep), #ffd076);
  color: #2b1f04;
}
.btn-outline-light { border-width: 2px; }
.navbar {
  padding: 1rem 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.navbar.scrolled,
.navbar .show,
.navbar .collapsing {
  background: rgba(8, 28, 22, 0.95);
  backdrop-filter: blur(14px);
}
.navbar-brand { color: var(--white); }
.navbar-brand small {
  font-size: 0.72rem;
  opacity: 0.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), #fff0a7);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}
.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  position: relative;
}
.nav-link:hover, .nav-link:focus { color: var(--secondary); }
.nav-link.active {
  color: #fff;
  background: rgba(244, 185, 66, 0.18);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: -0.55rem;
  height: 3px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 6px 14px rgba(244, 185, 66, 0.5);
}
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  color: var(--white);
  background: #0a2a20;
  overflow: hidden;
  position: relative;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slideshow span {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(6, 24, 20, 0.35), rgba(12, 59, 46, 0.18)),
    var(--hero-image);
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1200ms ease-in-out, transform 9000ms ease-out;
}
.hero-slideshow span::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(9, 33, 28, 0.55), rgba(11, 48, 40, 0.22) 42%, rgba(4, 22, 18, 0.45)),
    radial-gradient(circle at 75% 18%, rgba(244, 185, 66, 0.26), transparent 45%);
}
.hero-slideshow span.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 20, 17, 0.45), rgba(6, 20, 17, 0.12) 40%, rgba(6, 20, 17, 0.4));
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.page-hero {
  min-height: 55vh;
  padding: 8.5rem 0 4rem;
}
.page-hero .hero-text {
  max-width: 640px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.hero-actions .btn { padding: 0.9rem 1.9rem; }
.hero-section h1, .section-heading h2, .contact-card h2 {
  font-size: clamp(2.8rem, 4.6vw, 5.4rem);
  line-height: 1.04;
  font-weight: 800;
}
.hero-text, .section-heading p, .feature-item p, .contact-card p, .package-card p, .destination-card p, .testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}
.section-heading p, .feature-item p, .contact-card p, .package-card p, .destination-card p, .testimonial-card p { color: var(--muted); }
.hero-actions .btn { padding: 1rem 1.9rem; border-radius: 999px; font-weight: 700; }
.metric-card, .booking-panel, .destination-card, .package-card, .testimonial-card, .contact-card { border-radius: var(--radius-xl); }
.metric-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.metric-card h3 { font-size: 2rem; margin-bottom: 0.15rem; }
.metric-card p { margin: 0; color: rgba(255, 255, 255, 0.72); }
.booking-panel {
  padding: 2rem;
  background: rgba(255, 248, 236, 0.95);
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.hero-carousel {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}
.hero-carousel img {
  height: 440px;
  object-fit: cover;
}
.hero-carousel .carousel-caption {
  right: 1.5rem;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 29, 23, 0.08), rgba(7, 29, 23, 0.86));
}
.hero-carousel .carousel-caption h3 {
  margin: 0.9rem 0 0;
  font-size: 1.6rem;
  color: #fff;
}
.panel-head h2 { font-size: 1.9rem; margin: 1rem 0 0.45rem; color: var(--primary); }

.form-control, .form-select {
  border: 1px solid #d5dacd;
  padding: 0.85rem 1rem;
  border-radius: 16px;
}
.form-label {
  font-weight: 600;
  color: #1b2f2a;
  margin-bottom: 0.35rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(244, 185, 66, 0.2);
}
.required-asterisk {
  color: #d9382e;
  font-weight: 700;
}
.form-feedback { min-height: 1.5rem; color: var(--primary); font-weight: 600; }
.phone-group-modern {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.phone-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  background: #f6f6f6;
  border: 1px solid #d5dacd;
  border-right: 0;
  border-radius: 16px 0 0 16px;
}
.phone-code {
  min-width: 150px;
  max-width: 180px;
  flex: 0 0 160px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-local {
  border-radius: 0 16px 16px 0;
  border-left: 0;
}
.phone-local-wrap {
  position: relative;
  flex: 1;
}
.phone-local-wrap .phone-local {
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: transparent;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.phone-mask-inline {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b1b9b6;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
  white-space: pre;
  text-align: left;
  width: calc(100% - 2rem);
  font-family: inherit;
  font-size: inherit;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.trust-bar {
  padding: 2.5rem 0;
  background: #fff4dd;
  border-bottom: 1px solid rgba(12, 59, 46, 0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.trust-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  text-align: center;
  border: 1px solid rgba(12, 59, 46, 0.08);
  box-shadow: 0 10px 25px rgba(12, 59, 46, 0.1);
}
.trust-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.trust-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
}
.trust-item small {
  color: var(--muted);
  font-size: 0.82rem;
}
.partners-strip {
  padding: 1rem 0;
  background: var(--sand);
  border-top: 1px solid rgba(12, 59, 46, 0.08);
  border-bottom: 1px solid rgba(12, 59, 46, 0.08);
}
.partners-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-padding { padding: 7.5rem 0; }
.section-heading { max-width: 900px; margin-bottom: 3rem; }
.section-heading.text-center { margin-left: auto; margin-right: auto; }
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  color: var(--primary);
  margin-bottom: 1rem;
}
.destination-card, .package-card, .testimonial-card, .contact-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.package-card { position: relative; cursor: pointer; }
.destination-card { height: 100%; cursor: pointer; }
.destination-card * { cursor: pointer; }
.package-card * { cursor: pointer; }
.destination-card .card-image, .package-card .card-image { aspect-ratio: 16 / 10; overflow: hidden; }
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(12, 59, 46, 0.14);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.card-cta-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.dark-section .card-cta {
  color: #ffffff;
  border-top-color: rgba(255, 255, 255, 0.22);
}
.dark-section .card-cta-icon {
  color: var(--secondary);
}
.dark-section .package-price {
  color: #ffe6a8;
  border-left-color: rgba(255, 255, 255, 0.25);
}
.destination-card:hover .card-cta-icon,
.package-card:hover .card-cta-icon {
  transform: translateX(3px);
}
.destination-card .card-image img, .package-card .card-image img {
  height: 100%;
  object-fit: cover;
}
.destination-card .card-body, .package-card .card-body, .testimonial-card .card-body { padding: 1.5rem; }
.package-card .card-body { padding: 1.75rem; }
.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 59, 46, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.destination-card h3, .package-card h3, .feature-item h3, .testimonial-card h3, .mini-stat h3 {
  color: var(--primary);
  font-weight: 800;
}
.destination-meta, .package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.package-price {
  color: var(--primary);
  font-weight: 700;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(12, 59, 46, 0.18);
}
.destination-card, .package-card, .testimonial-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.destination-card:hover, .package-card:hover, .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.destination-link, .package-link, .footer-links a { color: var(--primary); font-weight: 700; }
.gallery-card {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.gallery-card img {
  height: 280px;
  object-fit: cover;
}
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, rgba(8, 28, 22, 0), rgba(8, 28, 22, 0.72));
  color: #fff;
}
.gallery-caption h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}
.map-section .map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(12, 59, 46, 0.12);
  background: #0a2a20;
  position: relative;
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-placeholder {
  height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(6, 24, 20, 0.65), rgba(6, 24, 20, 0.3)),
    radial-gradient(circle at 70% 30%, rgba(244, 185, 66, 0.25), transparent 45%);
}
.map-placeholder h3 {
  margin-bottom: 0.6rem;
  color: #fff;
}
.map-placeholder p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
  margin: 0 auto 1rem;
}
.map-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.dark-section {
  background:
    radial-gradient(circle at top right, rgba(244, 185, 66, 0.17), transparent 22%),
    linear-gradient(180deg, #0b231c, #133629);
}
.dark-section .section-heading h2,
.dark-section .section-heading p,
.dark-section .package-card p,
.dark-section .package-meta,
.dark-section .package-link { color: var(--white); }
.dark-section .package-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.dark-section .card-chip { background: rgba(244, 185, 66, 0.16); color: #ffe0a2; }
.dark-section .package-card h3 { color: #ffffff; }
.founder-section {
  background: linear-gradient(120deg, rgba(248, 240, 226, 0.6), rgba(255, 255, 255, 0));
}
.founder-card {
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 59, 46, 0.08);
}
.founder-quote {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}
.founder-meta {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  color: var(--muted);
}
.founder-meta strong { color: var(--primary); }
.founder-media {
  min-height: 360px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(12, 59, 46, 0.15), rgba(12, 59, 46, 0.65)),
    var(--founder-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.cta-band {
  padding: 4.5rem 0;
  background: #fff4dd;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2.8rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 59, 46, 0.08);
}
.cta-band-inner h2 { margin-bottom: 0.6rem; }
.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--secondary), #ffe6a8);
  color: #2b1f04;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(244, 185, 66, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.sticky-cta:hover { color: #2b1f04; transform: translateY(-1px); }
.stacked-images { position: relative; padding-right: 4rem; }
.floating-card {
  max-width: 280px;
  position: absolute;
  right: 0;
  bottom: -2rem;
  border: 10px solid #fff;
}
.feature-list { display: grid; gap: 1.3rem; }
.feature-item {
  padding: 1.35rem 1.5rem;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(12, 59, 46, 0.08);
  box-shadow: var(--shadow-soft);
}
.about-story-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 185, 66, 0.18), transparent 45%),
    linear-gradient(180deg, #fffdf9, #f7efdf);
  border-top: 1px solid rgba(12, 59, 46, 0.06);
  border-bottom: 1px solid rgba(12, 59, 46, 0.06);
}
.about-story-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(12, 59, 46, 0.08), transparent 35%),
    radial-gradient(circle at 65% 70%, rgba(244, 185, 66, 0.12), transparent 40%);
  pointer-events: none;
}
.about-story-section .container { position: relative; z-index: 1; }
.story-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.story-metric {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(12, 59, 46, 0.08);
  box-shadow: var(--shadow-soft);
}
.story-metric h3 {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-weight: 800;
}
.story-metric p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.story-feature-list { display: grid; gap: 1.1rem; }
.story-feature-list .feature-item {
  background: #ffffff;
  border-color: rgba(12, 59, 46, 0.1);
  box-shadow: 0 20px 38px rgba(12, 59, 46, 0.12);
}
.why-travel-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0a2a20;
}
.why-travel-section .section-heading h2,
.why-travel-section .section-heading p,
.why-travel-section .section-heading .eyebrow {
  color: #fff;
}
.why-travel-section .feature-item {
  background: rgba(255, 255, 255, 0.93);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 48px rgba(7, 24, 19, 0.28);
}
.why-travel-section .feature-item p { color: var(--text); }
.why-travel-section .hero-slideshow span::after {
  background:
    linear-gradient(135deg, rgba(6, 24, 20, 0.18), rgba(12, 59, 46, 0.08) 42%, rgba(4, 22, 18, 0.2)),
    radial-gradient(circle at 75% 18%, rgba(244, 185, 66, 0.22), transparent 55%);
}
.why-travel-section .section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 24, 20, 0.28), rgba(6, 24, 20, 0.42)),
    radial-gradient(circle at 15% 20%, rgba(244, 185, 66, 0.22), transparent 50%);
}
.why-travel-section .container { position: relative; z-index: 2; }
.sand-section, .testimonials-section { background: linear-gradient(180deg, #fffdf9, #f7efdf); }
.park-gallery-carousel {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.park-gallery-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.park-gallery-copy {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(244, 185, 66, 0.22), transparent 30%),
    linear-gradient(180deg, #fffaf1, #f4ead8);
}
.park-gallery-copy h3 {
  margin: 1rem 0 0.75rem;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}
.park-gallery-carousel .carousel-control-prev,
.park-gallery-carousel .carousel-control-next {
  width: 8%;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.2rem;
}
.gallery-card {
  min-height: 250px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.gallery-card img { height: 100%; object-fit: cover; }
.gallery-tall { grid-row: span 2; }
.testimonial-card .rating {
  color: var(--secondary-deep);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.testimonial-card small { color: var(--muted); }
.contact-section {
  background:
    linear-gradient(135deg, rgba(244, 185, 66, 0.12), rgba(255, 255, 255, 0.9)),
    linear-gradient(180deg, #ffffff, #f9f3e8);
}
.contact-card { padding: 2rem; }
.contact-list li { padding: 0.45rem 0; color: var(--muted); }
.mini-stat {
  padding: 1.2rem;
  background: var(--sand);
  border-radius: 20px;
  text-align: center;
}
.site-footer {
  padding: 1.5rem 0;
  background: #071d17;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a { color: rgba(255, 255, 255, 0.82); }
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(8, 28, 22, 0.95);
    border-radius: 20px;
  }
  .cta-band-inner { padding: 2rem; }
  .founder-media { min-height: 260px; }
  .sticky-cta { right: 16px; bottom: 16px; }
  .stacked-images { padding-right: 0; }
  .floating-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
    border-width: 0;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .destination-gallery-grid { grid-template-columns: 1fr 1fr; }
  .destination-gallery-featured { grid-row: auto; min-height: 280px; }
}
@media (max-width: 767.98px) {
  .hero-section { padding-top: 7rem; }
  .partners-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-padding { padding: 4.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: auto; }
  .hero-carousel img,
  .image-frame img,
  .park-gallery-image { min-height: 260px; height: 260px; }
  .map-section iframe { height: 280px; }
  .map-placeholder { height: 280px; }
  .destination-gallery-grid { grid-template-columns: 1fr; }
  .destination-gallery-card,
  .destination-gallery-featured { min-height: 220px; }
}
@media (max-width: 575.98px) {
  .navbar .btn { width: 100%; }
  .navbar-brand small { font-size: 0.62rem; }
  .brand-mark { width: 2.2rem; height: 2.2rem; font-size: 1rem; }
  .hero-section { padding: 6.5rem 0 3.5rem; min-height: auto; }
  .page-hero { padding: 6.5rem 0 3rem; }
  .hero-section h1,
  .section-heading h2,
  .contact-card h2 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-text,
  .section-heading p,
  .feature-item p,
  .contact-card p,
  .package-card p,
  .destination-card p,
  .testimonial-card p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .booking-panel,
  .contact-card,
  .panel-card { padding: 1.25rem; border-radius: 20px; }
  .hero-carousel img { height: 220px; }
  .hero-carousel .carousel-caption { padding: 0.9rem; }
  .hero-carousel .carousel-caption h3 { font-size: 1.1rem; }
  .destination-meta,
  .package-meta { flex-direction: column; align-items: flex-start; }
  .inner-page-header .navbar .ms-auto {
    width: 100%;
    margin-top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .inner-page-header .navbar .ms-auto .btn { width: 100%; }
  .image-frame img,
  .park-gallery-image { height: 240px; min-height: 240px; }
  .site-footer { text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .dashboard-sidebar { padding: 1rem; }
  .dashboard-sidebar nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .dashboard-link { padding: 0.6rem 0.7rem; text-align: center; font-size: 0.9rem; }
  .dashboard-main { padding: 1rem; }
  .dashboard-title { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

.alert { border-radius: 18px; }
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #0b231c, #f7efdf);
}
.auth-card {
  width: min(100%, 480px);
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-card);
}
.dashboard-body {
  background: #f4f1e7;
}
.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}
.dashboard-sidebar {
  background: #0b231c;
  color: #fff;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dashboard-sidebar-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dashboard-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 185, 66, 0.45);
  background: rgba(244, 185, 66, 0.14);
  color: #fff;
  font-weight: 700;
}
.dashboard-logout-btn:hover,
.dashboard-logout-btn:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #071d17;
}
.brand-panel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.dashboard-link {
  display: block;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04);
}
.dashboard-link.active,
.dashboard-link:hover {
  color: #071d17;
  background: var(--secondary);
}
.dashboard-main {
  padding: 2rem;
}
.dashboard-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}
.stat-box,
.panel-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.stat-box {
  padding: 1.3rem;
}
.stat-box span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.stat-box strong {
  font-size: 2rem;
  color: var(--primary);
}
.panel-card {
  padding: 1.4rem;
}
.list-line,
.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(12, 59, 46, 0.08);
  color: inherit;
}
.detail-row span,
.list-line span {
  color: var(--muted);
}
.note-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(12, 59, 46, 0.08);
}
.table td,
.table th {
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    gap: 1.5rem;
  }
}
.partners-track a {
  color: var(--primary);
  font-weight: 700;
}
.inner-page-header {
  background: #071d17;
}
.destination-hero {
  padding-top: 10rem;
  color: var(--white);
  background: linear-gradient(120deg, rgba(6, 29, 24, 0.94), rgba(12, 59, 46, 0.78));
  position: relative;
  overflow: hidden;
}
.destination-hero .container {
  position: relative;
  z-index: 2;
}
.image-frame {
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}
.image-frame img {
  border-radius: 20px;
  height: 420px;
  object-fit: cover;
}
.destination-carousel {
  overflow: hidden;
}
.destination-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}
.destination-gallery-card {
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.destination-gallery-featured {
  grid-row: span 2;
  min-height: 460px;
}
.destination-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.park-gallery-carousel .carousel-control-prev-icon,
.park-gallery-carousel .carousel-control-next-icon,
.destination-carousel .carousel-control-prev-icon,
.destination-carousel .carousel-control-next-icon {
  background-color: rgba(7, 29, 23, 0.58);
  border-radius: 50%;
  background-size: 58%;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.highlight-box,
.offer-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.offer-card h3 {
  color: var(--primary);
  font-weight: 800;
}
