@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
  --primary: #0b5ed7;
  --secondary: #5bc0de;
  --slate: #1e293b;
  --slate-light: #f8fafc;
  --slate-dark: #1e293b;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--slate);
  line-height: 1.6;
}

.text-primary {
  color: #006fba !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-slate {
  color: var(--slate) !important;
}

.bg-primary {
  background-color: rgb(0, 111, 186) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-slate-light {
  background-color: var(--slate-light) !important;
  padding: 40px 0;
}

.bg-slate-dark {
  background-color: #006fba !important;
}

.btn-primary {
  background-color: rgb(0, 111, 186);
  border-color: var(--primary);
  
}

.btn-primary:hover {
  background-color: #006fba;
  border-color: #006fba;
}

.btn-outline-primary {
  color: #006fba;
  border-color: #006fba;
}

.btn-outline-primary:hover {
  background-color: #006fba;
  color: white;
}

.btn-rounded {
  border-radius: 50px;
  font-size: 35px;
  font-weight: 700;
}

.hero-modern-split {
  padding: 100px 0;
  min-height: 80vh;
  background-image: url(../img/hero-back.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-stack {
  position: relative;
  z-index: 1;
}

.main-hero-img {
  position: relative;
  z-index: 2;
  border-top-left-radius: 80px !important;
}

.image-bg-blob {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: -40px;
  z-index: 3;
  min-width: 220px;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.title-underline {
  width: 60px;
  height: 4px;
  border-radius: 2px;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

.service-card span{
font-size: 20px;
font-weight: bold;
}

.service-card .btn-rounded{
font-size: 17px;
font-weight: bold;
}

.coupon-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

.coupon-card2 {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

.section-3 h2{
text-align: center;
}

.section-3 p{
text-align: center;
}

.border-dashed {
  border-style: dashed !important;
}

.filter-white {
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
h1{
  text-align: left;
}

  .hero-modern-split {
    padding: 60px 0;
    text-align: center;
  }
  .floating-card {
    left: 20px;
  }
  .hero-content {
    margin-bottom: 50px;
  }
  .coupon-card2 img {
  width: 100%;
}
}

.lead{
  padding-right: 50px;
}

.box {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.box:hover {
  transform: translateY(-5px) scale(1.05);
}

@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.zoom-box {
  display: inline-block;
  animation: zoomLoop 2s ease-in-out infinite !important;
}

.zoom-box:hover {
  transform: scale(1.1);
}
.zoom-box {
  will-change: transform;
}

.coupon-code a{
  color: rgb(255, 255, 255);
  text-decoration: none;
}

/* faq */

.faq-section {
  background: #f5f7fa;
  padding: 50px 20px;
}

.faq-section h3 {
  text-align: center;
  margin-bottom: 25px;
}


.faq-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  font-family: Arial, sans-serif;
}


.faq-item {
  border-bottom: 1px solid #eee;
}


.faq-question {
  width: 100%;
  padding: 18px;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f0f4f8;
}


.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafafa;
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  color: #555;
}

/* form */
.CUS{
  
  padding: 0;
  border-radius: 30px;
}

.CUS p{
  padding: 0;
 }

form.CUS input.subject {
    display: none;
}

.CUS .form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.CUS .form-row p {
    flex: 1;
    margin: 0;
}

.CUS textarea {
    width: 100%;
    font-size: 15px;
    border: 1px solid #020202;
    box-sizing: border-box;
    border: 1px solid #d4d4d4;
    background-color: #f0f0f0;
}

.CUS .submit {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    border: 1px solid #d4d4d4;
    background-color: #f0f0f0;
    color: #161515;
}

.CUS input,
.CUS select {
    width: 100%;
    font-size: 15px;
     border: 1px solid #d4d4d4;
    box-sizing: border-box;
    font-weight: normal;
    padding: 10px;
    margin: 5px 0;
    background-color: #f0f0f0;

}

.CUS label {
    font-size: 15px;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
    color: #3b3b3b;
}

.CUS legend {
    font-size: 20px;
    text-align: left;
    color: #3b3b3b;
}

form.CUS,
.CUS fieldset {
    border: none;
}


@media only screen and (max-width:500px){
    .CUS .form-row {
        flex-direction: column;  
        align-items: stretch;    
    }

    .CUS .form-row p {
        flex: 1 0 100%;
        width: 100%;
    }
 } 


 .contact a{
color:  var(--bs-secondary-color) !important;
text-decoration: none;
 }


 
.locations-wrapper {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 12px 15px;
  text-align: center;
  text-decoration: none;
  color: #222;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgb(0, 111, 186);
  color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.location-item:active {
  transform: scale(0.98);
}