/* =====================================================
   TYPOGRAPHY & GLOBAL STYLES
===================================================== */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.text-brown {
  color: #8B4513;
}

.text-muted {
  color: #FFF9F4 !important;
}

/* =====================================================
   BUTTON STYLES
===================================================== */
.btn {
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

/* FAQ filter buttons */
.btn-faq-filter {
  color: #8B4513;
  border-color: #8B4513;
}

.btn-faq-filter.active {
  background-color: #8B4513;
  color: #fff !important;
  border-color: #8B4513;
}

.btn-faq-filter:hover {
  background-color: #c7a287;
  color: #fff;
}

.btn-faq-filter:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Animated button (used for call-to-action) */
.animated-btn {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #6c757d;
  color: #6c757d;
  font-weight: bold;
}

.animated-btn:hover {
  background-color: #6c757d;
  color: #fff;
  transform: scale(1.05);
}

.animated-btn::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 0;
  top: 0;
  left: -10%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.animated-btn:hover::before {
  height: 300%;
}

/* Solid brown button */
.btn-brown {
  background-color: #8B4513;
  color: white;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-brown:hover {
  background-color: #a05d2e;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-brown::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-brown:hover::before {
  left: 125%;
}

/* Outline brown button */
.btn-outline-brown {
  border: 2px solid #8B4513;
  color: #8B4513;
  background: transparent;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
  margin: 4px;
  transition: 0.3s ease-in-out;
}

.btn-outline-brown:hover,
.btn-outline-brown.active {
  background: #8B4513;
  color: white;
  border-color: #8B4513;
}

.gallery-thumb {
  height: 220px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   ICON STYLES
===================================================== */
.icon-telephone::before {
  content: "\260E";
  margin-right: 8px;
}

.icon-email::before {
  content: "\2709";
  margin-right: 8px;
}

.main-header .icon-email::before {
  content: "\2709";
  color: #ffffff;
}

.icon-pin::before {
  content: "\1F4CD";
  margin-right: 8px;
}

a.text-dark:hover {
  color: #8B4513;
  text-decoration: underline;
}

/* =====================================================
   CONTACT BOX STYLES
===================================================== */
.service-details__need-help-phone {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details__need-help-phone-icon {
  font-size: 1.75rem;
  color: #8B4513;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details__need-help-phone-number h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.service-details__need-help-phone-number a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-details__need-help-phone-number a:hover {
  color: #8B4513;
  text-decoration: underline;
}

/* =====================================================
   CAR STYLES
===================================================== */
.card-img-top {
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.car-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.car-hero-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: #fff;
  z-index: 2;
}

.car-gallery img {
  object-fit: cover;
  height: 180px;
  width: 100%;
  border-radius: 8px;
}

.car-details-box {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  background: #fff;
}

/* =====================================================
   SERVICES
===================================================== */
.services-one__single:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* =====================================================
   MOBILE RESPONSIVENESS
===================================================== */
@media (max-width: 576px) {
  .service-details__need-help-phone-number h4 {
    font-size: 1rem;
  }

  .service-details__need-help-phone-icon {
    font-size: 1.5rem;
  }

  .services-one__title {
    font-size: 1.1rem;
  }

  .services-one__text {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .gallery-thumb, .glightbox-thumb {
    height: 160px;
  }
}

/* Hamburger menu toggle button styling */
.menu-toggle-btn {
  display: none;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #8B4513;
  cursor: pointer;
}

/* Show toggle below 1100px */
@media (max-width: 1200px) {
  .menu-toggle-btn {
    display: inline-block;
  }

  .main-menu__list,
  .btn-outline-success {
    display: none !important;
  }

  .main-header .navbar-brand img {
    height: 40px !important;
  }

  .main-header .navbar-brand span {
    font-size: 11px !important;
  }
}





.current > a {
  color: #8B4513 !important;
  font-weight: 600;
  position: relative;
}

.current > a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #8B4513;
}


.gallery-thumb, .glightbox-thumb {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

.glightbox .gslide-media img {
  object-fit: contain;
  max-width: 90vw;
  max-height: 80vh;
  width: 400px;
  height: 400px;
}

.gallery-thumb:hover {
  transform: scale(1.03);
}


/* Force GLightbox images to be consistent in size and fit */
.glightbox-clean .gslide-image img {
  max-width: 100%;
  max-height: 85vh;
  width: 1300px;
  height: 1300px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


.swiper-button-next,
  .swiper-button-prev {
    color: #ffffff; /* or your brown shade */
    font-weight: bold;
}


.bounce {
    animation: bounce 2s infinite;
  }

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}


.floating-help-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background-color: #25D366;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-help-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.back-to-top-btn {
  position: fixed;
  bottom: 100px; /* Adjust to not overlap the WhatsApp button */
  right: 25px;
  z-index: 1050;
  width: 60px;
  height: 60px;
  display: none; /* Hidden by default */
  text-align: center;
  font-size: 20px;
  padding-top: 12px;
  color: #fff;
  background-color: #5a3e2b;
}


#mainHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  transition: top 0.3s ease-in-out;
}
body {
  padding-top: 130px; /* Adjust depending on header height */
}

/* Fullscreen overlay (optional, not used in slide-in version) */
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 320px;
  height: 100%;
  background: #121212; /* deep black */
  z-index: 1050;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 4px solid #8B4513; /* brown accent */
  transition: transform 0.3s ease-in-out;
}

.nav-overlay.active {
  display: flex;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Overlay menu links */
.nav-overlay-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-overlay-menu li {
  margin: 1rem 0;
}

.nav-overlay-menu a {
  display: block;
  padding: 0.9rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #e8ded3;
  text-align: center;
  background-color: transparent;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  will-change: transform;
}


.nav-overlay-menu a:hover {
  background-color: #8B4513;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(139, 69, 19, 0.3);
  animation: bounceIn 0.4s forwards;
}

/* Highlight the current page */
.nav-overlay-menu a.active {
  background-color: #f5e8dc;
  color: #8B4513;
  font-weight: 600;
  border: 2px solid #8B4513;
}

/* Desktop nav with animated pop hover */
.nav-item .nav-link {
  color: #5CC14C;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.nav-item .nav-link:hover {
  color: #8b5c2c;
  transform: scale(1.2);
}


@media (max-width: 768px) {
  .main-header__top {
    display: none !important;
  }
}

@keyframes bounceIn {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1.08); }
}

.main-menu__list {
  overflow-x: auto;
  white-space: nowrap;
}

