/* =============================================================================
   1. GLOBAL STYLES
   ============================================================================= */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth; /* Smooth scrolling for anchor links */
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}

/* =============================================================================
   2. NAVBAR
   ============================================================================= */
.navbar-dark {
  background-color: #1a1a1a; /* Slightly darker shade */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #ffffff;
  transition: color 0.2s ease;
}
.navbar-brand:hover {
  color: #00bfae;
}

.navbar-nav .nav-item {
  margin-left: 0.5rem;
}

.navbar-nav .nav-link {
  color: #ddd;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: #00bfae; /* Fresh teal on hover/active */
  color: #fff;
}

/* =============================================================================
   3. HOME (HERO) SECTION WITH BACKGROUND IMAGE + OVERLAY
   ============================================================================= */
.home-hero {
  background: url('../images/3.jpg') center center/cover no-repeat;
  position: relative;
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay so text stands out */
.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* Ensure container’s text sits above overlay */
.home-hero .container {
  position: relative;
  z-index: 1;
}

/* Large, bright headings */
.home-hero h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.home-hero p {
  font-size: 1.1rem;
}

/* Hero Buttons */
.home-hero .btn {
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* =============================================================================
   4. SECTION HEADING UNDERLINES
   ============================================================================= */
/* Underline <h2> in each section */
section h2.fw-bold,
section h2.display-5,
section h3.fw-bold {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

/* A thin teal underline */
section h2.fw-bold::after,
section h2.display-5::after,
section h3.fw-bold::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #00bfae;
  border-radius: 2px;
}

/* Underline smaller headings (e.g., <h4>) */
h4.fw-semibold {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
  margin-bottom: 0.8rem;
}
h4.fw-semibold::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #007bff;
  border-radius: 2px;
}

/* =============================================================================
   5. BOOKING CALCULATOR STYLES
   ============================================================================= */
.booking-calculator {
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.booking-calculator h2 {
  color: #ffc107; /* gold accent */
}

.booking-calculator input,
.booking-calculator label {
  border-radius: 6px;
}

.booking-calculator .btn {
  border-radius: 6px;
}

/* =============================================================================
   6. SERVICE BOXES (Short/Long Term & Add-On)
   ============================================================================= */
.single-service-item,
.single-add-on {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

/* Lift on hover */
.single-service-item:hover,
.single-add-on:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Slight gradient heading underline (overwrites default) */
.single-service-item h2::after,
.single-add-on h3::after {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00bfae);
}

/* =============================================================================
   7. BUTTON STYLES
   ============================================================================= */
/* Book Online (btn-info) */
.btn-info {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-info:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

/* WhatsApp (btn-success) */
.btn-success {
  background-color: #25d366;
  border-color: #25d366;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-success:hover {
  background-color: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

/* Call Button (btn-info.call-btn) */
.btn-info.call-btn {
  background-color: #17a2b8; /* Distinct teal */
  border-color: #17a2b8;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-info.call-btn:hover {
  background-color: #138496;
  border-color: #117a8b;
  transform: translateY(-2px);
}

/* Glowing effect (if used elsewhere) */
.glowing-button {
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease-in-out;
}
.glowing-button:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  transform: scale(1.05);
  background: linear-gradient(90deg, #007bff, #00bfae);
  border-color: #00bfae;
  color: #fff;
}

/* =============================================================================
   8. FAQ ACCORDION STYLES
   ============================================================================= */
.accordion-button {
  background-color: #f8f9fa;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.accordion-button:not(.collapsed) {
  background-color: #e9ecef;
  color: #000;
}
.accordion-body {
  background-color: #fff;
}

/* =============================================================================
   9. REVIEWS PLACEHOLDERS
   ============================================================================= */
.review-placeholder img {
  max-width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.review-placeholder img:hover {
  transform: scale(1.02);
}

/* =============================================================================
   10. BRAND CAROUSEL (MINIMAL SPACING)
   ============================================================================= */
.brand-carousel .item img {
  max-width: 100px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.brand-carousel .item img:hover {
  opacity: 1;
}

/* Remove extra vertical padding */
#brand {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* =============================================================================
   11. FOOTER STYLES
   ============================================================================= */
footer#contact {
  background-color: #000;
  color: #ddd;
}
footer#contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer#contact a:hover {
  color: #00bfae;
}

footer#contact h5 {
  color: #fff;
}

footer#contact .text-secondary {
  color: #aaa !important;
}

/* =============================================================================
   12. BACK TO TOP (Sticky)
   ============================================================================= */
#scroll-Top {
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
#scroll-Top a {
  display: inline-block;
  margin: 0 auto;
  color: #fff;
  padding: 0.5rem;
}

/* =============================================================================
   13. RESPONSIVE TWEAKS
   ============================================================================= */
@media (max-width: 768px) {
  .navbar-nav .nav-item + .nav-item {
    margin-top: 0.5rem;
  }

  .single-service-item,
  .single-add-on {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .booking-calculator {
    padding: 1.5rem !important;
  }

  .btn-lg {
    font-size: 0.9rem;
  }

  .home-hero {
    min-height: 60vh;
    padding: 2rem 1rem;
  }
}
