/* ======================================
   GLOBAL: COLOURS, RESETS, TYPO
====================================== */

:root {
  --navy: #0b1f33;       /* deep navy */
  --navy-soft: #152642;  /* softer navy for gradients if needed */
  --gold: #c89b3c;       /* premium gold */
  --sand: #f7f5f0;       /* light warm background */
  --white: #ffffff;
  --sky: #8bbfe7;        /* accent blue */
  --text-dark: #202020;
  --text-muted: #696969;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.16);
  --max-width: 1150px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--sand);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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



/* ======================================
   HEADER & NAVIGATION
====================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  z-index: 1000;
}

.logo {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo span:nth-child(2) {
  font-weight: 300;
  font-size: 0.8rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    width: 220px;
    padding: 0.75rem 1rem 1rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    border-radius: 0 0 0 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }
}

/* ======================================
   BASE LAYOUT
====================================== */

main {
  padding-top: 70px;
}

section {
  padding: 3rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--navy);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.section-intro {
  margin: 0.75rem 0 1.5rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* ======================================
   BUTTONS
====================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: #d9b85a;
  border-color: #d9b85a;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

/* a dark-outline version for light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ======================================
   HERO – HOME (FULL WIDTH, DARK NAVY)
====================================== */

.hero {
  width: 100vw;
  max-width: none;
  padding: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to bottom right,
      rgba(11, 31, 51, 0.2),
      rgba(11, 31, 51, 0.45)
    ),
    url("images/Main-page/hero-bridge.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.98);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 1.5rem;
}

.hero h1 {
  color: #f2d28a;
  text-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero p {
  color: #ffffff;
  text-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 30rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ======================================
   HERO – SMALL (TOURS OVERVIEW)
====================================== */

.hero-small {
  width: 100vw;
  max-width: none;
  padding: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 50vh;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-small::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to bottom right,
      rgba(11, 31, 51, 0.6),
      rgba(11, 31, 51, 0.9)
    ),
    url("images/Main-page/hero-bridge.webp"); /* can be overridden per page */
  background-size: cover;
  background-position: center;
  filter: brightness(0.98);
}

.hero-small .hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.hero-small .hero-inner h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
  color: #f2d28a;
  text-shadow: 0px 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-small .hero-inner p {
  max-width: 32rem;
  font-size: 0.98rem;
  color: #fefefe;
  text-shadow: 0px 3px 12px rgba(0, 0, 0, 0.6);
}

/* ======================================
   HOME – TOURS / TRANSFERS CARDS
====================================== */

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}

.link-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  color: var(--white);
  min-height: 200px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.link-card.tours::before {
  background-image: url("images/Main-page/hero-bridge.webp");
}

.link-card.transfers::before {
  background-image: url("images/Main-page/hero-bridge.webp");
}

.link-card:hover::before {
  opacity: 1;
  transform: scale(1.03);
}

.link-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.25)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.4rem;
}

.link-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.link-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}

.link-card span.tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ======================================
   HOME – ABOUT & CONTACT
====================================== */

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.about-highlight {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(200, 155, 60, 0.08);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.about-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.about-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--navy);
}

.about-card ul {
  padding-left: 1.1rem;
}

.about-card li + li {
  margin-top: 0.25rem;
}

.contact-list {
  list-style: none;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-label {
  font-weight: 600;
  color: var(--navy);
}

/* ======================================
   TOURS OVERVIEW – GRID
====================================== */

.tour-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
}

.tour-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 51, 0.15);
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}

.tour-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  color: var(--navy);
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.tour-card-image {
  position: relative;
  height: 170px;
  background-size: cover;
  background-position: center;
}

.tour-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
}

.tour-card-tag {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 31, 51, 0.9);
  color: var(--gold);
  border: 1px solid rgba(200, 155, 60, 0.7);
}

.tour-card-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.tour-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.tour-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tour-card-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-top: 0.2rem;
  flex-grow: 1;
}

.tour-card-footer {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.tour-card-footer span.price {
  font-weight: 600;
  color: var(--navy);
}

.tour-card-footer span.cta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* ======================================
   TOUR DETAIL PAGES (/tours/...)
====================================== */

.tour-page {
  background: var(--sand);
  color: var(--text-dark);
}

.tour-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px 64px;
}

/* HERO for tour pages (image set in HTML) */
.tour-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  max-height: 520px;
  color: var(--white);
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  margin-bottom: 32px;
}

.tour-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.95);
  transform: scale(1.03);
}

.tour-hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 16px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tour-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(11, 31, 51, 0.85);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
  border: 1px solid rgba(200, 155, 60, 0.45);
}

.tour-hero-title {
  font-size: clamp(1.9rem, 3vw + 1rem, 2.6rem);
  max-width: 700px;
  margin-bottom: 8px;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.8);
}

.tour-hero-subtitle {
  max-width: 560px;
  color: #dde4ef;
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-badge-text {
  font-size: 0.8rem;
  color: #e0e4ef;
}

/* Shared card style on light background */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Grid helpers */

.grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 2fr 1.2fr;
  }
}

/* QUICK FACTS */

.quick-facts {
  margin-top: -34px;
}

.quick-facts-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  font-size: 0.85rem;
}

.quick-fact {
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 155, 60, 0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-fact-label {
  font-weight: 500;
  color: var(--gold);
}

.quick-fact-value {
  color: var(--navy);
}

.quick-fact-icon {
  font-size: 1rem;
}

/* INTRO + BOOKING */

.intro-text p {
  font-size: 0.96rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.intro-text p + p {
  margin-top: 6px;
}

.booking-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-main {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
}

.booking-badge {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(200, 155, 60, 0.6);
  color: var(--navy);
  background: rgba(248, 245, 236, 0.9);
}

.booking-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* HIGHLIGHTS */

.highlights-list {
  display: grid;
  gap: 14px;
}

@media (min-width: 700px) {
  .highlights-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.highlight-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(200, 155, 60, 0.25);
}

.highlight-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.highlight-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ITINERARY */

.itinerary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.itinerary-item {
  border-radius: 12px;
  padding: 10px 12px;
  background: #fdfbf7;
  border: 1px solid rgba(200, 155, 60, 0.25);
}

.itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.itinerary-time {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.itinerary-stop {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.itinerary-body {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.itinerary-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 60, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* INCLUDED / NOT INCLUDED & PRACTICAL INFO */

.list-columns {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .list-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.list-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(248, 245, 236, 0.9);
  border: 1px solid rgba(200, 155, 60, 0.18);
  color: var(--navy);
}

.info-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* MAP */

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200, 155, 60, 0.2);
  min-height: 260px;
}

.map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

/* REVIEWS */

.reviews-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.review-card {
  padding: 14px 14px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(200, 155, 60, 0.18);
  font-size: 0.85rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: #f4d27b;
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.review-name {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RELATED TOURS */

.related-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 800px) {
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.related-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(200, 155, 60, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.related-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.related-title {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.related-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.related-footer {
  margin-top: 6px;
}

/* FINAL CTA */

.final-cta {
  text-align: center;
  margin-top: 40px;
  padding: 22px 18px;
  border-radius: 22px;
  background: radial-gradient(
    circle at top,
    rgba(200, 155, 60, 0.12),
    rgba(247, 245, 240, 1)
  );
  border: 1px solid rgba(200, 155, 60, 0.35);
}

.final-cta p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ======================================
   FOOTER
====================================== */

footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  font-size: 0.8rem;
  color: rgba(11, 31, 51, 0.7);
}
