:root{
    --primary-color: #1d6454;
    --secondary-color: #e8b005;
    --black-color: #000000;
    --white-color: #ffffff;
    --accent-yellow: #f9c835; /* Closest match to image */
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --soft-bg: #f8faf9;
    --card-hover: #ffffff;
    --primary-red: #d90429;
            --text-muted: #666666;
            --border-light: #1d6454;
}

body{
    font-family: 'Lora', serif;
    background-color: var(--white-color);
    padding-top: 13vh;
}

/* Dot Style */
    #mouse-dot {
      position: fixed;
      left: 0;
      top: 0;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--secondary-color);

      /* Keep it from blocking clicks/hover */
      pointer-events: none;

      /* Smooth movement */
      transform: translate(-50%, -50%);
      transition: transform 0.3s linear;

      /* Always above page content */
      z-index: 999999;
    }


    /* Scrollbar */

    /* width */
::-webkit-scrollbar {
  width: 6px;
}

/* track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);       /* change color */
  border-radius: 10px;
}

/* handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

* {
  scrollbar-width: thin;              /* auto | thin | none */
  scrollbar-color: var(--primary-color) transparent;  /* thumb track */
}

.site-banner {
  background-color: var(--secondary-color);
  color: #2b2b2b;
  font-size: 0.95rem;
  padding: 10px 15px;
  font-weight: 500;
  z-index: 1050;
}
.site-banner i {
  color: var(--white-color); /* warm amber */
  font-size: 1.2rem;
}
/* ================================
   NAVBAR – GLASS + STICKY
================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: 13vh;
  width: 100%;

  /* Glass base */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;

  transition:
    background 250ms ease,
    backdrop-filter 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

/* Navbar after scroll */
.navbar.scrolled {
  margin: 2rem;
  width: 97%;
  background: rgb(255 255 255 / 83%);
  backdrop-filter: blur(6px) saturate(300%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  border-radius: 20px;
}

/* ================================
   LOGO
================================ */
.logo-img {
  height: 140px;
  width: auto;
  transition: height 0.3s ease;
}

/* ================================
   BRAND
================================ */
.navbar-brand {
  font-weight: 700;
}

/* ================================
   NAV LINKS
================================ */
.nav-link {
  font-weight: 600;
  color: var(--primary-color) !important;
  position: relative;

  border-bottom: 2px solid transparent;
  transition:
    color 0.3s ease,
    border-bottom 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  border-bottom: 2px solid var(--primary-color);
}

/* ================================
   DROPDOWN (GLASS STYLE)
================================ */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================================
   CONTACT BUTTON
================================ */
.contact-btn {
  padding: 10px 50px;
  font-weight: 800;
  border-radius: 0;

  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;

  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* ================================
   CENTER NAV FIX
================================ */
.center-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .center-nav {
    position: static;
    transform: none;
  }
}

/* ================================
   SAFETY & FALLBACKS
================================ */

/* Prevent sticky failure */
html {
  overflow-x: hidden;
}

body {
  overflow-x: clip; /* modern + sticky safe */
}


/* Glass fallback for unsupported browsers */
@supports not (backdrop-filter: blur(10px)) {
  .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}

/* Footer Section */

:root {
  --bg-dark-green: #233326; /* The deep forest green from your image */
  --accent-gold: #e8b005; /* The soft orange/gold accent */
  /* --text-muted: rgba(255, 255, 255, 0.7); */
}

.footer-section {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 80px 0 30px;
  position: relative;
  margin: 2rem;
  overflow: hidden;
  border-radius: 20px;
}

/* Brand Section */
.brand-logo-container {
  display: flex;
  align-items: center;
  /* gap: 12px; */
  /* margin-bottom: 20px; */
}

.footer-logo-img {
  height: 155px; /* Adjust this height to match your logo's proportions */
  width: auto; /* Keeps the aspect ratio perfect */
  margin-top: -50px;
  object-fit: contain;
  display: block;
}

/* Optional: If your logo is circular like the one in the screenshot */
.footer-logo-img.rounded-logo {
  background-color: var(--accent-gold);
  padding: 5px;
  border-radius: 50%;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand-name span {
  color: var(--accent-gold);
}

.footer-desc {
  color: var(--white-color);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-top: -19px;
}

/* Typography & Lists */
.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

.footer-list {
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: var(--white-color);
  text-decoration: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-list a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-list i {
  color: var(--accent-gold);
  font-size: 0.7rem;
}

/* Social Icons */
.social-box {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-icon:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-3px);
}

/* Service Hours Style */
.hours-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--white-color);
}

.hours-row span:last-child {
  color: #fff;
  font-weight: 500;
}

.emergency-btn {
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border: none;
  color: white;
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.emergency-btn:hover {
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

/* Bottom Footer */
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 25px;
}

.bottom-links a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 15px;
}

.bottom-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  .brand-logo-container,
  .social-box {
    justify-content: center;
  }
  .footer-list a {
    justify-content: center;
  }
  .bottom-links {
    margin-top: 15px;
  }
}
