.center {
  text-align: center;
}

.site-header {
  padding: 24px 0;
  background-color: rgba(
    10,
    45,
    77,
    0.5
  ); /* Slightly darker for better visibility */
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px); /* Default frosted glass effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky; /* Changed from fixed to sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background-color 0.3s,
    backdrop-filter 0.3s; /* Added backdrop-filter to transition */
}

.site-header.nav-scrolled {
  background-color: rgba(10, 45, 77, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.site-footer {
  padding: 64px 0;
  background-color: var(--color-primary-900);
  color: var(--color-bg);
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(10, 45, 77, 0.5);
  color: white;
  font-family: var(--font-body);
  font-weight: var(--fw-med);
  font-size: 12px;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: var(--color-accent-500);
  color: var(--color-primary-900);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../../public/images/hero\ 01.jpg") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 150px; /* Space for the sticky header */
  padding-bottom: 200px;
  margin-top: -96px; /* Pull hero section up under the header */
  color: white;
  text-align: center;
  height: 35vh;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 64px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  color: white;
  margin-bottom: 16px;
}

.hero-contact {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1543832923-446b7a492e85?q=80&w=1974&auto=format&fit=crop")
      center/cover no-repeat;
}

.tour-card {
  background: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid var(--color-border);
}

.tour-card:hover {
  transform: translateY(-4px); /* Slightly more subtle lift */
  box-shadow: var(--shadow-lg);
}

.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0; /* Match card border-radius */
}

.tour-card-content {
  padding: 32px; /* Increased padding */
}

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

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-head);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: white;
}

.site-header.nav-scrolled .logo {
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  font-weight: var(--fw-bold);
}

.nav-links li {
  margin-left: 32px;
}

.language-select {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  margin-left: 16px;
  outline: none;
}

.language-select option {
  background-color: var(--color-primary-900);
  color: white;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 2px;
}

.why-us-section {
  background-color: var(--color-bg);
  padding: 80px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.why-us-item {
  text-align: center;
}

.why-us-item h3 {
  color: var(--color-accent-700);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 32px;
  align-items: start;
  padding: 48px 0 24px;
}

.footer-about p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-socials h3 {
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-bg);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
  text-decoration: none;
}

.social-link .icon {
  display: block;
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.03);
  background: var(--color-accent-500);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  color: var(--color-primary-900);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 16px;
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 0;
  }
  .main-nav {
    position: relative;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 45, 77, 0.96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 110;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }
  .site-header.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links li {
    margin-left: 0;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .nav-links a.btn {
    text-align: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links a {
    margin-left: 0;
    margin-right: 12px;
  }
}

.gallery-section {
  padding: 80px 0;
  background-color: var(--color-surface);
}

.slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.slides {
  position: relative;
  height: 500px; /* fixed height for the slider area */
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-in-out,
    transform 0.6s ease;
  transform: scale(1.02);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: scale(1);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.6); /* Slightly more transparent */
  border: none;
  padding: 12px;
  border-radius: 8px; /* Square border radius */
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-btn:hover {
  background-color: white;
}

.slider-btn.prev {
  left: 24px;
}

.slider-btn.next {
  right: 24px;
}

.contact-section {
  padding: 80px 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.2); /* Use a calculated rgba from primary-500 */
}

.error-message {
  color: #d9534f;
  margin-top: 8px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--color-surface);
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  text-align: center;
}

.value-item h3 {
  color: var(--color-primary-900);
  margin-bottom: 16px;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid var(--color-accent-500);
}

.team-member h3 {
  color: var(--color-primary-900);
  margin-bottom: 8px;
}

.team-member p {
  color: var(--color-muted);
}

.tour-grid {
  padding: 70px 0;
}

.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

nav[aria-label="Breadcrumb"] {
  margin-bottom: 20px;
}

nav[aria-label="Breadcrumb"] p {
  margin: 0;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
}

nav[aria-label="Breadcrumb"] a {
  color: var(--color-primary-700);
  font-weight: var(--fw-med);
}

nav[aria-label="Breadcrumb"] a:hover {
  color: var(--color-primary-900);
}

.guide-page {
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 45%);
}

.guide-hero {
  color: #fff;
  padding: 88px 0 72px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 28, 46, 0.72), rgba(8, 28, 46, 0.5));
}

.guide-hero .container {
  position: relative;
  z-index: 1;
}

.guide-hero h1 {
  color: #fff;
  margin: 10px 0 12px;
  max-width: 900px;
}

.guide-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.95);
}

.guide-page .section-padding {
  padding-top: 48px;
}

.guide-article {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 36px;
}

.guide-article h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.guide-article p {
  margin-top: 0;
}

.related-guides {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.related-guides ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.guide-best-time .guide-hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=80");
}

