/* ============================
   Global & Layout
   ============================ */
:root {
  --max-width: 1100px;
  --accent: #c58b2f;
  --muted: #6c757d;
}

* { box-sizing: border-box; }

body { 
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; 
  color: #222; 
  line-height: 1.45; 
}

.container { 
  max-width: var(--max-width); 
  margin: 0 auto; 
  padding-left: 15px; 
  padding-right: 15px; 
}

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

/* ============================
   Floating Contact Button
   ============================ */
.contact-float { 
  position: fixed; 
  bottom: 20px; 
  right: 20px; 
  z-index: 1200; 
  padding: 12px 16px; 
  border-radius: 50%; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.15); 
}

/* ============================
   Cards
   ============================ */
.card-img-top { 
  height: 220px; 
  object-fit: cover; 
  display: block; 
  width: 100%; 
}

.card-overlay-badge { 
  position: absolute; 
  top: 10px; 
  left: 10px; 
  z-index: 3; 
}

.card-rating { 
  position: absolute; 
  top: 10px; 
  right: 10px; 
  z-index: 3; 
  background: rgba(255,255,255,0.95); 
  padding: 6px 10px; 
  border-radius: 8px; 
  font-weight: 700; 
  font-size: 0.9rem;
}

.card-img-wrapper { position: relative; }

.card-availability-strip { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  background: rgba(0,0,0,0.6); 
  color: #fff; 
  text-align: center; 
  padding: 6px 0; 
  font-weight: bold; 
  font-size: 0.95rem; 
  z-index: 3; 
}

.card-body .d-flex { 
  flex-wrap: nowrap; 
  gap: .5rem; 
}

.card-body .btn { 
  white-space: nowrap; 
  font-size: 0.9rem; 
  padding: 6px 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex: 1; 
  min-width: 0; 
}

/* ============================
   Hero Carousel
   ============================ */
#heroCarousel { 
  max-height: 70vh; 
  overflow: hidden; 
  margin-bottom: 32px; 
}

.hero-img { 
  object-fit: cover; 
  height: 70vh; 
  filter: brightness(70%); 
  width: 100%; 
}

#heroCarousel .carousel-caption { bottom: 20%; text-align: center; }

#heroCarousel .carousel-caption h1 { 
  font-size: 2.5rem; 
  font-weight: bold; 
  color: #fff; 
  text-shadow: 0 2px 5px rgba(0,0,0,0.8); 
}

#heroCarousel .carousel-caption p { 
  font-size: 1.2rem; 
  color: #f1f1f1; 
}

/* ============================
   Tour Detail Page
   ============================ */
.tour-header { margin-top: 10px; margin-bottom: 18px; }
.tour-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.tour-header .lead { color: var(--muted); font-size: 1rem; max-width: 900px; margin: 0 auto; }

/* Section title style */
.section-title { 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: var(--accent); 
  margin-bottom: 12px; 
  display: inline-block; 
  padding-left: 10px; 
  /* border-left: 6px solid #f0d9b3;  */
}

/* Highlights */
.highlight-list { 
  list-style: none; 
  padding-left: 0; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
}
.highlight-list li { 
  background: #fff; 
  border-radius: 8px; 
  padding: 10px 14px; 
  box-shadow: 0 1px 4px rgba(0,0,0,0.05); 
}

