/* ===== ROOT BRAND COLORS ===== */
:root {
  --brand-teal: #6faeb7;
  --brand-charcoal: #4a4a4a;
  --brand-soft-black: #121212;
  --brand-gold: #d4af37;
  --brand-light: #f8fafb;
}

/* ===== BODY ===== */
body {
  font-family: "Inter", sans-serif;
  background-color: var(--brand-light);
  padding-top: 100px;
}
html, body {
  overflow-x: hidden;
}


/* Mobile (only navbar visible) */
@media (max-width: 991px) {
  body {
    padding-top: 0px; /* match navbar height */
  }
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--brand-light);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Soft elevation effect */
.navbar.scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* ===== LOGO ===== */
.navbar-brand img {
  height: 60px;
}

/* ===== NAV LINKS ===== */
.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--brand-charcoal);
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
}

/* Underline animation */
/* Underline animation (moved to ::before to avoid Bootstrap conflict) */
/* Underline animation ONLY for desktop navbar links */
.navbar .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--brand-teal);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::before {
  width: 100%;
}


.nav-link:hover {
  color: var(--brand-teal);
}


/* ===== CTA BUTTON (BOOK ONLINE) ===== */
.btn-book {
  background-color: var(--brand-teal);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: #5a9ea7;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(111, 174, 183, 0.25);
}

/* Gold micro-accent on hover for luxury feel */
.nav-link.gold-hover:hover {
  color: var(--brand-gold);
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .nav-link {
    margin: 10px 0;
  }
  .btn-book {
    margin-top: 10px;
    display: inline-block;
  }
}
/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  border: none;
  border-radius: 14px;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.dropdown-item {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 10px 22px;
  color: var(--brand-charcoal);
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: transparent;
  color: var(--brand-gold);
}



/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  border: none;
  border-radius: 14px;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.dropdown-item {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 10px 22px;
  color: var(--brand-charcoal);
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: transparent;
  color: var(--brand-gold);
}
/* Fix dropdown arrow alignment in navbar */
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* SideBar */

/* Sidebar styling */
.offcanvas {
    width: 280px;
    background-color: #F8FAFB;
    border: none;
}
.offcanvas-header {
    border-bottom: none !important;
}


/* Remove all borders & dividers */
.offcanvas .nav-item,
.offcanvas .nav-link {
    border: none !important;
}

/* Remove bootstrap focus highlight */
.offcanvas .nav-link:focus,
.offcanvas .nav-link:active {
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
}

/* Clean mobile links */
.mobile-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-charcoal);
    padding: 12px 0 12px 16px; /* space for left line */
    position: relative;
    transition: color 0.25s ease;
}

/* Left accent line (hidden by default) */
.mobile-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: var(--brand-gold);
    border-radius: 2px;
    transition: height 0.25s ease;
}

/* Hover state */
.mobile-link:hover {
    color: var(--brand-gold);
}

/* Show vertical line on hover */
.mobile-link:hover::before {
    height: 18px;
}

/* Ends */


/* Hambrger */

/* ===== Modern 2026 Hamburger ===== */
.custom-toggler {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: rgba(111, 174, 183, 0.08);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.custom-toggler span {
  width: 22px;
  height: 2px;
  background-color: var(--brand-charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover effect */
.custom-toggler:hover {
  background: rgba(111, 174, 183, 0.15);
}

/* ACTIVE (turn into X) */
.custom-toggler.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--brand-teal);
}

.custom-toggler.active span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--brand-teal);
}



/* End */


/* Top Bar */

/* ===== TOP BAR ===== */
.topbar {
    background-color: #F5F7F8;
    border-top: 3px solid var(--brand-teal);
    font-size: 0.9rem;
    color: var(--brand-charcoal);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.topbar-item i {
    color: var(--brand-teal);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.topbar-item a {
    text-decoration: none;
    color: var(--brand-charcoal);
    transition: all 0.3s ease;
}

.topbar-item a:hover {
    color: var(--brand-gold);
}

.topbar-item:hover i {
    color: var(--brand-gold);
}

/* Mobile spacing */
@media (max-width: 991px) {
    .topbar {
        text-align: center;
    }
}

/* End Top Bar.  */

/* Hero section */

/* HERO SECTION */
.hero-section {
  position: relative;
}

.carousel-item {
  height: 90vh;
}

.hero-slide {
  position: relative;
  height: 90vh;
  background-size: cover;      /* FIXES SQUEEZE */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.6);
  z-index: 1;
}

/* Content wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Left text */
.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
}

.hero-content p {
  color: #f8fafb;
  margin-top: 15px;
  font-size: 1.1rem;
}

/* ===== HERO APPOINTMENT CARD FIX ===== */

.appointment-card {
  background: white;
  padding: 25px; /* reduced from 35px */
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12); /* softer shadow */
  max-width: 420px; /* limits size */
  margin-left: auto; /* keeps it aligned right */
}

/* Title */
.appointment-title {
  font-size: 1.2rem; /* smaller */
  margin-bottom: 6px;
}