.guide-gorilla-cost .guide-hero {
  background-image: url("https://images.unsplash.com/photo-1574870111867-089730e5a72b?auto=format&fit=crop&w=1800&q=80");
}

.guide-safari-eu-us .guide-hero {
  background-image: url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1800&q=80");
}

.guide-visa-entry .guide-hero {
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80");
}

.guide-family .guide-hero {
  background-image: url("https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?auto=format&fit=crop&w=1800&q=80");
}

.guide-honeymoon .guide-hero {
  background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80");
}

@media (max-width: 760px) {
  .guide-hero {
    padding: 68px 0 56px;
  }

  .guide-article {
    padding: 24px;
  }
}
.contact-form--spaced {
  margin-top: 48px;
}

.contact-form select {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  background: #fff;
  color: var(--color-muted);
}

.contact-form select:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.2);
}

@media (max-width: 760px) {
  .section-padding {
    padding: 56px 0;
  }
}

/* Global premium polish */
.site-header {
  padding: 18px 0;
  background-color: rgba(6, 33, 55, 0.65);
}

.site-header.nav-scrolled {
  background-color: rgba(6, 33, 55, 0.9);
}

.logo {
  font-size: 30px;
  letter-spacing: 0.4px;
}

.nav-links a {
  font-size: 15px;
}

.btn {
  padding: 11px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  text-decoration: none;
}

.hero {
  margin-top: -78px;
  min-height: 56vh;
  height: auto;
  padding-top: 136px;
  padding-bottom: 128px;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  margin: 0 auto 14px;
  max-width: 20ch;
}

.hero p {
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 65ch;
  font-size: clamp(16px, 2vw, 21px);
}

.tour-card {
  border-radius: 14px;
}

.tour-card:hover {
  transform: translateY(-6px);
}

.tour-card-content {
  padding: 28px;
}

.tour-card-content h2,
.tour-card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.tour-card-content p {
  margin-top: 0;
  margin-bottom: 16px;
}

.grid {
  gap: 28px;
}

