:root {
  --ink: #263238;
  --muted: #6f7b83;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --line: #dfe8eb;
  --teal: #025658;
  --teal-dark: #01484a;
  --orange: #ae7c03;
  --navy: #173f54;
  --footer: #172a2d;
  --gold: #C8A76A;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: #dcebef;
  font-size: 13px;
}

.topbar .container,
.header .container,
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar .container {
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar-list,
.nav-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar-list {
  gap: 8px;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dcebef;
  font-weight: 700;
}

.topbar-phone svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.topbar-separator {
  color: rgba(220, 235, 239, 0.52);
  font-weight: 400;
}

.social-links {
  display: none;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.header,
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(23, 63, 84, 0.09);
}

.header .container,
.navbar .container {
  min-height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
}

.brand img,
.brand-logo {
  display: block;
  width: min(332px, 62vw);
  height: 85px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav,
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #33454d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a,
.nav-links a {
  display: block;
  padding: 30px 13px;
  color: #33454d;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav a:hover,
.nav a.active,
.nav-links a:hover,
.nav-links .active {
  background: var(--teal);
  color: #ffffff;
}

.nav a:hover,
.nav-links a:hover {
  transform: translateY(-2px);
}

.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  background: var(--orange);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(174, 124, 3, 0.18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn.teal {
  background: var(--teal);
}

.quote-btn {
  min-height: 44px;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(174, 124, 3, 0.18);
}

.btn:hover,
.quote-btn:hover,
.quote-btn:focus-visible,
.quote-btn:active {
  background: var(--teal-dark);
  box-shadow: 0 14px 26px rgba(2, 86, 88, 0.22);
  transform: translateY(-3px);
}

.breadcrumb-strip {
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  color: #ffffff;
  border-top: 4px solid var(--orange);
}

.breadcrumb-strip .container {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.breadcrumb-strip a {
  color: #d7eef0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(200, 167, 106, 0.28), transparent 28%),
    linear-gradient(118deg, #102f3c 0%, #025658 58%, #8c6f35 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.07) 47% 50%, transparent 50%),
    linear-gradient(90deg, rgba(13, 38, 45, 0.46), rgba(13, 38, 45, 0.12));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 186px;
  align-content: end;
  padding: 34px 0 30px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(24px, 3.15vw, 39px);
  line-height: 1.03;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: #edf8f8;
  font-size: 16px;
}

.contact-hero {
  background: #102f3c;
}

.contact-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 38, 45, 0.37) 0%, rgba(13, 38, 45, 0.19) 42%, rgba(13, 38, 45, 0.02) 100%),
    linear-gradient(180deg, rgba(2, 86, 88, 0.02), rgba(14, 31, 36, 0.06));
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-hero-media span {
  min-width: 0;
  background-position: center;
  background-size: cover;
}

.contact-hero-sightseeing {
  background-image: url("tour_experience/Slider-2-Desktop.jpg");
}

.contact-hero-golf {
  background-image: url("images/contact-hero-golf-couple-ai.png");
}

.contact-hero .container {
  z-index: 2;
  min-height: 300px;
  padding-bottom: 18px;
}

.hero .container {
  min-height: 274px !important;
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.hero-visual {
  min-height: 270px !important;
}

section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.tour-grid,
.article-grid,
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tour-card,
.article-card,
.destination-card,
.info-panel,
.contact-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(23, 63, 84, 0.08);
}

.tour-image,
.article-image,
.destination-image {
  min-height: 210px;
  background-position: center;
  background-size: cover;
}

.tour-body,
.article-body,
.destination-body,
.info-panel,
.contact-card {
  padding: 24px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-card h3,
.article-card h3,
.destination-card h3,
.info-panel h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.tour-card p,
.article-card p,
.destination-card p,
.info-panel p,
.contact-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-link {
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fbf8ef;
  font-weight: 700;
}

.cta-band {
  padding: 42px 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h2 {
  margin: 0 0 8px;
  color: #ffffff;
  text-transform: uppercase;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  color: var(--muted);
}

.contact-line a {
  color: var(--navy);
  font-weight: 800;
}

.contact-icon-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 !important;
}

.contact-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.contact-icon-only {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.contact-number-link {
  color: var(--navy);
  font-weight: 800;
  margin-left: 4px;
}

.contact-separator {
  color: #b8a36a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin: 0 1px;
}

.contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--teal);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.contact-icon.whatsapp {
  background: #128c7e;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.article-detail {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  padding: 38px;
  box-shadow: 0 12px 30px rgba(23, 63, 84, 0.08);
}

.article-detail h2 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-detail p {
  margin: 0 0 18px;
  color: var(--muted);
}

.article-detail ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
}

.article-detail strong {
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  padding: 14px;
}

.footer {
  background: var(--footer);
  color: #b8c7cc;
  padding: 44px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 26px;
}

.footer h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li,
.footer p {
  margin: 0 0 8px;
}

.footer a {
  color: #d6b46c;
}

.footer-bottom {
  margin-top: 34px;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 920px) {
  .header .container,
  .navbar .container,
  .topbar .container,
  .section-head,
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .navbar .container {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .navbar nav {
    width: 100%;
    display: none;
  }

  .navbar.nav-open nav {
    display: block;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav a,
  .nav-links a {
    padding: 10px 8px;
  }

  .nav-links {
    display: grid;
    width: 100%;
    gap: 0;
    margin-top: 14px;
    border: 1px solid var(--line);
    background: #ffffff;
  }

  .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .navbar .quote-btn {
    display: none;
  }

  .tour-grid,
  .article-grid,
  .destination-grid,
  .split,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar-list {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-logo,
  .brand img {
    width: min(250px, 72vw);
    height: 64px;
  }

  .contact-hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .contact-hero-golf {
    display: block;
  }

  .contact-hero .container {
    min-height: 430px;
    padding-bottom: 22px;
  }

  .contact-hero::before {
    background:
      linear-gradient(180deg, rgba(13, 38, 45, 0.03) 0%, rgba(13, 38, 45, 0.08) 44%, rgba(13, 38, 45, 0.58) 100%),
      linear-gradient(90deg, rgba(13, 38, 45, 0.34), rgba(13, 38, 45, 0.06));
  }
}