/* Subtitle */
.appointment-subtitle {
  font-size: 0.85rem;
  margin-bottom: 18px;
}

/* Inputs smaller */
.appointment-card .form-control {
  border-radius: 8px;
  padding: 9px 12px; /* reduced height */
  font-size: 0.9rem;
}

/* Button slightly smaller */
.appointment-card .btn-book {
  padding: 10px;
  font-size: 0.9rem;
}



/* Indicators styled */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--brand-light);
  opacity: 0.6;
}

.carousel-indicators .active {
  background-color: var(--brand-gold);
  opacity: 1;
}

@media (max-width: 991px) {

  .carousel-item,
  .hero-slide {
    height: 85vh;
    padding: 0;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-book {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}



/* End Hero section */


/* Section 2 */


/* ===== CHIROPRACTIC SECTION ===== */
.chiro-section {
  background: linear-gradient(
    180deg,
    var(--brand-light) 0%,
    #ffffff 100%
  );
  position: relative;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--brand-teal);
  margin-bottom: 15px;
}

/* Heading */
.chiro-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.05rem;
  color: #5f6b73;
  margin-bottom: 20px;
  line-height: 1.7;
}

.chiro-text p {
  color: #6c757d;
  line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Benefit Card */
.benefit-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle accent border */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-teal);
}

/* Icon */
.benefit-card i {
  font-size: 1.4rem;
  color: var(--brand-teal);
  margin-bottom: 12px;
}

/* Title */
.benefit-card h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--brand-charcoal);
  margin-bottom: 8px;
}

/* Hover */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.benefit-card:hover i {
  color: var(--brand-gold);
}

/* Responsive */
@media (max-width: 991px) {

  .chiro-text h2 {
    font-size: 1.9rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 20px;
  }
}


/* End Section 2 */


/* Section3 */

/* ============================= */
/* OUR TREATMENTS SECTION */
/* ============================= */

.treatments-section {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--brand-light) 100%
  );
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--brand-charcoal);
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #6c757d;
  font-size: 1rem;
  margin-top: 15px;
}

.treatment-item {
  margin-bottom: 100px;
}

.treatment-img {
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}

.treatment-item:hover .treatment-img {
  transform: scale(1.03);
}

.treatment-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--brand-charcoal);
  margin-bottom: 15px;
  position: relative;
}

/* Teal accent line */
.treatment-content h3::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 8px;
  width: 4px;
  height: 24px;
  background: var(--brand-teal);
  border-radius: 3px;
}

.treatment-content p {
  color: #6c757d;
  line-height: 1.7;
}

.treatment-content ul {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.treatment-content ul li {
  margin-bottom: 8px;
  color: #5f6b73;
  position: relative;
  padding-left: 20px;
}

.treatment-content ul li::before {
  content: "•";
  color: var(--brand-gold);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.highlight {
  color: var(--brand-gold);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {

  .section-title {
    font-size: 1.9rem;
  }

  .treatment-item {
    margin-bottom: 70px;
  }

  .treatment-content h3::before {
    display: none;
  }

}
/* End */

/* Mini Section */

/* ============================= */
/* LIGHT MODERN APPOINTMENT */
/* ============================= */

.appointment-modern {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--brand-light) 100%
  );
  position: relative;
}

/* Subtle top accent line */
.appointment-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-teal);
  border-radius: 3px;
}

/* Tag */
.appointment-modern .mini-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--brand-gold);
  display: inline-block;
  margin-bottom: 15px;
}

/* Title */
.appointment-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  margin-bottom: 45px;
}

/* Form Layout */
.appointment-modern-form {
  max-width: 700px;
  margin: 0 auto;
}

.input-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Inputs */
.input-row input {
  background: #ffffff;
  border: 1px solid #e5e8ea;
  padding: 16px 22px;
  border-radius: 50px;
  min-width: 260px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.input-row input:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(111,174,183,0.15);
}

/* Button Row */
.button-row {
  text-align: center;
}

/* Modern Button */
.btn-modern {
  background: var(--brand-teal);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(111,174,183,0.2);
}

.btn-modern:hover {
  background: var(--brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(212,175,55,0.25);
}

/* Responsive */
@media (max-width: 991px) {

  .appointment-title {
    font-size: 1.9rem;
  }

  .input-row input {
    width: 100%;
  }

  .btn-modern {
    width: 100%;
  }

}


/* End Mini */

/* Section 4 */

/* ============================= */
/* INSURANCE SECTION */
/* ============================= */

.insurance-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

/* Thin divider accent */
.insurance-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--brand-teal);
}

/* Header */
.insurance-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand-charcoal);
}

.insurance-subtitle {
  max-width: 650px;
  margin: 20px auto 70px;
  color: #6c757d;
  font-size: 1rem;
}

/* Grid Layout */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

/* Logo Items */
.insurance-item {
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #eef2f4;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease;
}

