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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fdfdfd;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================
   HEADER
======================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo__img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
}

.logo__fallback {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2b4cbe;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #2b4cbe;
  letter-spacing: 0.5px;
}

.logo__sub {
  font-size: 0.6rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 1.5px;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: #222;
  padding: 8px 14px;
  letter-spacing: 0.4px;
}

.nav__link:hover {
  color: #2b4cbe;
}

/* Book Now Button */
.btn-booknow {
  background: #1a2e7a;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-booknow:hover {
  background: #142265;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 14px 20px 18px;
  border-top: 2px solid #2b4cbe;
  background: #fff;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
  padding: 10px 12px;
  border-radius: 5px;
  letter-spacing: 0.4px;
}

.mobile-menu__link:hover {
  background: rgba(43,76,190,0.07);
  color: #2b4cbe;
}

.mobile-menu__btn {
  margin-top: 8px;
  text-align: center;
  display: block;
  width: 100%;
}

/* ========================
   SECTION TITLE & LINE
======================== */
.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 10px;
}

.section-title--white {
  color: #fff;
}

.section-line {
  width: 55px;
  height: 4px;
  background: #2b4cbe;
  margin: 0 auto 48px;
  border-radius: 2px;
}

.section-line--white {
  background: #fff;
}

/* ========================
   SERVICES SECTION
======================== */
.services {
  background: #fafafa;
  padding: 60px 0 70px;
}

.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 255px;
}

.service-card__img-wrap {
  width: 250px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

/* Call For Service Button */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #2b4cbe;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s;
}

.btn-call svg {
  width: 13px;
  height: 13px;
  fill: #fff;
  flex-shrink: 0;
}

.btn-call:hover {
  background: #1e3a9f;
}

/* ========================
   ABOUT SECTION
======================== */
.about {
  background: #ffffff;
  padding: 46px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 1fr);
  align-items: center;
  gap: 58px;
}

.about__eyebrow {
  display: inline-block;
  background: #eff9e9;
  color: #ff4148;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.about__title {
  max-width: 620px;
  color: #101b33;
  font-size: 1.75rem;
  line-height: 1.12;
  margin-bottom: 22px;
}

.about__list {
  list-style: none;
  display: grid;
  gap: 13px;
  color: #17345c;
  font-size: 0.92rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about__list li:first-letter {
  color: #45ce8a;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about__stat {
  min-height: 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(16,27,51,0.08);
  padding: 30px 18px 24px;
  text-align: center;
}

.about__stat-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 17px;
}

.about__stat h3 {
  color: #2b4cbe;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.about__stat p {
  color: #69717f;
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ========================
   WHY CHOOSE US
======================== */
.why-choose {
  background: #fff;
  padding: 58px 0 66px;
  text-align: center;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-content: start;
  margin-top: 42px;
}

.feature {
  min-height: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(16,27,51,0.09);
  text-align: center;
  padding: 38px 20px 26px;
}

.feature__icon {
  font-size: 2.7rem;
  line-height: 1;
  margin: 0 auto 28px;
}

.feature__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #123d70;
  margin-bottom: 18px;
}

.feature__text {
  font-size: 0.95rem;
  color: #6c6b70;
  line-height: 1.65;
}

.why-choose__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 20px;
  border-radius: 24px;
  background: #eff9e9;
  color: #ff4148;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.why-choose__heading {
  color: #111;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.why-choose__description {
  color: #6c6b70;
  font-size: 1rem;
  line-height: 1.6;
}

/* ========================
   CUSTOMER REVIEWS
======================== */
.reviews {
  background: #fff;
  padding: 44px 0 52px;
  text-align: center;
}

.reviews__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 18px;
  border: 1px solid #f6b24a;
  border-radius: 24px;
  background: #fff8e9;
  color: #ed9413;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.reviews__heading {
  color: #111;
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 28px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.review-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(16,27,51,0.14);
  padding: 26px 22px 22px;
}

.review-card--featured {
  border-color: #f1a11b;
}

.review-card__stars {
  color: #ffab1c;
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 18px;
}

.review-card__text {
  flex: 1;
  color: #536273;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.review-card__customer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e1e7ed;
  padding-top: 14px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f5a21b;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}

.review-card__customer p {
  color: #123d70;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

/* ========================
   CONTACT SECTION
======================== */
.contact {
  background: #2b4cbe;
  border-top: 4px solid #2b4cbe;
  padding: 68px 0 48px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 58px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact__brand,
.contact__column {
  display: flex;
  flex-direction: column;
}

.contact__brand {
  gap: 30px;
}

.contact__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.contact__brand p,
.contact__column a,
.contact__column p {
  color: #9bb4d1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.contact__brand p {
  max-width: 410px;
}

.contact__brand strong {
  color: #fff;
}

.contact__column {
  gap: 16px;
}

.contact__cities {
  white-space: nowrap;
}

.contact__column h2 {
  width: fit-content;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #243a51;
}

.contact__column a:hover {
  color: #fff;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #2b4cbe;
  border-top: 1px solid #2040b7;
  padding: 28px 0;
  text-align: center;
}

.footer__copy {
  color: #9bb4d1;
  font-size: 0.9rem;
}

.footer__copy strong {
  color: #fff;
  font-weight: 600;
}

/* ========================
   FLOATING BUTTONS
======================== */
.sticky-callbar {
  display: none;
}

.floating-btns {
  position: fixed;
  right: 16px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 999;
}

.floating-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
  transition: transform 0.2s;
  animation: floating-icon-bob 1.4s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-btn--call {
  background: #20d366;
}

.floating-btn--whatsapp {
  background: #25d366;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
}

.floating-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(32,211,102,0.65);
  border-radius: 50%;
  animation: floating-wave 1.6s ease-out infinite;
  pointer-events: none;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.floating-btn--whatsapp svg {
  display: none;
}

.floating-btn--whatsapp::after {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.198.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes floating-icon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes floating-wave {
  0% { opacity: 0.8; transform: scale(0.92); }
  70%, 100% { opacity: 0; transform: scale(1.35); }
}

/* ========================
   RESPONSIVE - TABLET
======================== */
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .services__grid {
    gap: 60px;
  }

  .service-card {
    width: 255px;
  }

  .service-card__img-wrap {
    width: 200px;
    height: 160px;
  }
}

/* ========================
   RESPONSIVE - MOBILE
======================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }

  .floating-btns {
    right: 12px;
    bottom: 82px;
    gap: 25px;
  }

  .sticky-callbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    display: flex;
    justify-content: center;
    padding: 10px 14px;
    background: #fff;
    box-shadow: 0 -3px 14px rgba(16, 27, 51, 0.16);
  }

  .sticky-callbar__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(100%, 360px);
    min-height: 44px;
    border-radius: 999px;
    background: #2b4cbe;
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 27, 51, 0.16);
  }

  .sticky-callbar__button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .nav { display: none; }
  .btn-booknow { display: none; }
  .hamburger { display: flex; }

  .services__grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .service-card {
    width: 100%;
    max-width: 340px;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 250px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact {
    padding: 50px 0 34px;
  }

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

  .reviews {
    padding: 42px 0 52px;
  }

  .reviews__heading {
    font-size: 1.55rem;
    margin-bottom: 28px;
  }

  .review-card {
    min-height: 285px;
    padding: 28px 22px 24px;
  }

  .about {
    padding: 52px 0;
  }

  .about__title {
    font-size: 2rem;
  }

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

  .about__stat {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

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

}