/* Inclusions/Exclusions */
.inclusions-list, .exclusions-list { list-style: none; padding-left: 0; }
.inclusions-list li::before { content:"✔ "; color:#28a745; font-weight:700; }
.exclusions-list li::before { content:"✗ "; color:#dc3545; font-weight:700; }

/* Pricing */
.pricing-card { text-align: center; }

/* Itinerary */
.itinerary-list { display: flex; flex-direction: column; gap: 10px; }
.itinerary-item { background: #fff; border-radius: 8px; padding: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

/* Viewing Days */
.viewing-days .badge { border-radius: 20px; padding: 8px 12px; font-weight: 600; }
.viewing-days .bg-success { background: #dff0d8; color: #2b7a2b; }
.viewing-days .bg-light { background: #f2f2f2; color: #8a8a8a; }

/* Gallery */

/* Gallery - make images consistent */
.gallery-section .row > div {
  display: flex;
}

.gallery-section img {
  width: 100%;
  height: 220px;       /* fixed height for consistency */
  object-fit: cover;   /* crops without distortion */
  border-radius: 8px;  /* optional rounded corners */
  transition: transform .2s ease-in-out;
}
.gallery-section img:hover {
  transform: scale(1.03);
}

/* Reviews */
.review-card { 
  width: 260px; 
  background: #fff; 
  border-radius: 10px; 
  box-shadow: 0 1px 6px rgba(0,0,0,0.06); 
  padding: 14px; 
}


/* Booking card sticky */
.sticky-booking { position: sticky; top: 20px; }

/* Booking response */
#bookingResponse .alert { margin-bottom: 0; }

/* ============================
   Responsive tweaks
   ============================ */
@media (max-width: 767px) {
  .card-img-top { height: 180px; }
  #heroCarousel .carousel-caption h1 { font-size: 1.6rem; }
  .sticky-booking { position: static; }
  .card-body .d-flex { flex-wrap: wrap; }
}

/* ============================
   Navbar / Header styling
   ============================ */

.navbar {
  font-size: 1rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar-brand { 
  font-weight: 700; 
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}

.text-accent { color: var(--accent); }

.navbar-toggler { border: none; }
.navbar-toggler-icon { filter: none; }

/* Links */
.navbar-nav .nav-link {
  color: #333;
  padding: 8px 14px;
  transition: color .15s ease, background .15s ease;
  border-radius: 6px;
  margin-left: 4px;
}

.navbar-nav .nav-link:hover {
  color: var(--accent);
  background: rgba(197,139,47,0.08);
}

/* Active state */
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(197,139,47,0.12);
}

/* small CTA in nav */
.navbar .btn-outline-primary {
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 600;
}

/* responsive tweaks */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 10px 8px; }
  .navbar .btn-outline-primary { display: none; } /* hide CTA on small screens */
}

/* ============================
   Why Us Section
   ============================ */
.why-us-section .why-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
  height: 100%;
}
.why-us-section .why-card:hover {
  transform: translateY(-4px);
}
.why-us-section .why-icon {
  font-size: 2rem;
  color: var(--accent);
}
.why-us-section h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-us-section p {
  font-size: 0.95rem;
  color: var(--muted);
}


/* ============================
   Partners - Larger Circular Cards
   ============================ */
.partners-section {
  background: var(--neutral-light, #fafafa);
  padding: 60px 0;
}

/* Centered heading already via text-center; small style polish */
.partners-section .section-title {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-align: center;
}

/* Grid container - larger gap */
.partners-grid {
  gap: 4.5rem;                /* bigger spacing between cards */
  align-items: center;
  justify-content: center;
}

/* Each partner card (vertical stack) */
.partner-card {
  width: 260px;               /* wider card so circle + name fit nicely */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* circular container - increased size */
.partner-card-inner {
  height: 190px;             /* larger circle */
  width: 190px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

/* logo inside circle - full color by default */
.partner-logo {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: none;              /* show real colors always */
  transition: transform 0.25s ease;
}

/* company name below circle */
.partner-name {
  margin-top: 14px;
  font-weight: 700;
  color: #333;
  font-size: 1rem;
}

/* hover behavior - subtle lift */
.partner-card-inner:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12);
}
.partner-card-inner:hover .partner-logo {
  transform: scale(1.03);
}

/* responsive: stack nicely on small screens */
@media (max-width: 992px) {
  .partner-card { width: 45%; margin-bottom: 1.25rem; }
  .partner-card-inner { height: 160px; width: 160px; }
}

@media (max-width: 576px) {
  .partners-grid { gap: 1.25rem; }
  .partner-card { width: 100%; }
  .partner-card-inner { height: 140px; width: 140px; }
  .partner-name { font-size: 0.95rem; }
}


/* ============================
   Footer Styling (Improved)
   ============================ */
.site-footer {
  background: #111;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer .footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
}

.site-footer .footer-list li {
  margin-bottom: 0.6rem; /* spacing between links */
}

.site-footer a {
  color: #ccc;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--accent, #c58b2f);
}

.site-footer .map-container {
  border: 2px solid #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-top: 0.5rem;
}

.site-footer hr {
  opacity: 0.15;
}

.site-footer .footer-links a {
  font-size: 0.9rem;
}
