body {
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
  background-color: #fffdf9;
}

h1, h2, h3, h4 {
  color: #b68c2e; /* Gold accent */
  font-weight: 600;
}

/* --- Bootstrap Overrides --- */
.navbar {
  font-size: 1rem;
}
.navbar .nav-link {
  color: #555 !important;
  transition: color .3s ease;
}
.navbar .nav-link:hover {
  color: #b68c2e !important;
}

.btn-warning {
  background-color: #b68c2e;
  border-color: #b68c2e;
  color: #fff;
}
.btn-warning:hover {
  background-color: #a27c20;
}

footer {
  background: #fff;
  color: #444;
  font-size: 0.9rem;
}

/* ===== HERO SLIDES & CAROUSEL STYLING ===== */
.hero-slide {
  height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}
.fade-text {
  animation: fadeInUp 1.4s ease both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.carousel-caption {
  bottom: 25px;
  left: 0;
  right: 0;
  padding: 12px 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ===== Standardized Carousel Image Height ===== */
.carousel-item img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .carousel-item img {
    height: 360px;
  }
  .hero-slide {
    height: 70vh;
  }
}
@media (max-width: 576px) {
  .carousel-item img {
    height: 240px;
  }
  .hero-slide {
    height: 60vh;
  }
}

/* ===== Optional: smoother fade transitions ===== */
.carousel-fade .carousel-item {
  transition: opacity 1.3s ease-in-out;
}

/* ===== NAVBAR WHITE + GOLD THEME & FIXES ===== */
.navbar {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.navbar-brand img {
  transition: transform .3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.08);
}
.nav-link {
  color: #333 !important;
  margin-left: 12px;
  position: relative;
  transition: color .3s ease;
  padding-right: 0.5rem !important;
}
.nav-link:hover {
  color: #b68c2e !important;
}
.dropdown-toggle::after {
  display: none !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #b68c2e;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.navbar.scrolled {
  background-color: #ffffffcc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7cc74;
}

/* Image responsive max width */
img.img-fluid {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Buttons container responsive */
.d-flex.flex-wrap.justify-content-center.gap-3 {
  gap: 1rem;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .d-flex.flex-wrap.justify-content-center.gap-3 {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100% !important;
    max-width: 320px;
  }
}

/* ===== THANK YOU IMAGE ===== */
.thankyou-img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
  object-position: center center;
  margin: 0 auto 1rem;
  border-radius: 10px;
}
@media (max-width: 500px) {
  .thankyou-img {
    max-width: 80vw;
  }
}

/* ===== GLOBAL HERO SECTION ===== */
.hero-section {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #b68c2e;
  color: #fff;
}

/* ===== ANIMATIONS ===== */
.fade-text {
  animation: fadeInUp 1.2s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ON MOBILE ===== */
@media (max-width: 576px) {
  .btn {
    width: 100%;
  }
  .cta-section .btn {
    width: auto;
  }
}

/* ===== GOLD BUTTON FIX ===== */
.btn-light {
  color: #b68c2e !important;
  font-weight: 600;
  border: none;
}
.btn-light:hover,
.btn-light:focus {
  color: #fff !important;
  background-color: #b68c2e !important;
  border-color: #b68c2e !important;
  transition: all 0.3s ease;
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #b68c2e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-size: 1.3rem;
  z-index: 1050;
  transition: transform 0.25s ease, background-color 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  background-color: #a27c20;
}

.whatsapp-btn {
  bottom: 90px; /* stacked above the call button */
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #1ebe5a;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 576px) {
  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn {
    bottom: 75px;
  }
}


/* ===== CUSTOM NAVBAR STYLES ===== */
.custom-navbar {
  background-color: #fffdf9;
  border-bottom: 2px solid #e7cc74;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform .3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.08);
}

/* Brand text in gold */
.brand-gold {
  color: #b68c2e !important;
}

/* Nav links */
.nav-link {
  color: #333 !important;
  margin-left: 12px;
  position: relative;
  transition: color .3s ease;
  padding-right: 0.5rem !important;
}

.nav-link:hover {
  color: #b68c2e !important;
}

/* Underline hover animation */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #b68c2e;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Remove Bootstrap default dropdown caret */
.dropdown-toggle::after {
  display: none !important;
}

/* Navbar scroll compact mode */
.navbar.scrolled {
  background-color: #ffffffcc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7cc74;
}

/* Mobile navbar toggle fix */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}


/* ===== CONTACT FORM STYLES ===== */
.contact-page form .form-control,
.contact-page form .form-select {
  border-radius: 8px;
  border: 1px solid #f0d68a;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-page form .form-control:focus,
.contact-page form .form-select:focus {
  box-shadow: 0 0 8px rgba(182, 140, 46, 0.5);
  border-color: #b68c2e;
}

/* Buttons */
.contact-page .btn-warning {
  background-color: #b68c2e;
  border: none;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-page .btn-warning:hover {
  background-color: #a47e29;
  transform: translateY(-2px);
}

/* Add subtle shadow and spacing for inputs on mobile */
@media (max-width: 576px) {
  .contact-page form .form-control,
  .contact-page form .form-select {
    margin-bottom: 0.5rem;
  }
}

/* ===== GOLD BRAND COLOR CLASS ===== */
.text-gold {
  color: #b68c2e !important;
}

/* ===== TEXT OVER IMAGE VISIBILITY ===== */

/* Gold text with white outline for headings on hero/carousel images */
.text-gold-outline {
  color: #b68c2e;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

/* For white text on dark or complex images — add a soft black glow */
.text-white-outline {
  color: #fff;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(0, 0, 0, 0.6);
}

/* For golden titles on darker images (stronger contrast) */
.text-gold-glow {
  color: #b68c2e;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.6);
}

/* ===== GOLD TEXT WITH WHITE OUTLINE (for image overlays) ===== */
.carousel-caption h3,
.hero-slide h1 {
  color: #b68c2e; /* brand gold */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     0 0 10px rgba(0,0,0,0.3); /* slight depth for clarity */
}

.carousel-caption h3,
.hero-slide h2 {
  color: #b68c2e; /* brand gold */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     0 0 10px rgba(0,0,0,0.3); /* slight depth for clarity */
}

/* Subtext below titles */
.carousel-caption p,
.hero-slide p {
  color: #fff;
  font-weight: 500;
  text-shadow:
    0 0 6px rgba(0,0,0,0.8),
    0 0 10px rgba(0,0,0,0.6);
}

/* Optional translucent background behind captions (keeps consistency) */
.carousel-caption.bg-dark.bg-opacity-50 {
  background: rgba(0, 0, 0, 0.45);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  max-width: 80%;
  margin: 0 auto;
}

/* Responsive tweaks for mobile */
@media (max-width: 576px) {
  .carousel-caption h3 {
    font-size: 1.25rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
}

/* ===== GLOBAL SECTION HEADINGS (Golden Titles) ===== */
section h1,
section h2,
section h3 {
  color: #b68c2e !important; /* Heer Travels Gold */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

/* Optional: soft shadow for headings over bright backgrounds */
section h1.text-over-image,
section h2.text-over-image {
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

/* ===== OVERRIDE BOOTSTRAP YELLOW (Make all text-warning brand gold) ===== */
.text-warning {
  color: #b68c2e !important; /* Heer Travels brand gold */
}

/* ===== Section Headings (Global Gold Titles) ===== */
section h1,
section h2,
section h3 {
  color: #b68c2e !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

/* Heer Travels Gold Button */
.heer-btn-gold {
    background: #b68c2e;         /* brand gold */
    color: #ffffff !important;   /* white text */
    padding: 10px 22px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: 0.25s ease-in-out;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Hover effect */
.heer-btn-gold:hover {
    background: #9f7827;         /* darker gold */
    color: #ffffff !important;   /* keep white */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.text-gold-outline,
.text-outline-white {
  color: #fff !important;
  text-shadow:
      -2px -2px 4px rgba(0,0,0,0.9),
       2px -2px 4px rgba(0,0,0,0.9),
      -2px  2px 4px rgba(0,0,0,0.9),
       2px  2px 4px rgba(0,0,0,0.9);
}

/* Hero Carousel Styles - Matching index.php and destinations.php */
.hero-slide {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  animation: fadeInUp 1.2s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 
    -2px -2px 0 #b68c2e,
    2px -2px 0 #b68c2e,
    -2px 2px 0 #b68c2e,
    2px 2px 0 #b68c2e,
    0 0 20px rgba(182, 140, 46, 0.5);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service Card Styles */
.text-gold { 
  color: #b68c2e !important; 
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card .btn {
  background-color: #b68c2e;
  border: none;
  color: #fff;
  transition: background-color 0.3s ease;
}

.service-card .btn:hover {
  background-color: #a27c20;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}