.insurance-item img {
  max-height: 60px;
  width: auto;
  opacity: 0.85;
  transition: all 0.35s ease;
}

/* Hover effect */
.insurance-item:hover {
  border-color: var(--brand-teal);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transform: translateY(-6px);
}

.insurance-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Support Block */
.insurance-support {
  margin-top: 90px;
}

.insurance-support p {
  color: #5f6b73;
  margin-bottom: 10px;
}

.insurance-contact {
  font-weight: 600;
  color: var(--brand-teal);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.insurance-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--brand-gold);
  transition: width 0.3s ease;
}

.insurance-contact:hover {
  color: var(--brand-gold);
}

.insurance-contact:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {

  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .insurance-header h2 {
    font-size: 1.9rem;
  }

}

@media (max-width: 576px) {

  .insurance-grid {
    grid-template-columns: 1fr;
  }

}


/* End Section 4 */

/* Section 5 */

/* ============================= */
/* TESTIMONIALS SECTION */
/* ============================= */

.testimonials-section {
  padding: 120px 0;
  background: #f7f9fa;
  position: relative;
}

/* Header */
.testimonials-header {
  margin-bottom: 70px;
}

.testimonial-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--brand-teal);
  display: inline-block;
  margin-bottom: 15px;
}

.testimonials-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand-charcoal);
}

.testimonials-header p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #6c757d;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Individual Testimonial */
.testimonial-item {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #eef2f4;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Top section */
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-top img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-light);
}

.testimonial-top h6 {
  margin: 0;
  font-weight: 600;
  color: var(--brand-charcoal);
  font-family: "Poppins", sans-serif;
}

/* Stars */
.stars {
  color: var(--brand-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-item p {
  color: #5f6b73;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Overall Rating */
.overall-rating {
  margin-top: 80px;
}

.overall-rating h4 {
  font-weight: 600;
  color: var(--brand-charcoal);
  margin-bottom: 10px;
}

.stars-large {
  color: var(--brand-gold);
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.overall-rating p {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-header h2 {
    font-size: 1.9rem;
  }

}

@media (max-width: 576px) {

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

}


/* End Section 5 */

/* Section 6 */

/* ============================= */
/* FAQ SECTION */
/* ============================= */

.faq-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Header */
.faq-header {
  margin-bottom: 70px;
}

.faq-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--brand-gold);
  display: inline-block;
  margin-bottom: 15px;
}

.faq-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand-charcoal);
}

.faq-header p {
  color: #6c757d;
  margin-top: 15px;
}

/* Wrapper */
.faq-wrapper {
  max-width: 750px;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #eef2f4;
}

/* Question Button */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 25px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brand-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--brand-teal);
}

/* Icon */
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brand-teal);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  color: #5f6b73;
  line-height: 1.7;
  padding-bottom: 20px;
  font-size: 0.95rem;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--brand-gold);
}

/* Responsive */
@media (max-width: 991px) {

  .faq-header h2 {
    font-size: 1.9rem;
  }

}


/* End Section 6 */


/* Footer */

/* ============================= */
/* FOOTER */
/* ============================= */

.main-footer {
  background: #f4f7f8;
  padding-top: 100px;
  border-top: 1px solid #e5e8ea;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 70px;
}

/* Logo */
.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

/* About text */
.footer-about {
  color: #5f6b73;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Headings */
.footer-col h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--brand-charcoal);
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #5f6b73;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--brand-teal);
  padding-left: 5px;
}

/* Contact */
.footer-contact {
  color: #5f6b73;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--brand-teal);
  margin-right: 8px;
}

.footer-contact a {
  color: #5f6b73;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--brand-gold);
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: var(--brand-charcoal);
  margin-right: 10px;
  border: 1px solid #e5e8ea;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--brand-teal);
  color: white;
  transform: translateY(-3px);
}

.footer-social a {
  text-decoration: none !important;
}

.footer-social a:hover {
  text-decoration: none !important;
}

/* Bottom Bar */
.footer-bottom {
  background: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #e5e8ea;
}

.footer-bottom p {
  margin: 0;
  color: #6c757d;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

}

@media (max-width: 576px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    margin-top: 10px;
  }

}


/* ============================= */
/* MOBILE FLOATING CALL BUTTON */
/* ============================= */

.mobile-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--brand-teal);
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(111,174,183,0.35);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: visible;
}

/* Show only on mobile */
@media (max-width: 991px) {
  .mobile-call-btn {
    display: flex;
  }
}

/* Hover effect */
.mobile-call-btn:hover {
  background: var(--brand-gold);
  transform: translateY(-4px);
}

/* Ring animation circle */
.mobile-call-btn .ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--brand-teal);
  animation: ringPulse 1.8s infinite;
  opacity: 0.6;
}

/* Animation */
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}



/* Scrollbar */

/* ============================= */
/* CUSTOM THIN BRAND SCROLLBAR */
/* ============================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f4f6;
}

::-webkit-scrollbar-thumb {
  background: var(--brand-teal);
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-gold);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-teal) #f1f4f6;
}