.why-us-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.why-us-section .container > .btn {
  margin-top: 26px;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.floating {
  background: var(--color-accent-700);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-section > .container > p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.trust-strip {
  background: linear-gradient(90deg, #f4ede0 0%, #f9f6ef 100%);
  border-top: 1px solid #eadfc9;
  border-bottom: 1px solid #eadfc9;
  padding: 54px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.trust-strip .section-intro {
  margin-bottom: 20px;
}

.trust-item {
  background: #fff;
  border: 1px solid #eadfc9;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.trust-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--color-primary-900);
}

.trust-item p {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
}

@media (max-width: 760px) {
  .hero {
    min-height: 52vh;
    padding-top: 122px;
    padding-bottom: 78px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tour-card-content {
    padding: 20px;
  }
  .contact-form {
    padding: 16px;
  }
}

/* Conversion and credibility sections */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.trust-badge {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.55;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.itinerary-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: grid;
  gap: 12px;
  border-top: 4px solid var(--color-accent-700);
}

.itinerary-card h3 {
  margin: 0;
}

.itinerary-meta {
  margin: 0;
  color: var(--color-primary-700);
  font-size: 15px;
  font-weight: var(--fw-med);
}

.itinerary-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.itinerary-card .btn {
  margin-top: 8px;
}

.booking-trust-row {
  margin: 18px auto 0;
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.booking-trust-row span {
  background: #f4ede0;
  color: var(--color-primary-900);
  border: 1px solid #eadfc9;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
}

.booking-success {
  margin: 26px auto 0;
  max-width: 860px;
  border: 1px solid #d9e8db;
  background: #f1fbf3;
  border-radius: 12px;
  padding: 22px;
}

.booking-success h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.booking-success p {
  margin-top: 0;
}

.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Homepage layout polish */
.home-page .section-intro {
  margin-bottom: 24px;
}

.home-page main > section {
  scroll-margin-top: 88px;
}

.home-page #tours,
.home-page #why-us,
.home-page #gallery,
.home-page #faq,
.home-page #contact {
  padding: 78px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  margin-top: 0;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-primary-700);
}

.final-cta-section {
  background: linear-gradient(180deg, #f8f1e2 0%, #fdfcfa 100%);
}

.final-cta-card {
  background: var(--color-primary-900);
  border-radius: 16px;
  padding: 34px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.final-cta-card h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
}

.final-cta-card p {
  margin: 0 auto 18px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

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

/* Responsive hardening: desktop, tablet, mobile */
@media (max-width: 1100px) {
  .container {
    padding: 0 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 5.2vw, 54px);
  }

  .hero p {
    font-size: clamp(16px, 1.9vw, 19px);
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .visual-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-tile--tall {
    grid-row: span 1;
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 12px;
  }

  .slider {
    max-width: 100%;
  }

  .slides {
    height: 380px;
  }

  .destination-card img {
    min-height: 210px;
  }

  .destination-card {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    padding: 26px 22px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 0;
  }

  .logo {
    font-size: 26px;
  }

  .hero {
    margin-top: -64px;
    min-height: 48vh;
    padding-top: 108px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .section-padding,
  .home-page #tours,
  .home-page #why-us,
  .home-page #gallery,
  .home-page #faq,
  .home-page #contact {
    padding: 54px 0;
  }

  .grid,
  .destination-grid,
  .trust-badges-grid,
  .itinerary-grid,
  .testimonial-grid,
  .tour-highlights-gallery,
  .booking-visual-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour-card-content,
  .destination-card-content,
  .itinerary-card,
  .testimonial-card {
    padding: 18px;
  }

  .slides {
    height: 280px;
  }

  .slider-btn {
    padding: 8px;
  }

  .contact-form {
    padding: 14px;
    gap: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px;
  }

  .final-cta-actions .btn,
  .booking-success-actions .btn {
    width: 100%;
  }

  .floating {
    bottom: 14px;
    right: 14px;
    padding: 10px 14px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    min-height: 42vh;
    padding-top: 98px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .section-intro p,
  .tour-card-content p,
  .destination-card-content p {
    font-size: 15px;
  }

  .trust-item,
  .destination-meta,
  .itinerary-meta {
    font-size: 13px;
  }
}

/* Destinations section */
.destinations-section {
  background: linear-gradient(180deg, #f9f6ef 0%, #fdfcfa 38%, #ffffff 100%);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.destination-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.destination-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.destination-card-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-card-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.destination-meta {
  margin: 0 0 10px;
  color: var(--color-primary-700);
  font-size: 14px;
  font-weight: var(--fw-med);
}

.destination-card-content p {
  margin-top: 0;
  margin-bottom: 14px;
}

/* About page spacing tune-up */
.about-page .hero {
  min-height: 42vh;
  padding-top: 118px;
  padding-bottom: 82px;
}

.about-page .section-padding {
  padding: 48px 0;
}

.about-page h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.about-page #our-story p,
.about-page #our-mission p {
  margin: 0 0 12px;
}

.about-page .three-col-grid {
  gap: 20px;
}

.about-page .value-item {
  padding: 16px;
}

@media (max-width: 760px) {
  .about-page .hero {
    min-height: 34vh;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .about-page .section-padding {
    padding: 34px 0;
  }
}

/* Final branding pass */
.hero-home {
  background-image:
    linear-gradient(rgba(7, 28, 46, 0.58), rgba(7, 28, 46, 0.48)),
    url("../../public/images/hero 01.jpg");
}

.hero-tours {
  background-image:
    linear-gradient(rgba(7, 28, 46, 0.58), rgba(7, 28, 46, 0.48)),
    url("../../public/images/hero 03.jpg");
}

.hero-guides {
  background-image:
    linear-gradient(rgba(7, 28, 46, 0.58), rgba(7, 28, 46, 0.48)),
    url("../../public/images/hero 02.jpg");
}

.hero-about {
  background-image:
    linear-gradient(rgba(7, 28, 46, 0.6), rgba(7, 28, 46, 0.5)),
    url("../../public/images/bibhash-polygon-cafe-banerjee-bgzpREiqplc-unsplash.jpg");
}

.hero-booking {
  background-image:
    linear-gradient(rgba(7, 28, 46, 0.6), rgba(7, 28, 46, 0.5)),
    url("../../public/images/redcharlie-xtvo0ffGKlI-unsplash.jpg");
}

.hero-contact {
  background-image:
    linear-gradient(rgba(7, 28, 46, 0.62), rgba(7, 28, 46, 0.5)),
    url("../../public/images/paul-zoetemeijer-ekBOf6sJYYo-unsplash.jpg");
}

main section {
  animation: fadeUp 0.6s ease both;
}

main section:nth-of-type(2) {
  animation-delay: 0.06s;
}

main section:nth-of-type(3) {
  animation-delay: 0.12s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  main section {
    animation: none;
  }
}

/* Professional image-rich sections */
.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 26px;
}

.section-intro p {
  margin: 10px auto 0;
}

.visual-showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.photo-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-tile:hover img {
  transform: scale(1.05);
}

.photo-tile--tall {
  grid-row: span 2;
  min-height: 460px;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.photo-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: var(--fw-med);
}

.tour-highlights-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.tour-highlights-gallery .photo-tile {
  min-height: 210px;
}

.booking-visual-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.booking-visual-grid .photo-tile {
  min-height: 180px;
}

@media (max-width: 900px) {
  .visual-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-tile--tall {
    grid-row: span 1;
    min-height: 250px;
  }
  .booking-visual-grid {
    grid-template-columns: 1fr;
  }
}
