:root {
  --navy: #014895;
  --green: #2a8134;
  --dark: #202020;
  --grey: #737373;
  --bg-soft: #f2f3f5;
  --bg-mint: #eef5f1;
  --footer-navy: #0d2b66;
  --line: #e1e2e6;
  --cream: #f9f7f8;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
  /* padding-top: 96px; */
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
p {
  color: var(--grey);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
section {
  scroll-margin-top: 96px;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  color: var(--grey);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow-plain {
  text-transform: uppercase;
  color: var(--grey);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
}

/* Buttons */
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: #f2f3f4;
  padding: 8px 8px 8px 20px;
  border-radius: 6px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--navy);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(1, 72, 149, 0.25);
  color: var(--navy);
  background: #fff;
}
.btn-navy:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(1, 72, 149, 0.25);
  border: 1px solid var(--navy);
  color: var(--navy);
  background: #fff;
}
.btn-navy:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(1, 72, 149, 0.25);
  border: 1px solid var(--navy);
  color: var(--navy);
  background: #fff;
}
.btn-navy .btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--green);
  padding: 8px 8px 8px 20px;
  border-radius: 6px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--green);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 129, 52, 0.25);
}
.btn-outline-green:focus {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 129, 52, 0.25);
}
.btn-outline-green:focus-visible {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 129, 52, 0.25);
}
.play-icon {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: padding 0.25s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0px 24px; */
}
.logo-img {
  height: 80px;
  width: auto;
  transition: height 0.25s ease;
}
@media (max-width: 768px) {
  .logo-img {
    height: 65px;
  }
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255);
}
.site-header.scrolled .logo-img {
  height: 60px;
}
@media (max-width: 768px) {
  .site-header.scrolled .logo-img {
    height: 50px;
  }
}
.site-header.scrolled .header-inner {
  padding-top: 8px;
  padding-bottom: 8px;
}
.main-nav {
  display: flex;
  gap: 36px;
}
.main-nav .nav-link {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  position: relative;
  padding: 4px 0 !important;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.2s ease;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 100%;
}
.navbar-toggler {
  border: none;
  font-size: 26px;
  color: var(--navy);
  box-shadow: none !important;
}

@media (max-width: 991px) {
  body {
    padding-top: 82px;
  }
  .main-nav {
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
    text-align: left;
  }
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding: 8px 0 20px;
  }
  .main-nav li {
    border-bottom: 1px solid var(--line);
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: visible;
  display: flex;
  align-items: center;
  background: var(--cream);
}

/* Background photograph */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Soft white gradient over background */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(249, 247, 248, 0.98) 0%,
    rgba(249, 247, 248, 0.94) 25%,
    rgba(249, 247, 248, 0.76) 48%,
    rgba(249, 247, 248, 0.32) 72%,
    rgba(249, 247, 248, 0) 100%
  );
}

/* Main hero container */
.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
  position: relative;
  z-index: 5;
  width: 52%;
  max-width: 620px;
  padding-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 22px;
  letter-spacing: -1px;
}

.hero-content p {
  max-width: 570px;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 30px;
  color: #707070;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   MAIN FOREGROUND IMAGE
   ========================================================= */

.hero-main-image {
  position: absolute;
  z-index: 4;

  right: -100px;
  bottom: -95px;

  width: min(64vw, 790px);

  pointer-events: none;
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;

  /*
   * This gives the machine a subtle grounded shadow.
   * Remove if the source image already contains one.
   */
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.18));
}

/* =========================================================
   HERO BUTTONS
   ========================================================= */

/* .hero-content .btn-navy {
  min-height: 52px;
}

.hero-content .btn-outline-green {
  min-height: 52px;
} */

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {
  .hero-section {
    height: 630px;
  }

  .hero-main-image {
    right: -80px;
    bottom: -60px;
    width: 820px;
  }

  .hero-content {
    width: 50%;
  }
}

