/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
:root {
  --brand: #2091ee;
  --light-brand: #dfe4ea;
  --dark: #2d3436;
  --text: #636e72;
  --light: #dfe6e9;
  --trans-effect: all 0.4s;
  --radius: 12px;
  --img-radius: 24px;
}

body {
  font-family: "Cairo", sans-serif;
  background-color: #fff;
  color: var(--dark);
}

.call-btn {
  display: inline-block;
  color: var(--light);
  text-decoration: none;
  background-color: var(--dark);
  border-radius: 8px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 400;
  transition: var(--trans-effect);
}
.call-btn:hover {
  background-color: var(--brand);
  color: var(--light);
}
.main-padding {
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .main-padding {
    padding: 20px 10px !important;
  }
}
p,
.lead {
  font-weight: 400 !important;
  color: var(--text);
  font-size: 16px;
}
strong {
  font-weight: 700 !important;
}
/* Section Title */
.section-title {
  color: var(--dark);
  font-weight: 600 !important;
}
.badge {
  display: inline-block;
  background-color: var(--light-brand);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 500;
}
/* End Global Rules */

/* Start Header */
nav.navbar {
  background-color: var(--light);
}
nav.navbar .navbar-brand img {
  width: 150px;
}
nav.navbar .navbar-nav .nav-item {
  padding: 10px;
}
nav.navbar .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 400;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 100px;
  transition: var(--trans-effect);
}
nav.navbar .navbar-nav .nav-link:hover {
  color: var(--light);
  background-color: var(--brand);
}
nav.navbar .call-btn {
  margin-right: 10px;
}
nav.navbar .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  background-color: var(--light);
  padding: 8px;
  border-radius: 100%;
}
nav.navbar .navbar-toggler .navbar-toggler-icon {
  color: var(--dark);
  font-size: 25px;
}

@media (max-width: 768px) {
  nav.navbar .navbar-brand img {
    width: 110px;
  }
}
/* End Header */

/* Start Hero Section */
.hero-section {
  background-color: var(--light);
  padding: 50px 0;
}
.hero-section img {
  border-radius: var(--img-radius);
}
.hero-section h1 {
  font-weight: 500;
  color: var(--dark);
  padding-top: 40px;
  line-height: 55px;
}
.hero-section h1 span {
  color: var(--brand);
}
.hero-section p {
  color: var(--text);
  font-size: 18px !important;
}
.hero-section .review {
  font-size: 12px;
  background-color: #ffffff8e;
  backdrop-filter: blur(8px);
}
.rating-stars .star {
  width: 15px;
  height: 15px;
}
.brand-dot {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  border-radius: 50%;
  color: #fff;
}
.brand-google {
  background: #4285f4;
} /* G */
.brand-yelp {
  background: #d32323;
} /* Y */

@media (max-width: 768px) {
  .hero-section h1 {
    padding-top: 20px;
    line-height: 40px;
  }
}
/* End Hero Section */

/* Start Why Us */
.why-us {
  padding: 100px 0;
}
.why-us .box {
  background-color: #fff;
  box-shadow: 0 2px 10px var(--light);
  padding: 20px 15px;
  border-radius: var(--radius);
  height: 100%;
}
.why-us h3 {
  font-size: 25px;
  font-weight: 600;
  margin-top: 20px;
}
.why-us .box .box-icon {
  background-color: var(--light-brand);
  padding: 15px;
  border-radius: var(--img-radius);
  display: inline-block;
}
.why-us .box .box-icon img {
  width: 60px;
}
/* End Why Us */

