body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.topbar {
  background: #0b2340;
}

.nav-main .logo {
  height: 44px;
}

.nav-main .nav-link {
  font-weight: 500;
  margin-left: 0.75rem;
}

.nav-main .nav-link:hover {
  color: #0b2340;
}

/* Hero */
.hero-section {
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-card-lg {
  grid-column: 1 / 3;
  padding: 1.25rem;
}

.hero-card-sm {
  padding: 1rem;
}

/* Search box */
.search-box input {
  max-width: 420px;
}

/* Destination cards */
.destination-card {
  height: 220px;
  border-radius: 14px;
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Tours & cards */
.tour-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tour-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover .tour-img {
  transform: scale(1.07);
}

/* Breadcrumb */
.breadcrumb-section {
  position: relative;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Info pill */
.info-pill {
  border-radius: 1.5rem;
}

/* Tour hero */
.tour-hero {
  position: relative;
  min-height: 260px;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

/* Highlight box */
.highlight-box {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.highlight-box:hover {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Sidebar */
.sidebar-box {
  border-left: 4px solid #0b2340;
}

/* Booking */
.booking-box {
  border-radius: 1.5rem;
}

/* Contact */
.contact-card {
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.contact-info p i {
  width: 20px;
}

.contact-section form label i {
  color: #ff7a00;
  margin-right: 5px;
}

/* Testimonial */
.testimonial-box {
  max-width: 650px;
}

/* Footer */
.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .hero-card-grid {
    display: none;
  }
}