/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199px) {
  .hero-section {
    height: 540px;
  }

  .hero-content {
    width: 52%;
  }

  .hero-content h1 {
    font-size: clamp(40px, 5vw, 56px);
  }

  .hero-main-image {
    right: -90px;
    bottom: -70px;
    width: 650px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: 650px;
    padding: 90px 0 0;
    overflow-x: hidden;
  }

  .hero-container {
    min-height: 650px;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
  }

  .hero-content {
    width: 65%;
    max-width: 600px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 6vw, 54px);
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-main-image {
    width: 620px;
    right: -140px;
    bottom: -20px;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(249, 247, 248, 0.98) 0%,
      rgba(249, 247, 248, 0.92) 45%,
      rgba(249, 247, 248, 0.55) 75%,
      rgba(249, 247, 248, 0.2) 100%
    );
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .hero-section {
    min-height: 720px;
    height: auto;
    padding: 0;
  }

  .hero-container {
    min-height: 720px;
    height: auto;
    padding-top: 70px;
    display: block;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  .hero-content h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .hero-main-image {
    width: 570px;
    max-width: none;
    right: -25%;
    transform: translateX(50%);
    bottom: -35px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(249, 247, 248, 0.98) 0%,
      rgba(249, 247, 248, 0.94) 38%,
      rgba(249, 247, 248, 0.65) 62%,
      rgba(249, 247, 248, 0.15) 100%
    );
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  /* .hero-section {
    min-height: 670px;
  } */

  .hero-container {
    min-height: 670px;
    padding-top: 55px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 13.5px;
  }

  .hero-content .btn-navy,
  .hero-content .btn-outline-green {
    min-height: 48px;
  }

  .hero-main-image {
    width: 470px;
    bottom: -20px;
  }
}

/* =========================================================
   ABOUT US
   ========================================================= */

.about-section {
  position: relative;
  background: var(--cream);
  min-height: 650px;
  padding: 95px 0 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* =========================================================
   CENTER CONTENT
   ========================================================= */

.about-content {
  position: relative;
  z-index: 3;

  max-width: 900px;
  margin: 0 auto;

  text-align: center;
}

/* About eyebrow */
.about-content .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
}

/* Main heading */
.about-content h2 {
  max-width: 900px;

  margin: 0 auto 28px;

  font-family: "Exo 2", sans-serif;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.12;
  font-weight: 600;

  letter-spacing: -1px;

  color: var(--dark);
}

/* Description */
.about-description {
  max-width: 720px;
  margin: 0 auto;
}

.about-description p {
  max-width: 700px;

  margin: 0 auto 18px;

  color: var(--grey);

  font-size: 14px;
  line-height: 1.65;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   SIDE IMAGES
   ========================================================= */

.about-side-image {
  position: absolute;

  z-index: 2;

  pointer-events: none;
}

.about-side-image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  /* Important for transparent PNG/WebP images */
  max-width: none;
}

/* LEFT IMAGE */

.about-side-image-left {
  left: -65px;
  bottom: 105px;

  width: 330px;
}

/* RIGHT IMAGE */

.about-side-image-right {
  right: -75px;
  bottom: 100px;

  width: 330px;
}

/* =========================================================
   STATISTICS
   ========================================================= */

.about-section .fun-facts {
  display: flex;

  align-items: flex-start;
  justify-content: center;

  gap: 105px;

  margin: 38px auto 0;
  padding: 0;

  border: none;

  max-width: 760px;
}

.about-section .fact {
  display: flex;

  flex-direction: column;
  align-items: center;

  min-width: 145px;
}

.about-section .fact-number {
  display: block;

  font-family: "Poppins", sans-serif;
  font-weight: 700;

  font-size: clamp(48px, 5vw, 68px);

  line-height: 1;

  letter-spacing: -2px;
}

.about-section .fact-number.navy {
  color: var(--navy);
}

.about-section .fact-number.green {
  color: var(--green);
}

.about-section .fact-label {
  display: block;

  margin-top: 10px;

  color: var(--dark);

  font-family: "Poppins", sans-serif;

  font-size: 16px;
  font-weight: 400;

  white-space: nowrap;
}

/* =========================================================
   ABOUT CTA
   ========================================================= */

.about-cta {
  display: flex;
  justify-content: center;

  margin-top: 60px;
}

/* .about-cta .btn-navy {
  min-height: 48px;

  font-size: 14px;

  padding: 8px 8px 8px 20px;
} */

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {
  .about-section {
    min-height: 680px;
    padding: 100px 0;
  }

  .about-content {
    max-width: 930px;
  }

  .about-content h2 {
    font-size: 44px;
  }

  .about-description {
    max-width: 760px;
  }

  .about-description p {
    font-size: 14px;
  }

  .about-side-image-left {
    left: 0px;
    bottom: 0px;
    width: 360px;
  }

  .about-side-image-right {
    right: 0px;
    bottom: 0px;
    width: 360px;
  }

  .about-section .fun-facts {
    gap: 115px;
  }
}

/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199px) {
  .about-section {
    min-height: 620px;
  }

  .about-content {
    max-width: 820px;
  }

  .about-content h2 {
    font-size: clamp(34px, 4.5vw, 50px);
  }

  .about-side-image-left {
    left: -120px;
    width: 310px;
  }

  .about-side-image-right {
    right: -120px;
    width: 310px;
  }

  .about-section .fun-facts {
    gap: 70px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .about-section {
    min-height: auto;

    padding: 90px 0 80px;

    overflow: hidden;
  }

  .about-content {
    max-width: 720px;
  }

  .about-content h2 {
    font-size: clamp(34px, 5.5vw, 46px);
  }

  .about-description {
    max-width: 650px;
  }

  .about-side-image-left {
    left: -155px;
    bottom: 85px;
    width: 280px;
    opacity: 0.9;
  }

  .about-side-image-right {
    right: -155px;
    bottom: 85px;
    width: 280px;
    opacity: 0.9;
  }

  .about-section .fun-facts {
    gap: 45px;
  }

  .about-section .fact-number {
    font-size: 52px;
  }

  .about-section .fact-label {
    font-size: 14px;
  }

  .about-cta {
    margin-top: 48px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .about-section {
    padding: 75px 20px 70px;

    min-height: auto;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content .eyebrow {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .about-content h2 {
    font-size: clamp(30px, 8vw, 40px);

    line-height: 1.12;

    letter-spacing: -0.5px;

    margin-bottom: 22px;
  }

  .about-title-break {
    display: none;
  }

  .about-description {
    max-width: 600px;
  }

  .about-description p {
    font-size: 13.5px;
    line-height: 1.7;

    margin-bottom: 15px;
  }

  /* Move images toward the bottom */
  .about-side-image-left {
    left: -135px;
    bottom: 15px;
    width: 230px;

    opacity: 0.8;
  }

  .about-side-image-right {
    right: -135px;
    bottom: 15px;
    width: 230px;

    opacity: 0.8;
  }

  /* Keep statistics readable */
  .about-section .fun-facts {
    position: relative;
    z-index: 5;

    gap: 24px;

    margin-top: 35px;
  }

  .about-section .fact {
    min-width: 90px;
  }

  .about-section .fact-number {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .about-section .fact-label {
    font-size: 12px;

    white-space: normal;

    line-height: 1.3;
    text-align: center;
  }

  .about-cta {
    position: relative;
    z-index: 5;

    margin-top: 42px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .about-section {
    padding: 65px 16px 60px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-description p {
    font-size: 13px;
  }

  .about-side-image-left {
    left: -125px;
    bottom: 15px;
    width: 205px;
  }

  .about-side-image-right {
    right: -125px;
    bottom: 15px;
    width: 205px;
  }

  .about-section .fun-facts {
    gap: 12px;
  }

  .about-section .fact {
    min-width: 85px;
  }

  .about-section .fact-number {
    font-size: 36px;
  }

  .about-section .fact-label {
    font-size: 11px;
  }

  .about-cta {
    margin-top: 38px;
  }
}

/* ===== Core Business ===== */
.business-section {
  background: var(--bg-soft);
  border-radius: 30px;
  /* max-width: 1260px; */
  /* margin: 20px auto; */
  padding: 100px 0px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.service-card-head h3 {
  font-size: 22px;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.service-card hr {
  border-top: 2px solid var(--line);
  margin: 16px 0;
}
.service-card p {
  font-size: 15px;
  margin-bottom: 20px;
}
.service-card img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===== Partnerships ===== */
.partners-section {
  padding: 100px 0;
  background: var(--cream);
}
@media (max-width: 768px) {
  .partners-section {
    padding: 50px 0px;
  }
}
.partners-media img {
  border-radius: 14px;
  width: 100%;
  /* height: 460px; */
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.partner-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.partner-card:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.partner-logo-img {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}
.partner-card h4 {
  font-size: 19px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 14px;
}
.partner-card p {
  font-size: 14px;
}

/* ===== Feature panels ===== */
.feature-panels-section {
  padding-bottom: 100px;
  background: var(--cream);
}
@media (max-width: 768px) {
  .feature-panels-section {
    padding: 0px 0px 50px 0px;
  }
}
.feature-panel {
  background: #fff;
  border-radius: 10px;
  padding: 36px;
  height: 100%;
}
@media (max-width: 768px) {
  .feature-panel {
    padding: 24px;
  }
}
.feature-panel h3 {
  font-size: 26px;
  margin-bottom: 22px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--dark);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.feature-panel-green .feature-icon {
  background: var(--green);
}
.feature-panel-navy .feature-icon {
  background: var(--navy);
}
.feature-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature-thumbs img {
  border-radius: 8px;
  height: 140px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .feature-thumbs img {
    height: 100px;
  }
}

/* ===== Commitment ===== */
.commitment-section {
  background: var(--bg-mint);
  padding: 100px 0;
  /* border-radius: 30px; */
}
@media (max-width: 768px) {
  .commitment-section {
    padding: 50px 0;
  }
}
.commitment-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 18px;
}
.commitment-section > .container > .row > div > p {
  max-width: 560px;
  margin-bottom: 30px;
}
.commit-item {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.commit-item:last-child {
  border-bottom: none;
}
.commit-icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
@media (max-width: 768px) {
  .commit-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
.commit-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
}
.commit-item p {
  font-size: 14.5px;
  margin: 0;
}
.commitment-media img {
  border-radius: 14px;
  width: 100%;
  /* height: 460px; */
  height: 100%;
  object-fit: contain;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); */
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background-image: url("../assets/img/faq-bg.png");
}
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
}
.faq-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.faq-section > .container > .row > div:first-child p {
  max-width: 400px;
  margin-bottom: 28px;
}
.faq-panel {
  background: #fff;
  border-radius: 10px;
  padding: 36px;
}
@media (max-width: 768px) {
  .faq-panel {
    padding: 24px;
  }
}
.accordion-item {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-button {
  background: none;
  border: none;
  box-shadow: none !important;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
}
.accordion-button::after {
  display: none;
}
.faq-toggle-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform 0.2s ease;
}
.accordion-body {
  color: var(--grey);
  font-size: 15px;
  padding: 12px 0 4px;
}
.accordion-button:not(.collapsed) {
  background-color: white;
}

/* ===== Contact ===== */
.contact-section {
  padding: 100px 0px;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0px;
  }
}
.contact-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.contact-section > .container > .row > div:first-child p {
  max-width: 440px;
  /* margin-bottom: 30px; */
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.contact-row h5 {
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-row p {
  font-size: 14.5px;
  margin: 0;
}
.contact-form {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 24px;
  }
}
.field {
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .field {
    margin-bottom: 10px;
  }
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 15px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  background: #fff;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--navy);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--footer-navy);
  color: #fff;
  padding: 64px 24px 30px;
  margin-top: 0;
}
.footer-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
}
.footer-address {
  color: #d7dbe5;
  font-size: 15px;
  margin-bottom: 20px;
}
.footer-tagline {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 30px);
  margin-bottom: 30px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #d7dbe5;
  font-size: 15px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-links i {
  margin-right: 6px;
  color: #fff;
}
.footer-copy {
  margin-top: 22px;
  font-size: 13px;
  color: #8ea1c9;
}

/* ===== Back to top ===== */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 10px 24px rgba(1, 72, 149, 0.3);
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--green);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .business-section {
    border-radius: 16px;
    padding: 50px 0px;
  }
  .fun-facts {
    gap: 32px;
  }
}

/* ==========================
   Contact Form Validation
========================== */

.field {
  position: relative;
}

.error-text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #dc3545;
  min-height: 18px;
}

.field.error input,
.field.error textarea {
  border: 2px solid #dc3545;
}

.field.success input,
.field.success textarea {
  border: 2px solid #198754;
}

.form-response {
  display: none;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-response.success {
  display: block;
  background: #eaf8ef;
  color: #1d6b39;
  border: 1px solid #b7e4c7;
}

.form-response.error {
  display: block;
  background: #fdecec;
  color: #b42318;
  border: 1px solid #f5c2c7;
}

/* Loading button */
.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading .btn-text::after {
  content: " ...";
}
