:root {
  --red: #d30b12;
  --red-dark: #9d060b;
  --gold: #ffca27;
  --gold-dark: #e5a900;
  --teal: #18c7d0;
  --ink: #202020;
  --muted: #555;
  --cream: #fee9b8;
  --line: #777;
  --shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

body.auth-locked {
  overflow: hidden;
}

body.auth-locked > :not(.auth-gate) {
  visibility: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.accent {
  color: var(--gold);
}
.accent2 {
  color: var(--gold);
}

.btn-gold {
  min-width: 190px;
  padding: 11px 28px;
  border-radius: 999px;
  color: #191919;
  background: linear-gradient(180deg, #ffd94b 0%, #ffc426 100%);
  box-shadow: 0 8px 18px rgb(0 0 0);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 90;
  padding: 30px;
}

.nav-inner {
  position: relative;
  width: min(1040px, calc(100% - 110px));
  margin: 0 auto;
  background: rgba(28, 34, 37, 0.68);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  display: none;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 4px;
  padding: 4px;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  border-radius: 999px;
  color: #f4f4f4;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(255, 0, 0, 0.61);
}

/* Logo */
.penvill-logo {
  display: block;
  width: 245px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-logo .penvill-logo {
  width: 285px;
  filter: drop-shadow(0 6px 10px rgba(255, 255, 255, 0.4));
  position: relative;
  display: block;
  margin: auto;
  margin-left: 95px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 650px;
  height: 54vw;
  max-height: 760px;
  overflow: hidden;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.46) 26%,
      rgba(255, 255, 255, 0) 52%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1380px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 116px 0px 44px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-title {
  position: relative;
  margin: 20px 0 18px;
  color: var(--red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(28px, 3.15vw, 46px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 4px;
  text-align: center;
  text-shadow:
    2px 2px 0 #000000,
    0 4px 8px rgba(0, 0, 0, 0.18);
}

.hero-content .btn-gold {
  width: fit-content;
  margin-left: 150px;
  margin-right: auto;
  display: block;
}

.hero-destinations {
  position: absolute;
  right: max(36px, calc((100vw - 1900px) / 2 + 28px));
  bottom: 36px;
  z-index: 3;
  display: flex;
  width: min(478px, calc(100vw - 72px));
  overflow: hidden;
  gap: 0;
  pointer-events: none;
}

.hero-destinations-track {
  display: flex;
  flex: 0 0 100%;
  gap: 14px;
  width: 100%;
  transition: transform 0.65s ease;
  will-change: transform;
}

.dest-card {
  flex: 0 0 calc((100% - 28px) / 3);
  position: relative;
  width: 150px;
  height: 175px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.dest-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-dots,
.tours-dots {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dots {
  right: max(450px, calc((100vw - 1180px) / 2 + 500px));
  bottom: 300px;
  display: none;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(24, 199, 208, 0.52);
  cursor: pointer;
}

.dot.active {
  background: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  .hero-destinations-track {
    transition: none;
  }
}

/* Difference and inquiry */
.difference {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 390px;
  gap: 72px;
  align-items: center;
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 42px 34px 40px;
  background: #fff;
}

.difference-text {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 22px;
  align-items: center;
}

.difference-text h2 {
  color: black;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 3px;
}

.difference-text p {
  grid-column: 1 / -1;
  max-width: 660px;
  color: #111;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: justify;
}

.difference-logo {
  transform: scale(0.88);
}

.inquiry-card {
  min-height: 318px;
  padding: 34px 28px 20px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fde8b5, #f8e0ab);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.inquiry-card h3 {
  margin-bottom: 20px;
  color: var(--red);
  text-align: center;
  font-size: 28px;
  font-weight: 900;
}

.inquiry-label {
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 800;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 18px 0;
  color: #3a3a3a;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.radio-option input {
  position: absolute;
  opacity: 0;
}

.radio-circle {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 3px solid #24313b;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}

.radio-option input:checked + .radio-circle {
  box-shadow: inset 0 0 0 4px #fff;
  background: var(--red);
}

.btn-next {
  display: block;
  min-width: 180px;
  margin: 24px auto 0;
  padding-block: 8px;
}

/* Video band */
.video-section {
  position: relative;
  height: 510px;
  overflow: hidden;
  background: #000;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tour packages preview */
.tour-packages-preview {
  position: relative;
  padding: 54px 22px 48px;
  overflow: hidden;
  text-align: center;
  background-image:
    linear-gradient(
      180deg,
      rgba(222, 246, 250, 0.88),
      rgba(255, 238, 214, 0.72)
    ),
    url("/images/package/p2.jpg");
  background-size: cover;
  background-position: center 42%;
}

.tour-packages-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.tour-packages-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.tour-packages-preview h2 {
  margin-bottom: 26px;
  color: #101010;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
}

.package-preview-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
  width: min(1040px, 100%);
  margin: 0 auto 24px;
}

.package-preview-card {
  width: clamp(150px, 15.5vw, 210px);
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.package-preview-card:hover,
.package-preview-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.3);
  outline: none;
}

.package-preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.package-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.76);
}

.package-preview-modal.open {
  display: flex;
}

.package-preview-modal img {
  max-width: min(92vw, 620px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
}

.package-preview-close {
  position: fixed;
  top: 18px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: #b00000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  font-size: 32px;
  line-height: 1;
}

.package-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 38px;
  padding: 10px 24px;
  border-radius: 999px;
  color: #fff;
  background: #c40000;
  box-shadow: 0 8px 16px rgba(99, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.package-view-more:hover {
  background: #a80000;
  transform: translateY(-1px);
}

/* Privacy policy */
.privacy-page {
  background: #f7f7f7;
}

.privacy-main {
  padding-top: 56px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.96)),
    url("/images/map-bg.jpg");
  background-size: cover;
  background-position: center;
}

.privacy-back-btn {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: #850000;
  box-shadow: 0 8px 18px rgba(95, 0, 0, 0.26);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-back-btn:hover {
  background: #a00000;
}

.privacy-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 22px;
  text-align: center;
}

.privacy-hero h1 {
  color: var(--red);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
}

.privacy-hero p {
  width: min(760px, 100%);
  margin: 16px auto 0;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.privacy-content {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 70px;
}

.privacy-content h2 {
  margin: 28px 0 8px;
  color: #8d0000;
  font-size: 24px;
  line-height: 1.2;
}

.privacy-content p {
  color: #202020;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

/* Previous tours */
.previous-tours {
  position: relative;
  padding: 34px 30px 54px;
  text-align: center;
  overflow: hidden;
  background-image:
    linear-gradient(
      180deg,
      rgba(226, 244, 246, 0.6),
      rgba(255, 188, 188, 0.72)
    ),
    var(--tour-bg, url("/images/tour-1.png"));
  background-size: cover;
  background-position: center;
  transition: background-image 0.7s ease-in-out;
}

.previous-tours h2 {
  color: var(--red);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.tours-sub {
  width: min(900px, 100%);
  margin: 8px auto 24px;
  color: #222;
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
}

.tours-slideshow {
  position: relative;
  width: min(880px, 92vw);
  height: clamp(220px, 28vw, 330px);
  margin: 0 auto;
  overflow: visible;
}

.tours-track {
  position: relative;
  height: 110%;
}

.tour-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 27%;
  height: 76%;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition:
    left 0.7s ease,
    width 0.7s ease,
    height 0.7s ease,
    opacity 0.7s ease,
    transform 0.7s ease;
  z-index: 0;
}

.tour-slide.is-active {
  left: 50%;
  width: 52%;
  height: 92%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

.tour-slide.is-prev {
  left: 20%;
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 2;
}

.tour-slide.is-next {
  left: 80%;
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 2;
}

.tour-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tours-arrow {
  display: none;
}

.tours-dots {
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  display: none;
}

.tours-collage + .tours-arrow + .tours-arrow + .tours-dots:empty::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}

/* Why choose */
.why-choose {
  display: grid;
  grid-template-columns: 600px minmax(560px, 730px);
  gap: 68px;
  align-items: center;
  justify-content: center;
  padding: 54px 32px 60px;
  background: #fff;
}

.why-title {
  color: var(--red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 10px;
}

.why-cards {
  display: grid;
  gap: 27px;
}

.why-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 14px 26px;
  border: 3px solid #6f6f6f;
  border-radius: 18px;
  background: #fbfbfb;
  box-shadow: 8px 8px 14px rgba(0, 0, 0, 0.2);
}

.why-icon {
  display: grid;
  place-items: center;
  color: #333;
}

.why-icon svg {
  width: 58px;
  height: 58px;
  stroke-width: 1.9;
}

.why-card h4 {
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.why-card p {
  margin-top: 2px;
  color: #222;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.24;
}

/* Accreditations — banner style over the travel map background */
.accreditations {
  position: relative;
  padding: 56px 30px 66px;
  text-align: center;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 250, 240, 0.82),
      rgba(250, 240, 222, 0.86)
    ),
    url("/images/map-bg.jpg");
  background-size: cover;
  background-position: center;
}

.accreditations-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.accreditations h2 {
  color: #1b2a4a;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  border-top: 10px solid var(--red);
  padding: 40px 30px 16px;
  background: #fff;
  color: #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.55fr 1fr 1fr;
  gap: 34px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.footer-brand .penvill-logo {
  width: 128px;
}

.footer-brand p {
  margin-top: 6px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.footer-col h5 {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #222;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icons img {
  width: 64px;
  height: 54px;
  object-fit: contain;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--red);
}

.social-icons svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.footer-copy {
  margin-top: 28px;
  text-align: center;
  color: #444;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.6);
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  width: min(540px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  color: #777;
  background: transparent;
  font-size: 28px;
}

.modal-box h3 {
  color: var(--red);
  font-size: 25px;
}

.modal-selected {
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  font: inherit;
}

.date-input-wrap {
  position: relative;
}

.date-input-wrap input[type="date"] {
  min-height: 44px;
  color: #1c1c1c;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
}

.date-input-wrap input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.4em;
  text-align: left;
}

.date-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.8;
}

.date-input-placeholder {
  position: absolute;
  top: 50%;
  left: 13px;
  right: 44px;
  transform: translateY(-50%);
  overflow: hidden;
  color: #a9a9a9;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.date-input-wrap.has-value .date-input-placeholder,
.date-input-wrap:focus-within .date-input-placeholder {
  display: none;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 2px 0 14px;
  color: #2a2a2a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.privacy-consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--red);
}

.privacy-consent a {
  color: #b00000;
  font-weight: 900;
  text-decoration: underline;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 18px;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
}

.form-status.success {
  color: #087d3d;
}
.form-status.error {
  color: var(--red);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.google-signin-wrap {
  display: flex;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/images/map-bg.jpg") center/cover;
}

.auth-gate-box {
  width: min(420px, 100%);
  padding: 30px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.auth-gate-box img {
  width: 150px;
  max-width: 100%;
}

.auth-gate-box h2 {
  margin-top: 14px;
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
}

.auth-gate-box p {
  margin-top: 8px;
  color: #333;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

/* ==========================================================================
   ABOUT US PAGE
   ========================================================================== */

.about-hero {
  position: relative;
  min-height: 300px;
  padding: 150px 30px 54px;
  text-align: center;
  background-color: var(--red-dark);
  background-image:
    linear-gradient(160deg, rgba(179, 178, 178, 0.678), rgba(120, 4, 8, 0.137)),
    url("/images/abg.jpg");
  background-size: cover;
  background-position: center;
}

.about-hero .navbar {
  position: fixed;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.about-hero-content .penvill-logo {
  width: 210px;
  filter: drop-shadow(0 6px 10px rgba(255, 255, 255, 0.35));
}

.about-hero-content h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: 10px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}
.about-hero-content h3 {
  margin-top: 18px;
  color: #ffd000;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: 10px;
  text-shadow: 0 3px 8px rgba(5, 5, 5, 0.938);
}
.hero-bar {
  width: 96px;
  height: 6px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Company introduction */
.about-intro {
  padding: 52px 30px 58px;
  background: #fff;
}

.about-intro-inner {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
}

.about-intro h2 {
  color: var(--red);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.15;
}

.about-intro p {
  margin-top: 18px;
  color: #1c1c1c;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  text-align: justify;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.about-tag {
  padding: 7px 16px;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: #fff;
}

/* Meet Our Founder */
.about-founder {
  padding: 54px 30px 60px;
  background: #f5f0e8;
}

.about-founder-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.about-founder h2 {
  margin-bottom: 38px;
  color: var(--red);
  text-align: center;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: 4px;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 48px;
  align-items: start;
}

.founder-photo-wrap {
  position: relative;
  align-self: stretch;
}

.founder-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.founder-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #191919;
  background: linear-gradient(180deg, #ffd94b 0%, #ffc426 100%);
  box-shadow: 0 8px 16px rgba(164, 111, 0, 0.3);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-align: center;
}

.founder-text h3 {
  color: var(--red);
  font-size: clamp(22px, 2.6vw, 31px);
  font-weight: 900;
  line-height: 1.2;
}

.founder-role {
  display: inline-block;
  margin: 8px 0 18px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
}

.founder-text p {
  margin-top: 14px;
  color: #262626;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.58;
  text-align: justify;
}

/* Our Vision */
.about-vision {
  position: relative;
  padding: 60px 30px 64px;
  text-align: center;
  background-image:
    linear-gradient(160deg, rgba(12, 6, 11, 0.82), rgba(120, 4, 8, 0.86)),
    url("/images/map-bg2.jpg");
  background-size: cover;
  background-position: center;
}

.about-vision-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.about-vision h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: 5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.about-vision p {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Our Partners — banner style over the travel map background */
.about-partners {
  position: relative;
  padding: 56px 30px 66px;
  text-align: center;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 250, 240, 0.82),
      rgba(250, 240, 222, 0.86)
    ),
    url("/images/map-bg.jpg");
  background-size: cover;
  background-position: center;
}

.about-partners-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-partners h2 {
  color: #1b2a4a;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.partners-sub {
  margin: 10px auto 34px;
  max-width: 680px;
  color: #3a3a3a;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 34px 20px;
  padding: 20px 10px 6px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}
.partners-strip2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 10px 10px;
  gap: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 160px;
  max-width: 220px;
  min-height: 150px;
}
.partner-item2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 160px;
  max-width: 220px;
}

.partner-item img {
  display: block;
  height: 84px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
}

.partner-item2 img {
  display: block;
  height: 84px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
}

.partner-name {
  margin-top: 14px;
  color: #1b2a4a;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
}

.partner-desc {
  margin-top: 6px;
  color: #3a3a3a;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   INQUIRY PAGE
   ========================================================================== */

.inquiry-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  background: rgba(28, 34, 37, 0.92);
}

.inquiry-nav-logo {
  flex: 0 0 auto;
}

.inquiry-nav-logo .penvill-logo {
  width: 150px;
}

.inquiry-nav .nav-inner {
  width: auto;
  flex: 1 1 auto;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.inquiry-nav .nav-links {
  padding: 0;
}

.inquiry-page {
  position: relative;
  min-height: 620px;
  padding: 164px 30px 72px;
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, 0.35), rgba(20, 20, 20, 0.45)),
    url("/images/ibg.webp");
  background-size: cover;
  background-position: center;
}

.inquiry-box {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 38px 40px 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.inquiry-box h1 {
  margin-bottom: 18px;
  color: var(--red);
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}

.inquiry-auth-status {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 120px;
  padding: 18px 0;
  color: #3a3a3a;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.inquiry-box:not(.is-auth-checking) .inquiry-auth-status {
  display: none;
}

.inquiry-box .inquiry-label {
  color: #3a3a3a;
  font-size: 15px;
}

.inquiry-box .radio-option {
  margin: 14px 0;
  font-size: 13px;
}

.inquiry-box .form-row {
  margin-bottom: 14px;
}

.inquiry-box .form-row label {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 800;
  color: #1c1c1c;
}

.inquiry-box .form-row input,
.inquiry-box .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  background: #fff;
}

.inquiry-box .btn-submit {
  display: block;
  width: 70%;
  margin: 22px auto 0;
  font-size: 18px;
}

.inquiry-box .form-status {
  min-height: 18px;
  margin-top: 12px;
}

/* Partner strip under the form */
.inquiry-partners {
  padding: 44px 30px 52px;
  text-align: center;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 250, 240, 0.85),
      rgba(250, 240, 222, 0.88)
    ),
    url("/images/map-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-hero {
  position: relative;
  padding: 104px 30px 72px;
  background-image:
    linear-gradient(rgba(202, 182, 143, 0.5)), url("/images/map-bg.jpg");
  background-size: cover;
  background-position: center;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.contact-info {
  background-color: #ffffff9d;
  padding: 44px 30px 52px;
  border-radius: 10px;
}
.contact-info h1 {
  margin-bottom: 28px;
  color: var(--red);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: 4px;
}

.contact-block {
  margin-bottom: 26px;
}

.contact-block h3 {
  margin-bottom: 6px;
  color: var(--red-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
}

.contact-block p {
  color: #2b2b2b;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-block a {
  font-family: Georgia, serif;
  color: #2b2b2b;
  font-weight: 800;
}

.contact-block a:hover {
  color: #7c7e06;
}

.contact-block .social-icons {
  gap: 30px;
}

.contact-block .social-icons a {
  width: 30px;
  height: 30px;
}

.contact-block .social-icons svg {
  width: 27px;
  height: 27px;
}

.contact-map {
  position: relative;
  min-height: 440px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.contact-map iframe {
  display: block;
  min-height: 440px;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.services-hero {
  position: relative;
  min-height: 560px;
  padding: 96px 30px 78px;
  text-align: center;
  background-color: #0e6f7a;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.18) 50%,
      rgba(238, 193, 168, 0.28)
    ),
    url("/images/abg.jpg");
  background-size: cover;
  background-position: center 44%;
}

.services-hero .navbar {
  position: fixed;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-hero-content h1 {
  margin-top: 0;
  color: white;
  font-size: clamp(54px, 6.4vw, 82px);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(10, 10, 10, 0.42),
    0 5px 12px rgba(0, 0, 0, 0.25);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(1250px, 100%);
  margin: 34px auto 0;
}

.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 190px;
  padding: 22px 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 8px;
  color: #050505;
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.service-btn img {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  object-fit: contain;
}

.service-btn:hover {
  transform: translateY(-2px);
  background: rgba(117, 100, 2, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 26px rgba(0, 0, 0, 0.25);
}

/* CTA band */
.services-cta {
  padding: 54px 0px 58px;
  text-align: center;
  background: white;
}

.services-cta h2 {
  color: #fff;
  font-size: clamp(24px, 6vw, 85px);
  font-weight: 900;
  letter-spacing: 2px;
  background-color: #790101;
}

.services-cta p {
  width: min(820px, 100%);
  margin: 16px auto 26px;
  color: #000000;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  font-size: 19px;
  letter-spacing: 1.5px;
}

/* Carousel band */
.services-carousel {
  position: relative;
  padding: 60px 30px 70px;
  background-image:
    linear-gradient(180deg, rgba(8, 52, 60, 0.62), rgba(8, 52, 60, 0.45)),
    url("/images/sbg.jpg");
  background-size: cover;
  background-position: center;
}

.services-carousel .tours-slideshow {
  width: min(880px, 92vw);
  height: clamp(260px, 30vw, 380px);
}

.services-carousel .tour-slide {
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
}

/* Visa & Passport */
.visa-section {
  padding: 56px 30px 66px;
  text-align: center;
  background: #f8e9e0;
}

.visa-section h2 {
  width: min(944px, 100%);
  margin-inline: auto;
  color: white;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: 5px;
  background-color: #850000;
  border-radius: 10px;
}

.visa-sub {
  margin-top: 8px;
  color: #7a2024;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.visa-text {
  width: min(760px, 100%);
  margin: 24px auto 40px;
  color: #3a3a3a;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.visa-text p {
  margin-top: 12px;
}

.visa-text a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
}

/* Continent groups + flag cards */
.continent-block {
  margin: 0 auto 44px;
}

.continent-block h3 {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 30px;
  color: #2e0101;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 3px;
}

.flag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.flag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  padding: 8px 6px 8px;
  border: 5px solid #fff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.18);
}

.flag-card img {
  display: block;
  width: 164px;
  height: 104px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.flag-card span {
  margin-top: 8px;
  color: #222;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}

/* Footer partner logo strip */
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 34px;
  width: min(1000px, 100%);
  margin: 30px auto 0;
  padding-top: 24px;
  border-top: 1px solid #e2d9cf;
}

.footer-partners img {
  display: block;
  height: 46px;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-partners + .footer-copy {
  margin-top: 22px;
}

/* About page responsive */
@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 30px;
  }
  .partner-item2 {
    max-width: max-content;
    min-height: 0%;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding-top: 150px;
  }
  .about-hero .navbar {
    top: 12px;
  }
  .about-intro,
  .about-founder,
  .about-partners {
    padding-inline: 22px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    min-height: 320px;
  }
  .partners-strip {
    align-items: center;
    gap: 26px;
  }
  .partner-item {
    max-width: 260px;
  }
  .partner-item2 {
    max-width: max-content;
    min-height: 0%;
  }
  .about-tags {
    justify-content: flex-start;
  }
  .hero-logo .penvill-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content .btn-gold {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 920px) {
  .services-hero {
    min-height: auto;
    padding-top: 120px;
  }
  .services-list {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    max-width: 760px;
  }
  .service-btn {
    min-height: 180px;
  }
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }
  .hero {
    min-height: 760px;
    height: auto;
  }
  .hero-title {
    margin-right: auto;
    margin-left: 51px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 120px;
  }

  .hero-destinations {
    left: 34px;
    right: auto;
    bottom: 34px;
    top: 580px;
  }

  .hero-dots {
    right: 40px;
    bottom: 250px;
  }

  .difference,
  .why-choose,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .difference {
    gap: 30px;
  }
  .difference-text {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .difference-logo {
    display: none;
  }
  .why-title {
    letter-spacing: 7px;
    text-align: left;
  }
  .footer-brand .penvill-logo {
    width: 118px;
  }
  .hero-logo .penvill-logo {
    margin-left: 75px;
    margin-right: auto;
  }
  .hero-content .btn-gold {
    margin-left: 125px;
    margin-right: auto;
  }
  .partner-item2 {
    max-width: max-content;
    min-height: 0%;
  }
  .visa-standalone {
    padding-top: 166px;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding: 112px 18px 54px;
  }
  .services-hero-content h1 {
    font-size: 48px;
  }
  .services-list {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 26px;
  }
  .service-btn {
    min-height: 165px;
    padding: 18px 10px 14px;
    font-size: 12px;
  }
  .service-btn img {
    width: 64px;
    height: 64px;
  }
  .inquiry-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }
  .inquiry-nav .nav-links {
    grid-template-columns: repeat(5, 1fr);
  }
  .inquiry-box {
    padding: 30px 22px 26px;
  }
  .navbar {
    top: 12px;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 90;
    padding: 10px;
  }
  .nav-inner {
    width: max-content;
    margin-right: 20px;
    padding: 4px;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.61);
  }
  .nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition:
      transform 0.18s ease,
      opacity 0.18s ease;
  }
  .nav-toggle span + span {
    margin-top: 5px;
  }
  .nav-inner.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-inner.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-inner.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(220px, calc(100vw - 20px));
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(28, 34, 37, 0.94);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  }
  .nav-inner.is-open .nav-links {
    display: grid;
  }
  .nav-links a {
    padding: 10px 14px;
    font-size: 13px;
    text-align: left;
  }
  .hero-content {
    padding: 128px 22px 280px;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    margin-left: auto;
    letter-spacing: 2px;
  }
  .penvill-logo {
    width: 180px;
    transform: scale(0.85);
  }
  .hero-destinations {
    left: 18px;
    right: 18px;
    justify-content: center;
    width: auto;
    max-width: none;
  }
  .hero-destinations-track {
    gap: 10px;
  }
  .dest-card {
    flex-basis: calc((100% - 20px) / 3);
    width: auto;
    height: 132px;
    border-radius: 12px;
  }
  .dest-card span {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .hero-dots {
    display: none;
  }
  .tour-packages-preview {
    padding: 38px 16px 34px;
  }
  .package-preview-row {
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .package-preview-card {
    flex: 0 0 min(46vw, 178px);
    max-width: none;
  }
  .package-preview-modal {
    padding: 18px;
  }
  .package-preview-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
  .privacy-main {
    padding-top: 48px;
  }
  .privacy-back-btn {
    top: 14px;
    left: 14px;
    min-width: 80px;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 12px;
  }
  .difference {
    padding-inline: 22px;
  }
  .inquiry-card {
    border-radius: 22px;
    padding-inline: 20px;
  }
  .video-section {
    height: 220px;
  }
  .tours-track {
    position: relative;
  }
  .tour-slide {
    display: block;
    width: 70%;
    height: 78%;
  }
  .tour-slide.is-active {
    width: 86%;
  }
  .tour-slide.is-prev {
    left: 6%;
  }
  .tour-slide.is-next {
    left: 94%;
  }
  .why-choose {
    padding: 34px 22px 40px;
  }
  .why-card {
    grid-template-columns: 48px 1fr;
    padding: 10px 12px;
    min-height: 70px;
  }
  .why-icon svg {
    width: 42px;
    height: 42px;
  }
  .accreditations {
    padding-inline: 22px;
  }
  .form-row.two-col {
    grid-template-columns: 1fr;
  }
  .hero-logo .penvill-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content .btn-gold {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 390px) {
  .services-list {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .service-btn {
    min-height: 160px;
  }
  .inquiry-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }
  .inquiry-nav .nav-links {
    grid-template-columns: repeat(5, 1fr);
  }
  .inquiry-box {
    padding: 30px 22px 26px;
  }
  .navbar {
    top: 12px;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 90;
    padding: 10px;
  }
  .nav-inner {
    width: max-content;
    margin-right: 20px;
    padding: 4px;
  }
  .nav-links {
    width: min(220px, calc(100vw - 20px));
  }
  .nav-links a {
    padding: 10px 14px;
    font-size: 13px;
    text-align: left;
  }
  .hero-content {
    padding: 128px 22px 280px;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 2px;
  }
  .penvill-logo {
    width: 180px;
    transform: scale(0.85);
  }
  .hero-destinations {
    left: 18px;
    right: 18px;
    justify-content: center;
    width: auto;
    max-width: none;
  }
  .hero-destinations-track {
    gap: 8px;
  }
  .dest-card {
    flex-basis: calc((100% - 16px) / 3);
    width: auto;
    height: 132px;
    border-radius: 12px;
  }
  .dest-card span {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .hero-dots {
    display: none;
  }
  .difference {
    padding-inline: 22px;
  }
  .inquiry-card {
    border-radius: 22px;
    padding-inline: 20px;
  }
  .video-section {
    height: 220px;
  }
  .tours-track {
    position: relative;
  }
  .tour-slide {
    display: block;
    width: 70%;
    height: 78%;
  }
  .tour-slide.is-active {
    width: 86%;
  }
  .tour-slide.is-prev {
    left: 6%;
  }
  .tour-slide.is-next {
    left: 94%;
  }
  .why-choose {
    padding: 34px 22px 40px;
  }
  .why-card {
    grid-template-columns: 48px 1fr;
    padding: 10px 12px;
    min-height: 70px;
  }
  .why-icon svg {
    width: 42px;
    height: 42px;
  }
  .accreditations {
    padding-inline: 22px;
  }
  .form-row.two-col {
    grid-template-columns: 1fr;
  }
  .hero-logo .penvill-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content .btn-gold {
    margin-left: auto;
    margin-right: auto;
  }
  .partner-item2 {
    max-width: max-content;
    min-height: 0%;
  }
  .visa-standalone {
    padding-top: 166px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* Background & Layout Setup */
.services-carousel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  overflow: hidden;
  transition: background-image 0.5s ease-in-out;
}

.tours-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px 40px;
  width: 100%;
  max-width: 1200px;
  align-items: flex-end;
}

/* Featured Active Poster (Left Column) */
.featured-card {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title Block Header (Right Top Column) */
.title-block {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.title-block h1 {
  font-family: "Georgia", serif;
  font-size: 3.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.title-block h2 {
  font-family: "Georgia", serif;
  font-size: 2.2rem;
  color: #ffc83b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 8px 0 0 0;
}

/* Thumbnails Row (Right Bottom Column) */
.thumbnails-row {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 20px;
}

.thumb-card {
  width: 160px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.thumb-card:hover {
  transform: translateY(-8px);
  border-color: #ffc83b;
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Controls */
.tours-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.tours-arrow.left {
  left: 30px;
}
.tours-arrow.right {
  right: 30px;
}

/* Pagination Dots */
.tours-dots {
  position: absolute;
  bottom: 25px;
  display: flex;
  gap: 10px;
}

.tours-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.tours-dots .dot.active {
  background: #00e5ff;
  transform: scale(1.2);
}
.featured-card img {
  cursor: zoom-in;
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Compact Visa & Passport flag slider */
.visa-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.flag-slider {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
}

.flag-track {
  display: flex;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 4px 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(133, 0, 0, 0.45) transparent;
}

.flag-track::-webkit-scrollbar {
  height: 8px;
}

.flag-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(133, 0, 0, 0.45);
}

.flag-track .flag-card {
  display: flex;
  flex: 0 0 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 150px;
  padding: 12px 10px 10px;
  border: 4px solid #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 8px 10px 18px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
}

.flag-track .flag-card img {
  width: 96px;
  height: 62px;
}

.flag-track .flag-card span {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0;
}

.flag-card small {
  margin-top: 4px;
  color: #7a2024;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.flag-slider-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #850000;
  box-shadow: 0 8px 18px rgba(95, 0, 0, 0.28);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.flag-slider-btn:hover {
  background: #a00000;
}

.flag-slider-btn:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

@media (max-width: 640px) {
  .visa-section {
    padding: 42px 16px 52px;
  }

  .visa-section h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .visa-sub {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .visa-text {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .flag-slider {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .flag-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .flag-track .flag-card {
    flex-basis: 132px;
    min-height: 138px;
  }
}

.visa-page {
  background: #f8e9e0;
}

.visa-standalone {
  min-height: 100vh;
  padding-top: 166px;
  background-image:
    linear-gradient(rgba(248, 233, 224, 0.527), rgba(248, 233, 224, 0.94)),
    url("/images/map-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.visa-back-btn {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: #850000;
  box-shadow: 0 8px 18px rgba(95, 0, 0, 0.26);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.visa-back-btn:hover {
  background: #a00000;
}

@media (max-width: 640px) {
  .visa-standalone {
    padding-top: 166px;
  }

  .visa-back-btn {
    top: 14px;
    left: 14px;
    min-width: 80px;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 12px;
  }
}

.ticketing-page {
  background: #0b302e;
}

.ticketing-standalone {
  min-height: 100vh;
  background: #0b302e;
}

.ticketing-carousel {
  min-height: 100vh;
  padding: 74px 72px 54px;
  background-color: #0b4d4e;
}

.ticketing-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 30, 31, 0.42);
  pointer-events: none;
}

.ticketing-carousel .tours-container {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(260px, 365px) minmax(320px, 1fr);
  gap: 18px 34px;
  max-width: 1060px;
}

.ticketing-carousel .featured-card {
  height: min(72vh, 500px);
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.48);
}

.ticketing-carousel .title-block {
  align-self: center;
  padding-bottom: 38px;
}

.ticketing-carousel .title-block h1 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.ticketing-carousel .title-block h2 {
  color: #ffd12a;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 0.95;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.42);
}

.package-inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 11px 30px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(180deg, #ffdc44 0%, #ffc327 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-inquiry-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.38);
}

.ticketing-carousel .thumbnails-row {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: min(760px, 100%);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ticketing-carousel .thumbnails-row::-webkit-scrollbar {
  display: none;
}

.ticketing-carousel .thumb-card {
  flex: 0 0 150px;
  width: 150px;
  height: 210px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: transparent;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
  scroll-snap-align: start;
}

.ticketing-carousel .thumb-card.active {
  border-color: #ffd12a;
  box-shadow:
    0 0 0 3px rgba(255, 209, 42, 0.35),
    0 14px 24px rgba(0, 0, 0, 0.4);
}

.ticketing-carousel .tours-arrow {
  z-index: 2;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.ticketing-carousel .tours-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.ticketing-carousel .tours-dots {
  display: none;
}

@media (max-width: 920px) {
  .ticketing-carousel {
    padding: 86px 54px 46px;
  }

  .ticketing-carousel .tours-container {
    grid-template-columns: minmax(220px, 310px) minmax(260px, 1fr);
    align-items: center;
  }

  .ticketing-carousel .featured-card {
    height: 430px;
  }

  .ticketing-carousel .thumb-card {
    flex-basis: 126px;
    width: 126px;
    height: 176px;
  }
}

@media (max-width: 640px) {
  .ticketing-carousel {
    min-height: 100vh;
    padding: 84px 18px 56px;
  }

  .ticketing-carousel .tours-container {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
  }

  .ticketing-carousel .featured-card {
    grid-column: 1;
    grid-row: 2;
    width: min(270px, 76vw);
    height: min(390px, 54vh);
    margin: 0 auto;
  }

  .ticketing-carousel .title-block {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .ticketing-carousel .title-block h1,
  .ticketing-carousel .title-block h2 {
    overflow-wrap: anywhere;
  }

  .ticketing-carousel .thumbnails-row {
    grid-column: 1;
    grid-row: 3;
    max-width: 100%;
    gap: 12px;
  }

  .ticketing-carousel .thumb-card {
    flex-basis: 102px;
    width: 102px;
    height: 142px;
  }

  .ticketing-carousel .tours-arrow {
    width: 40px;
    height: 40px;
  }

  .ticketing-carousel .tours-arrow.left {
    left: 10px;
  }

  .ticketing-carousel .tours-arrow.right {
    right: 10px;
  }
}
