 @import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500);

.location-btn {
            background-color: #fff7ed;
            border: 1px solid #fadab1;
            color: #333;
            text-align: left;
            padding: 12px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
        }
        .location-btn:hover {
            background-color: #fadfbe;
            color: #f75815;
        }
        .location-btn i {
            color: #000000;
        }
        .section-title {
            color: #333;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #0d6efd;
        }



        /* 1. Scroll-Top Base Position */
.scroll-top {
  bottom: 15px !important;
  right: 15px !important;
}

/* 2. Call Button (Middle) */
.call-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 75px; /* Sits directly above Scroll-Top */
  right: 15px;
  background-color: #0d6efd; /* Bootstrap primary blue */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.call-float:hover {
  background-color: #0b5ed7;
  color: #FFF;
  transform: scale(1.08);
}

/* 3. WhatsApp Button (Top) */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 135px; /* Sits directly above Call Button */
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  animation: pulse-animation 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.08);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===============================
   Bootstrap 5 Accordion
================================= */

#accordion .accordion-item{
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    background: transparent;
}

#accordion .accordion-header{
    padding: 0;
    border: none;
    border-radius: 0;
    position: relative;
    margin: 0;
}

#accordion .accordion-button{
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin: 0;
    background: #fe7725;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border: none;
    border-radius: 0;
    position: relative;
    text-align: left;
    box-shadow: none;
}

#accordion .accordion-button:not(.collapsed){
    background: #fe7725;
    color: #fff;
    box-shadow: none;
}

#accordion .accordion-button.collapsed{
    background: #2d465e;
    color: #fff;
}

#accordion .accordion-button:focus{
    box-shadow: none;
    border: none;
}

/* Remove Bootstrap's default arrow */
#accordion .accordion-button::after{
    display: none;
}

/* Minus Icon */
#accordion .accordion-button::before{
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 30px;
    height: 30px;
    line-height: 24px;
    border-radius: 50%;
    background: #ff7a42;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border: 3px solid #fff;
    position: absolute;
    top: 10px;
    right: 14px;
}

/* Plus Icon */
#accordion .accordion-button.collapsed::before{
    content: "\f067";
    background: #ababab;
    border: 4px solid #626262;
}

/* Small tab on right */
#accordion .accordion-button span{
    position: relative;
}

#accordion .accordion-button::after{
    content: "";
    display: block;
    width: 17px;
    height: 7px;
    background: #fff;
    position: absolute;
    top: 22px;
    right: 0;
}

#accordion .accordion-button.collapsed::after{
    width: 19px;
    background: #ababab;
}

/* Body */

#accordion .accordion-body{
    border-left: 3px solid #fe7725;
    background: #fff;
    color: #1c2336;
    line-height: 27px;
    position: relative;
    padding: 10px;
}

#accordion .accordion-body::before{
    content: "";
    height: 3px;
    width: 50%;
    background: #ff7a42;
    position: absolute;
    bottom: 0;
    left: 0;
}

#accordion .accordion-body p{
    margin: 0;
    padding: 0;
}