/* Start Services Section */
.services {
  padding: 100px 0;
}
.services .box {
  background-color: #fff;
  border: solid 1px var(--light);
  padding: 20px 15px;
  border-radius: var(--radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services .box img {
  border-radius: var(--img-radius);
}
.services h3 {
  color: var(--dark);
  font-size: 25px;
  font-weight: 600;
  margin-top: 20px;
}
.services .service-btn {
  display: block;
  margin-top: 20px;
  border: solid 1px var(--brand);
  border-radius: var(--radius);
  color: var(--brand);
  text-decoration: none;
  padding: 15px 10px;
  font-weight: 500;
  font-size: 17px;
  transition: var(--trans-effect);
}
.services .service-btn:hover {
  background-color: var(--brand);
  color: var(--light);
}
/* End Services Section */

/* Start Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light);
}
.testimonials .box {
  padding: 20px 15px;
  background-color: var(--light-brand);
  height: 100%;
  border: solid 1px var(--brand);
  border-radius: var(--img-radius);
}
.testimonials .box .user-area {
  display: flex;
  align-items: center;
}
.testimonials .box .user-area img {
  width: 50px;
  background-color: var(--light-brand);
  border: solid 1px var(--brand);
  border-radius: 100%;
}
.testimonials .box .user-area h4 {
  font-size: 20px;
  padding-right: 10px;
}
.testimonials .box .user-review {
  margin-top: 10px;
}
.testimonials .box .user-review p {
  padding: 10px;
  font-style: italic;
}
/* End Testimonials Section */

/* Start About Section */
.about {
  padding: 100px 0;
  background-color: var(--light-brand);
}
.about img {
  border-radius: var(--img-radius);
}
/* End About Section */

/* Start Branches Section */
.branches {
  padding: 100px 0;
  background-color: var(--dark);
}
.branches h2 {
  color: var(--light);
}
.branches ul {
  color: var(--light);
}
.branches ul li {
  padding-bottom: 10px;
}
/* End Branches Section */

/* Start FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--warm-color);
}
.faq h2 {
  color: var(--main-color);
  padding-bottom: 30px;
}
.faq-drawer {
  margin-bottom: 30px;
}

.faq-drawer__content-wrapper {
  font-size: 1.25em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.faq-drawer__title {
  border-top: var(--light) 1px solid;
  cursor: pointer;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  padding: 30px 0 0 0;
  position: relative;
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.faq-drawer__title:hover {
  color: var(--brand) !important;
}

.faq-drawer__title::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: " ";
  display: inline-block;
  float: left;
  height: 10px;
  left: 2px;
  position: relative;
  left: 20px;
  top: 2px;
  transform: rotate(135deg);
  transition: 0.5s ease-in-out;
  vertical-align: top;
  width: 10px;
}

/* OPTIONAL HOVER STATE */
.faq-drawer__title:hover {
  color: #4e4b52;
}

.faq-drawer__trigger:checked
  + .faq-drawer__title
  + .faq-drawer__content-wrapper {
  max-height: 350px;
}

.faq-drawer__trigger:checked + .faq-drawer__title::after {
  transform: rotate(-45deg);
  transition: 0.5s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}
/* End FAQ Section */

/* Start Contact Section */
.contact {
  padding: 100px 0;
}
.contact .contact-box {
  padding: 20px 15px;
  background-color: var(--light);
  border-radius: var(--radius);
}
.contact .contact-box img {
  border-radius: var(--img-radius);
}
.contact .contact-box h3 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  padding-top: 30px;
}
.contact .contact-box .hotline {
  display: block;
  font-size: 80px;
  font-weight: bold;
  text-align: center;
  margin-top: -30px;
  color: var(--brand);
}
.contact ul li {
  padding-bottom: 10px;
}
.contact .number {
  padding: 15px 20px;
  background-color: var(--dark);
  color: var(--light);
  text-align: center;
  font-weight: bolder !important;
  font-size: 20px;
  border-radius: var(--radius);
}
/* End Contact Section */

/* Start Footer */
footer {
  background-color: var(--dark);
  padding: 15px 10px;
}
footer p {
  padding: 0;
  margin: 0;
  color: var(--light) !important;
  text-align: center;
}
/* End Footer */

/* Bottom Btns */
.bottom-btns {
  display: flex;
  position: fixed;
  bottom: 15px;
  left: 15px;
  flex-direction: column;
  z-index: 1000;
}
.bottom-btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 5px 0;
  border-radius: 50%;
  padding: 0;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.bottom-btns .btn img {
  width: 30px;
  height: 30px;
  margin: 0;
}
.bottom-btns .hotline-btn {
  background-color: var(--brand);
  animation: 2s infinite pulse;
}
.bottom-btns .whatsapp-btn {
  background-color: #25d366;
}
.bottom-btns .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.bottom-btns .btn-01 {
  background-color: rgb(16, 16, 228);
}
.bottom-btns .btn-02 {
  background-color: rgb(22, 141, 6);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Start Privacy */
.privacy {
  padding: 50px 0;
}
.privacy h2 {
  font-size: 22px;
  font-weight: 600;
}
/* End Privacy */
