@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Manrope:wght@200..800&family=Pacifico&display=swap');

/* --- GLOBAL STYLES --- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0 auto;
  font-family: 'Manrope', sans-serif;
  background-color: #FFFFFF;
  max-width: 1920px;
  padding-top: 35px;
  opacity: 1;
  /* min-height: 7962px; */
  /* Let content dictate the actual height */
}

/* --- HERO SECTION --- */
.hero-wrapper {
  display: flex;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 0 35px;
  /* Ensures space on smaller screens to match the 1920 to 1850 ratio (70px total) */
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1850px;
  height: 950px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 1;
  display: flex;
  flex-direction: column;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(1, 6, 12, 0) 40%, rgba(1, 6, 12, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* Spans the full 1850px container */
  height: 104px;
  opacity: 1;
  padding: 26px 5% 30px 5%;
  /* Fluid padding */
  border-bottom: 1px solid #FFFFFF4D;
  box-sizing: border-box;
  /* Ensures padding is calculated inside the 104px height */
}

.hero-header-logo {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.header-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 40px;
}

.hero-header-nav {
  display: flex;
  width: auto;
  gap: clamp(20px, 3vw, 40px);
  opacity: 1;
  align-items: center;
}

.hero-header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  /* Mapped from Figma text background/fill */
  opacity: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 48px;
  border-radius: 10px;
  opacity: 1;
  padding: 12px 24px;
  /* Top/Bottom: 12px, Right/Left: 24px */
  gap: 8px;
  background-color: #FFFFFF;
  color: #01060C;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
  /* Keeps the button exactly 157x48px */
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(1, 6, 12, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 6vw;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 8vh;
}

.mobile-logo-img {
  max-height: 40px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8vw;
  flex: 1;
  margin-bottom: 8vh;
}

.mobile-nav-link {
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 6vw;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu-footer {
  display: flex;
  justify-content: center;
  padding-bottom: 5vh;
  width: 100%;
}

.mobile-menu-footer .btn-primary {
  width: max-content;
  font-size: clamp(16px, 4.5vw, 24px);
  height: auto;
  padding: 3vw 10vw;
  border-radius: 2vw;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 0 5% 75px 5%;
  /* Fluid padding */
  margin-top: auto;
  /* Pushes to the bottom */
  gap: clamp(20px, 4vw, 60px);
  /* Base gap that can flex */
  box-sizing: border-box;
}

.hero-left {
  display: flex;
  flex-direction: column;
  max-width: 715px;
  gap: 16px;
  flex: 1;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 614px;
  gap: 20px;
  flex: 1;
}

.welcome-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  height: 42px;
  border-radius: 99px;
  opacity: 1;
  padding: 10px 18px 10px 14px;
  gap: 8px;
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 100%;
  white-space: nowrap;
}

.welcome-pill .dot {
  width: 8px;
  height: 8px;
  background-color: #1B5AA3;
  border-radius: 50%;
  margin-right: 8px;
}

.main-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0;
  margin: 0;
}

.hero-right p {
  font-family: 'Manrope', sans-serif;
  color: #A1A7AD;
  font-size: clamp(16px, 1vw + 10px, 20px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}

.hero-right p strong {
  color: #FFFFFF;
  font-weight: 700;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background-color: #1B5AA3;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  gap: 8px;
  box-sizing: border-box;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* --- ABOUT SECTION --- */
.about-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 100px 214px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-sizing: border-box;
}

.about-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.about-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1326px;
  min-height: 300px;
  /* Responsive alternative to strict height: 300px */
  gap: 12px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  /* Responsive alternative to strict width */
  height: 42px;
  border-radius: 99px;
  opacity: 1;
  padding: 10px 18px 10px 14px;
  gap: 8px;
  border: 1px solid #01060C33;
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #01060C;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  /* 1% */
  line-height: 100%;
  white-space: nowrap;
}

.about-pill .dot {
  width: 8px;
  height: 8px;
  background-color: #1B5AA3;
  border-radius: 50%;
}

.about-heading {
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #01060C;
  width: 100%;
  margin: 0;
  display: block;
}

.inline-capsule {
  display: inline-block;
  vertical-align: middle;
  height: 1em;
  /* Matches current font-size */
  width: 2.5em;
  /* Proportional width */
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0.1em;
  transform: translateY(-0.1em);
}

.inline-capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid {
  display: flex;
  flex-direction: row;
  width: 1492px;
  height: 500px;
  opacity: 1;
  gap: 26px;
}

.about-card {
  width: 480px;
  height: 500px;
  opacity: 1;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Card 1 */
.about-image-card {
  width: 480px;
  height: 500px;
  border-radius: 40px;
  opacity: 1;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  /* Softer frosted glass */
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: 16px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.experience-badge h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  margin: 0 0 4px 0;
}

.experience-badge p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Card 2 */
.about-info-card {
  width: 480px;
  height: 500px;
  border-radius: 40px;
  opacity: 1;
  background-color: #F1F7FA;
  padding: 32px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.info-top {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Responsive alternative to strict width: 400px */
  min-height: 192px;
  /* Responsive alternative to strict height: 192px */
  gap: 8px;
}

.about-info-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0;
  color: #0B2D56;
  width: 100%;
  margin: 0;
}

.info-top p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #0B2D56;
  margin: 0;
}

.stats-block {
  display: flex;
  flex-direction: column;
  max-width: 277px;
  /* Responsive alternative to strict width */
  min-height: 85px;
  /* Responsive alternative to strict height */
  gap: 4px;
}

.stats-block h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #0B2D56;
  margin: 0;
}

.stats-block p {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #0B2D56;
  margin: 0;
}

/* Card 3 */
.about-features-card {
  width: 480px;
  height: 500px;
  border-radius: 40px;
  opacity: 1;
  background-color: #1B5AA3;
  padding: 32px;
  color: #FFFFFF;
  justify-content: space-between;
}

.features-intro {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #FFFFFF;
  width: 100%;
  margin: 0 0 32px 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #01060C;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  width: max-content;
  /* Responsive alternative to strict width: 159px */
  height: 48px;
  box-sizing: border-box;
  gap: 8px;
}

/* Footer */
.about-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 448px;
  height: 58px;
  opacity: 1;
  gap: 6px;
}

.serving-text {
  width: 362px;
  height: 22px;
  opacity: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #707376;
  margin: 0;
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-block strong {
  width: auto;
  opacity: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  color: #01060C;
  white-space: nowrap;
}

.stars {
  display: flex;
  width: 133px;
  height: 24px;
  opacity: 1;
  gap: 2px;
}

.star-icon {
  width: 16px;
  height: 16px;
}

/* --- SERVICES SECTION --- */
.services-wrapper {
  padding: 100px 115px;
  /* Matches Hero section left/right padding */
  background-color: #FFFFFF;
  width: 100%;
  max-width: 1850px;
  /* Matches Hero section max-width */
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-grid {
  display: flex;
  justify-content: center;
  width: 1620px;
  height: 600px;
  opacity: 1;
  gap: 30px;
  margin: 0 auto;
}

.services-col {
  position: relative;
  display: flex;
}

.services-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15.5px;
  /* Centers the 1px line within the static 30px gap */
  width: 1px;
  height: 500px;
  opacity: 1;
  background: #E5EBEE;
}

.services-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 424px;
  height: 471px;
  opacity: 1;
  gap: 64px;
  justify-content: flex-start;
}

.services-intro-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.services-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  /* Fluid width */
  padding: 10px 18px 10px 14px;
  border-radius: 99px;
  border: 1px solid #01060C33;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #01060C;
  gap: 8px;
  box-sizing: border-box;
  margin-bottom: 12px;
}

.services-intro h2 {
  width: 424px;
  height: 120px;
  opacity: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0;
  color: #01060C;
  margin: 0;
}

.services-intro p {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
  color: #2B2D2F;
  width: 100%;
  margin: 0;
}

.services-intro .btn-primary {
  width: max-content;
  margin-top: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  width: 338px;
  height: 471px;
  opacity: 1;
  gap: 20px;
}

.service-img-wrapper {
  width: 338px;
  height: 350px;
  opacity: 1;
  border-radius: 30px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2px;
}

.service-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  color: #01060C;
  width: 100%;
  margin: 0;
}

.service-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  color: #707376;
  width: 100%;
  margin: 0;
}

/* --- FLEET SECTION --- */
.fleet-wrapper {
  width: calc(100% - 70px);
  /* Matches Hero section outer padding (35px each side) */
  max-width: 1850px;
  margin: 0 auto 60px auto;
  background: #01060C;
  border-radius: 20px;
  padding: 100px 5%;
  /* Fluid padding */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.fleet-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  /* Updated gap */
}

.fleet-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  /* Updated gap */
  width: 100%;
  max-width: 944px;
  /* Optional text wrap bound, doesn't break responsive */
}

.fleet-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  /* Fluid width */
  padding: 10px 18px 10px 14px;
  border-radius: 99px;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  gap: 8px;
  box-sizing: border-box;
}

.fleet-pill .pill-dot {
  width: 8px;
  height: 8px;
  background-color: #1B5AA3;
  border-radius: 50%;
}

.fleet-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
  width: 100%;
  margin: 0;
}

.fleet-header p {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
  color: #A1A7AD;
  width: 100%;
  margin: 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* Updated gap */
  width: 100%;
  max-width: 1620px;
  /* Updated width */
}

.fleet-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  border-radius: 20px;
  gap: 32px;
  padding: 30px;
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: #FFFFFF33;
}

.fleet-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: #FFFFFF0D;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 1;
}

.fleet-icon-wrapper img {
  width: 60.593994140625px;
  height: 50.61299133300781px;
  object-fit: contain;
  opacity: 1;
}

.fleet-card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
}

.fleet-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
  width: 100%;
  margin: 0;
}

.fleet-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  color: #A1A7AD;
  width: 100%;
  margin: 0;
}

/* --- MILESTONES SECTION --- */
.milestones-section {
  width: 100%;
  max-width: 1920px;
  min-height: 1075px;
  margin: 0 auto;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

.marquee-wrapper {
  width: 100%;
  height: 120px;
  overflow: hidden;
  padding: 30px 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: scrollMarquee 20s linear infinite;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 100%;
  color: #01060C;
  text-transform: uppercase;
  letter-spacing: 0;
}

.marquee-content span {
  padding: 0 16px;
}

.marquee-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.pill-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.milestones-container {
  width: 100%;
  max-width: 1920px;
  margin: 100px 0 0 0;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
  align-items: flex-start;
}

.milestones-image-col {
  width: 100%;
}

.milestones-img {
  width: 125%;
  margin-left: -25%;
  height: auto;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
  display: block;
}

.milestones-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 843px;
  gap: 60px;
  padding-right: 35px;
  box-sizing: border-box;
}

.milestones-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 42px;
  white-space: nowrap;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  border-radius: 99px;
  border: 1px solid #01060C33;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #01060C;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
  opacity: 1;
}

.milestones-content-col h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  color: #01060C;
  width: 100%;
  max-width: 843px;
  margin: 0;
}

.accordion-container {
  width: 100%;
  max-width: 843px;
  display: flex;
  flex-direction: column;
}

.accordion-item {
  width: 100%;
  border-bottom: 1px solid #01060C33;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
}

.accordion-item:first-child {
  border-top: 1px solid #01060C33;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  color: #01060C;
  min-height: 34px;
  margin: 0;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon .icon-active {
  display: none;
}

.accordion-icon .icon-inactive {
  display: block;
}

.accordion-item.active .accordion-icon .icon-active {
  display: block;
}

.accordion-item.active .accordion-icon .icon-inactive {
  display: none;
}

.accordion-body {
  margin-top: 16px;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-body p {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4A4D50;
  margin: 0;
  max-width: 90%;
}

.milestones-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 159px;
  height: 48px;
  gap: 8px;
  padding: 12px 24px;
  background-color: #1B5AA3;
  color: #FFFFFF;
  border-radius: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
  opacity: 1;
}

.partnerships-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 48px;
  gap: 8px;
  padding: 12px 24px;
  background-color: #1B5AA3;
  color: #FFFFFF;
  border-radius: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
  opacity: 1;
}

/* --- PARTNERSHIPS SECTION --- */
.partnerships-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 1920 / 1086; /* Enforces the exact 1920x1086 Figma dimensions proportionally */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 35px;
  box-sizing: border-box;
  overflow: hidden;
}

.partnerships-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.partnerships-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.partnerships-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 930px;
  gap: 50px;
  z-index: 2;
}

.partnerships-upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 930px;
  min-height: 306px;
  height: auto;
  gap: 30px;
  opacity: 1;
}

.partnerships-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 274px;
  height: 42px;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  border-radius: 99px;
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  opacity: 1;
}

.partnerships-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  max-width: 929px;
  height: 120px;
  margin: 0;
  opacity: 1;
}

.partnerships-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  color: #A1A7AD;
  width: 100%;
  max-width: 839px;
  height: 52px;
  margin: 0;
  opacity: 1;
}

.partnerships-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 820px;
  min-height: 34px;
  height: auto;
  margin: 0;
  opacity: 1;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: #FFFFFF;
}

.feature-item svg, .feature-item img {
  display: block;
  width: 34px;
  height: 34px;
  padding: 7px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #FFFFFF0A;
  border: 1px solid #FFFFFF1A;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  stroke: #A1A7AD;
}

.feature-item .highlight {
  color: #1B5AA3;
  font-weight: 700;
}

.partnerships-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 730px;
  min-height: 130px;
  height: auto;
  gap: 20px;
  margin: 0;
  opacity: 1;
  flex-wrap: nowrap;
}

.logo-card {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #FFFFFF1A;
  border: 1px solid #FFFFFF29;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease;
  opacity: 1;
}

.logo-card:hover {
  transform: translateY(-5px);
}

/* --- NETWORK SECTION --- */
.network-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 100px 150px 45px 150px;
  border-bottom: 1px solid #EAEAEA;
  box-sizing: border-box;
}

.network-container {
  width: 100%;
  max-width: 1620px;
  min-height: 533px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 37px;
  opacity: 1;
}

.network-content-col {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 489px;
  box-sizing: border-box;
}

.network-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 42px;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  border-radius: 99px;
  border: 1px solid #01060C33;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #01060C;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.network-content-col h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  color: #01060C;
  width: 100%;
  max-width: 855px;
  min-height: 120px;
  margin: 0 0 24px 0;
}

.network-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
  color: #2B2D2F;
  width: 100%;
  max-width: 855px;
  min-height: 52px;
  margin: 0 0 50px 0;
}

.network-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 898px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EAEAEA;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-block {
  width: 100%;
}

.border-right {
  position: relative;
}

.border-right::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #EAEAEA;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #1B5AA3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #A1A7AD;
}

.contact-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #01060C;
}

/* Map Column */
.network-map-col {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 533px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 533px;
}

.network-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pin {
  position: absolute;
  width: 0;
  height: 0;
}

.pin-jamnagar {
  top: 42%;
  left: 32%;
}

.pin-rajkot {
  top: 48%;
  left: 47%;
}

.pin-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
  width: max-content;
  max-width: 300px;
}

.pin-jamnagar .pin-card {
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.pin-rajkot .pin-card {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.pin-jamnagar .pin-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #FFFFFF transparent transparent transparent;
}

.pin-rajkot .pin-card::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #FFFFFF transparent;
}

.pin-img {
  width: 60px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.pin-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pin-text h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #01060C;
  margin: 0;
}

.pin-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: #707376;
  margin: 0;
  line-height: 1.4;
}

.pin-pointer {
  position: absolute;
  top: -38px;
  left: -20px;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 45px 150px 100px 150px;
  box-sizing: border-box;
}

.testimonials-container {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.testimonials-header {
  width: 100%;
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.testimonials-header h2 {
  width: 100%;
  max-width: 973px;
  min-height: 26px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  color: #01060C;
  text-transform: uppercase;
  margin: 0;
  flex-shrink: 0;
}

.testimonials-header p {
  width: 100%;
  max-width: 631px;
  min-height: 78px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #2B2D2F;
  margin: 0;
  text-align: right;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  margin-left: -150px;
  margin-right: -150px;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  width: 380px;
  min-width: 380px;
  height: 280px;
  background-color: #F1F7FA;
  border-radius: 24px;
  padding: 24px 20px 24px 20px;
  border: 1px solid #E5EBEE;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  box-sizing: border-box;
}

.card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  height: 139px;
  gap: 28px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-text {
  width: 100%;
  max-width: 340px;
  height: 92px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: #000000;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #01060C;
  margin: 0;
}

.author-info span {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: #707376;
}

.custom-drag-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: rgba(27, 90, 163, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.custom-drag-cursor.active {
  opacity: 1;
  transform: scale(1);
}

.testimonials-grid.hide-cursor,
.testimonials-grid.hide-cursor * {
  cursor: none !important;
}

.testimonials-grid.is-dragging {
  scroll-snap-type: none !important;
}

.testimonials-grid.is-dragging .testimonial-card {
  user-select: none;
}

/* --- FOOTER SECTION --- */
.site-footer {
  width: 100%;
  max-width: 1920px;
  min-height: 523px;
  margin: 0 auto;
  background-color: #01060C;
  padding: 100px 107px 0 107px;
  gap: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.footer-top {
  width: 100%;
  max-width: 1620px;
  height: 54px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.footer-col {
  flex: 1;
}

.footer-col-center {
  display: flex;
  justify-content: center;
  text-align: left;
}

.footer-col-right {
  text-align: right;
}

.footer-col p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #A1A7AD;
  margin: 0;
}

.footer-address {
  width: 100%;
  max-width: 322px;
  height: 52px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin: 0;
}

.footer-copyright {
  width: 100%;
  max-width: 417px;
  height: 26px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin: 0;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 269px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.footer-watermark {
  width: 100%;
  max-width: 1706px;
  height: 269px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 269px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  user-select: none;

  /* Text gradient fill */
  background: linear-gradient(180deg, #252A30 16.04%, rgba(1, 6, 12, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;


}

/* --- UNIFIED RIPPLE HOVER SYSTEM --- */
.btn-primary,
.btn-secondary,
.btn-contact,
.milestones-btn,
.partnerships-btn {
  position: relative;
  overflow: hidden;
  /* Fallback */
  outline: none;
  border: none;
  /* clip-path prevents anti-aliasing sub-pixel bleed perfectly */
  clip-path: inset(0 round 10px);
  /* Unified typography for all Contact US buttons */
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.btn-content-wrapper {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: inherit;
  gap: inherit;
  transition: color 0.4s ease-out;
  pointer-events: none;
}

.btn-ripple-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 250%;
  padding-bottom: 250%;
  /* Perfect circle */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  /* On mouseleave: fade opacity smoothly over 0.4s, instantly reset scale AFTER 0.4s */
  transition: opacity 0.4s ease-out, transform 0s 0.4s;
}

/* Hover Base Animation */
.btn-primary:hover .btn-ripple-effect,
.btn-secondary:hover .btn-ripple-effect,
.btn-contact:hover .btn-ripple-effect,
.milestones-btn:hover .btn-ripple-effect,
.partnerships-btn:hover .btn-ripple-effect {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.4s ease-out, opacity 0s;
}

/* 1. CONTACT US BUTTONS (Hover -> Black background, White text) */
.btn-secondary .btn-ripple-effect,
.btn-contact .btn-ripple-effect,
.milestones-btn .btn-ripple-effect {
  background-color: #01060C;
}

.btn-secondary:hover .btn-content-wrapper,
.btn-contact:hover .btn-content-wrapper,
.milestones-btn:hover .btn-content-wrapper {
  color: #FFFFFF;
}

.btn-secondary:hover .btn-arrow,
.btn-contact:hover .btn-arrow,
.milestones-btn:hover .btn-arrow {
  /* Force arrow to be solid white on the black background */
  filter: brightness(0) invert(1) !important;
}

/* 2. BLUE BUTTONS (Hover -> White background, Dark text) */
.btn-primary .btn-ripple-effect,
.partnerships-btn .btn-ripple-effect {
  background-color: #FFFFFF;
}

.btn-primary:hover .btn-content-wrapper,
.partnerships-btn:hover .btn-content-wrapper {
  color: #01060C;
}

.btn-primary:hover .btn-arrow,
.partnerships-btn:hover .btn-arrow {
  /* Force arrow to be solid black on the white background */
  filter: brightness(0) !important;
}

/* OVERRIDE: Services Section Primary Button -> Black Hover */
.services-intro .btn-primary .btn-ripple-effect {
  background-color: #01060C;
}

.services-intro .btn-primary:hover .btn-content-wrapper {
  color: #FFFFFF;
}

.services-intro .btn-primary:hover .btn-arrow {
  /* White arrow stays white on black background */
  filter: none !important;
}

/* 3. WHITE BUTTONS */
/* For explicit white buttons that should only have a subtle hover */
.btn-white .btn-ripple-effect {
  background-color: rgba(0, 0, 0, 0.05);
  /* Very light dark ripple */
}

.btn-white:hover .btn-content-wrapper {
  color: inherit;
  /* Keep text color as is */
}

/* Button SVG Arrow Styling */
.btn-arrow {
  height: 1em;
  /* Matches font size */
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: filter 0.4s ease-out;
  /* Smooth color change if filters are added later */
}

/* ==========================================================================
   MASTER RESPONSIVE OVERRIDES
   ========================================================================== */

/* --- 1440px (LARGE LAPTOP) --- */
@media (max-width: 1440px) {
  /* Global */
  *, *::before, *::after { box-sizing: border-box; }
  body { overflow-x: hidden; }
  
  /* Hero */
  .hero-wrapper { padding: 0 20px; }
  .hero-container { height: auto; aspect-ratio: 2 / 1; padding-bottom: 0; }
  .hero-content { justify-content: space-between; align-items: flex-start; gap: 4vw; padding: 0 3% 50px 3%; }
  .hero-left { max-width: 48vw; display: flex; flex-direction: column; gap: 1.2vw; }
  .hero-right { max-width: 42vw; display: flex; flex-direction: column; justify-content: flex-start; gap: 1.5vw; margin-top: calc(42px + 1.2vw); }
  .main-title { width: 100%; max-width: 100%; font-size: clamp(40px, 3.5vw, 50px); line-height: 1.1; }
  
  /* About */
  .about-section { padding: 80px 35px; border-radius: 0; height: auto; }
  .about-grid { width: 100%; height: auto; gap: 2vw; }
  .about-card, .about-info-card, .about-features-card { flex: 1; min-width: 0; width: 100%; height: auto; min-height: auto; padding: clamp(24px, 5vw, 32px); }
  .about-image-card { flex: 1; min-width: 0; width: 100%; height: auto; min-height: auto; aspect-ratio: 480/500; padding: 0; }
  .features-list { margin-bottom: 24px; }
  .info-top, .stats-block { height: auto; min-height: auto; }
  .about-footer { width: 100%; max-width: 100%; height: auto; }
  .serving-text { width: 100%; max-width: 100%; height: auto; white-space: normal; text-align: center; }
  .rating-block { flex-wrap: wrap; justify-content: center; }
  .rating-block strong { width: auto; max-width: 100%; height: auto; text-align: center; }
  
  /* Services */
  .services-wrapper { padding: 80px 35px; height: auto; }
  .services-grid { width: 100%; height: auto; gap: 3vw; }
  .services-intro { flex: 1.2; min-width: 0; height: auto; max-width: none; }
  .services-intro h2 { width: 100%; max-width: 100%; height: auto; font-size: clamp(26px, 2.5vw, 42px); }
  .services-intro p { width: 100%; max-width: 100%; height: auto; }
  .services-col { flex: 1; min-width: 0; }
  .service-card { width: 100%; height: auto; }
  .service-img-wrapper { width: 100%; height: auto; aspect-ratio: 338/350; }
  
  /* Fleet */
  .fleet-wrapper { padding: 80px 35px; width: calc(100% - 70px); border-radius: 20px; margin: 0 auto 60px auto; }
  .fleet-header { max-width: 100%; height: auto; }
  .fleet-grid { width: 100%; height: auto; gap: 2vw; }
  .fleet-card { width: 100%; max-width: none; height: auto; padding: 2vw; }
  
  /* Milestones */
  .milestones-section { padding: 80px 0; height: auto; min-height: auto; }
  .milestones-container { width: 100%; gap: 4vw; padding: 0 35px; }
  .milestones-content-col { padding-right: 0; max-width: none; gap: 4vw; }
  .milestones-content-col h2, .milestones-content-col p, .accordion-container { width: 100%; max-width: 100%; height: auto; }
  
  /* Partnerships */
  .partnerships-section { padding: 80px 35px; aspect-ratio: auto; min-height: auto; height: auto; }
  .partnerships-upper { height: auto; min-height: auto; }
  .partnerships-content h2, .partnerships-desc { height: auto; max-width: 100%; }
  
  /* Network */
  .network-section { padding: 80px 35px; }
  .network-container { width: 100%; height: auto; min-height: auto; gap: 4vw; }
  .network-content-col h2, .network-desc { height: auto; min-height: auto; max-width: 100%; }
  .network-contact-grid { max-width: 100%; }
  .network-map-col { min-height: auto; height: auto; }
  .map-wrapper { height: auto; aspect-ratio: 1; }

  /* Testimonials */
  .testimonials-section { padding: 45px 8vw 100px 8vw; height: auto; }
  .testimonials-header { height: auto; min-height: 78px; }
  .testimonials-header h2 { flex-shrink: 1; width: max-content; max-width: 40%; height: auto; }
  .testimonials-header p { flex-shrink: 1; width: 100%; max-width: 60%; height: auto; }
  .testimonials-grid { margin-left: -8vw; margin-right: -8vw; padding-left: 0; padding-right: 0; }
  .testimonial-card { width: clamp(280px, 21vw, 380px); min-width: clamp(280px, 21vw, 380px); height: auto; min-height: 280px; }
  .card-content, .testimonial-text { max-width: 100%; height: auto; }

  /* Footer */
  .site-footer { padding: 80px 35px 0 35px; gap: 6vw; min-height: auto; }
  .footer-top { height: auto; max-width: 100%; }
  .footer-address, .footer-copyright { width: 100%; max-width: 100%; height: auto; }
  .footer-bottom { height: auto; }
  .footer-watermark { height: auto; font-size: 16.8vw; max-width: 100%; }
}

/* --- 1176px TO 992px (LAPTOP HERO FIX) --- */
@media (max-width: 1176px) and (min-width: 992px) {
  .hero-container {
    aspect-ratio: auto;
    min-height: clamp(650px, 70vw, 950px);
  }
  
  .hero-left,
  .hero-right {
    max-width: unset;
  }
}

/* --- 991px (TABLET) --- */
@media (max-width: 991px) {
  /* Global */
  body { padding-top: 20px; }
  h2 { font-size: 5.5vw !important; height: auto !important; line-height: 1.2 !important; }
  
  /* Hero */
  .hero-wrapper { padding: 0 3vw; }
  .hero-header-nav { display: none; }
  .hero-header .btn-contact { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .hero-container { border-radius: 2.6vw; height: auto; aspect-ratio: 704 / 691; padding-bottom: 0; }
  .hero-content { flex-direction: column; align-items: flex-start; text-align: left; gap: 4vw; justify-content: flex-end; padding-bottom: 5vw; }
  .hero-left { align-items: flex-start; max-width: 100%; text-align: left; gap: 3vw; }
  .hero-right { align-items: flex-start; max-width: 100%; text-align: left; gap: 2vw; }
  .hero-right p { text-align: left; font-size: 2.5vw; line-height: 1.5; }
  .welcome-pill { font-size: 1.6vw; padding: 1.2vw 2vw; height: auto; }
  .hero-content .btn-primary { font-size: 1.8vw; height: auto; padding: 1.5vw 3vw; }
  .main-title { font-size: 5.7vw; line-height: 1; max-width: 86vw; }
  .hero-bg-image { object-position: 75% center; }
  
  /* About */
  .about-section { height: auto; padding: 8vw 3vw; }
  .about-grid { flex-direction: column; gap: 3vw; }
  .about-card, .about-info-card, .about-features-card, .about-image-card { flex: none; width: 100%; min-width: 100%; height: auto; border-radius: 5vw; }
  .about-image-card { aspect-ratio: 3/2; }
  .about-main-img { border-radius: 5vw; }
  .experience-badge { padding: 16px; bottom: 16px; left: 16px; border-radius: 12px; }
  .experience-badge h3 { font-size: 20px; }
  .experience-badge p { font-size: 12px; }
  
  .about-info-card, .about-features-card { justify-content: flex-start; gap: 3vw; padding: 4.5vw; }
  .info-top, .stats-block { min-height: 0; }
  .about-info-card h3 { font-size: 18px; line-height: 1.4; margin-bottom: 8px; }
  .info-top p { font-size: 13px; line-height: 1.5; }
  .stats-block h4 { font-size: 28px; }
  .stats-block p { font-size: 14px; }
  
  .features-intro { font-size: 13px; margin-bottom: 20px; line-height: 1.5; }
  .features-list { gap: 12px; margin-bottom: 20px; }
  .features-list li { font-size: 12px; gap: 10px; }
  .check-icon { width: 18px; height: 18px; }
  .btn-secondary { padding: 10px 18px; font-size: 13px; border-radius: 8px; }
  
  .about-footer { width: 100%; flex-direction: column; gap: 12px; text-align: center; height: auto; margin-top: 20px; }
  .serving-text { width: 100%; height: auto; text-align: center; font-size: 13px; }
  .rating-block { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .rating-block strong { width: auto; height: auto; text-align: center; font-size: 14px; }
  .stars { width: 100px; height: 18px; }
  .star-icon { width: 14px; height: 14px; }
  
  /* Services */
  .services-wrapper { padding: 8vw 4vw; }
  .services-grid { flex-direction: column; gap: 6vw; }
  .services-col { width: 100%; }
  .services-intro { align-items: center; margin: 0 auto 6vw auto; gap: 3vw; }
  .services-intro-top { align-items: center; text-align: center; gap: 2vw; }
  .services-intro h2 { text-align: center; width: 85vw; margin: 0 auto; }
  .services-intro p { text-align: center; width: 85vw; font-size: 2.6vw; line-height: 1.5; margin: 0 auto; }
  .services-pill { font-size: 1.8vw; padding: 1vw 2vw; margin: 0 auto; text-align: center; }
  .service-card { width: 100%; max-width: 100%; height: auto; align-items: center; display: flex; flex-direction: column; gap: 3vw; }
  .service-card h3 { text-align: center; font-size: 4vw; margin: 0 auto; width: 80vw; }
  .service-card p { text-align: center; width: 80vw; font-size: 2.5vw; line-height: 1.5; margin: 0 auto; }
  .service-img-wrapper { width: 85vw; height: auto; aspect-ratio: 16 / 9; margin: 0 auto; border-radius: 4vw; overflow: hidden; }
  .services-col:not(:last-child)::after { display: block; width: 100%; height: 1px; top: auto; bottom: -3vw; left: 0; right: 0; }
  .services-col:first-child::after { display: none; }
  
  /* Milestones */
  .milestones-container { display: flex; flex-direction: column; align-items: center; }
  .milestones-content-col { display: contents; }
  .milestones-pill { order: 1; margin: 0 auto 20px auto; }
  .milestones-content-col h2 { order: 2; text-align: center; margin: 0 auto 40px auto; max-width: 100%; }
  .milestones-image-col { order: 3; width: 100%; max-width: 600px; margin: 0 auto 40px auto; }
  .milestones-img { width: 100%; margin-left: 0; border-radius: 20px; }
  .accordion-container { order: 4; width: 100%; max-width: 100%; }
  .milestones-btn { order: 5; margin: 40px auto 0 auto; }
  .accordion-item { text-align: left; }
  
  /* Fleet */
  .fleet-wrapper { padding: 60px 20px; width: calc(100% - 40px); margin: 0 auto 60px auto; }
  .fleet-header { align-items: center; text-align: center; margin: 0 auto; }
  .fleet-header h2, .fleet-header p { text-align: center; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .fleet-card { width: 100%; max-width: 100%; align-items: center; text-align: center; }
  .fleet-card h3, .fleet-card p { text-align: center; }
  
  /* Partnerships */
  .partnerships-section { padding: 60px 20px; height: auto; aspect-ratio: auto; min-height: auto; }
  .partnerships-features { flex-wrap: wrap; justify-content: center; }
  .partnerships-logos { flex-wrap: wrap; justify-content: center; max-width: 450px; }
  .partnerships-content h2 { height: auto; }
  .partnerships-desc { height: auto; margin-bottom: 20px; }
  .partnerships-upper { height: auto; min-height: auto; }
  
  /* Network */
  .network-section { padding: 60px 20px; overflow: hidden; }
  .network-container { grid-template-columns: 1fr; text-align: center; }
  .network-content-col { align-items: center; min-height: auto; margin-bottom: 40px; width: 100%; max-width: 100%; }
  .network-content-col h2 { height: auto; min-height: auto; text-align: center; width: 100%; }
  .network-desc { text-align: center; width: 100%; max-width: 100%; height: auto; margin-bottom: 40px; }
  
  .network-contact-grid { grid-template-columns: 1fr; gap: 0; border-bottom: none; padding-bottom: 0; width: 100%; max-width: 100%; }
  .border-right::after { display: none; }
  .contact-block { width: 100%; max-width: 100%; padding: 20px 0; border-bottom: 1px solid #EAEAEA; justify-content: flex-start; }
  .location-block { border-bottom: none; }
  .contact-info { text-align: left; min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
  .contact-value { white-space: normal; word-break: break-word; }
  
  .network-image-col { max-width: 700px; margin: 0 auto; justify-content: center; width: 100%; }
  
  /* Testimonials */
  .testimonials-section { padding: 60px 20px; }
  .testimonials-header { flex-direction: column; align-items: center; text-align: center; gap: 20px; height: auto; }
  .testimonials-header h2 { text-align: center; height: auto; min-height: auto; width: 100%; max-width: 100%; }
  .testimonials-header p { text-align: center; max-width: 100%; width: 100%; height: auto; min-height: auto; }
  .testimonials-grid { margin-left: -20px; margin-right: -20px; padding-left: 0; padding-right: 0; gap: 20px; scroll-snap-type: x mandatory; }
  .testimonial-card { width: clamp(280px, 45vw, 380px); min-width: clamp(280px, 45vw, 380px); height: auto; scroll-snap-align: center; }
  .card-content { height: auto; max-width: 100%; }
  .custom-drag-cursor { display: none !important; }
  .testimonials-grid.hide-cursor, .testimonials-grid.hide-cursor * { cursor: auto !important; }

  /* Footer */
  .site-footer { padding: 60px 20px 0 20px; min-height: auto; gap: 60px; }
  .footer-top { flex-wrap: wrap; height: auto; gap: 40px 0; }
  .footer-col { flex: 0 0 50%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; text-align: left; }
  .footer-col-center { justify-content: flex-start; text-align: left; }
  .footer-col-right { text-align: left; justify-content: flex-start; }
  .footer-address, .footer-copyright { height: auto; margin: 0; max-width: 100%; text-align: left; }
  .footer-bottom { height: auto; }
  .footer-watermark { font-size: calc((100vw - 40px) * 0.176); height: auto; }
}

/* --- 768px (MOBILE) --- */
@media (max-width: 768px) {
  /* Global */
  body { padding-top: 20px; }
  h2 { font-size: 8.5vw !important; height: auto !important; line-height: 1.2 !important; }
  
  /* Hero */
  .hero-wrapper { padding: 0 3vw; }
  .hero-container { border-radius: 4.6vw; height: auto; aspect-ratio: auto; min-height: clamp(550px, 160vw, 648px); padding-bottom: 0; }
  .hero-header { flex-direction: row; height: auto; padding: 4vw; gap: 4vw; }
  .hero-header-nav { flex-wrap: wrap; justify-content: center; }
  .hero-content { padding: 8vw 4vw clamp(75px, 12vw, 90px) 4vw; align-items: center; text-align: center; justify-content: center; gap: 6vw; }
  .hero-left { align-items: center; text-align: center; gap: 4vw; }
  .hero-right { align-items: center; text-align: center; gap: 5vw; }
  .hero-right p { text-align: center; font-size: clamp(14px, 3.5vw, 18px); max-width: 90%; margin: 0 auto; }
  .welcome-pill { font-size: clamp(10px, 2.5vw, 14px); padding: 2vw 4vw; height: auto; white-space: normal; margin: 0 auto; }
  .hero-content .btn-primary { font-size: clamp(14px, 3vw, 16px); height: auto; padding: 12px 24px; }
  .main-title { font-size: clamp(32px, 6vw, 48px); text-align: center; line-height: 1.1; max-width: 100%; }
  
  /* About */
  .about-section { padding: 60px 20px; }
  .about-card, .about-info-card, .about-features-card, .about-image-card { width: 100%; min-width: 100%; height: auto; }
  .info-top { min-height: auto; }
  .about-footer { width: 100%; flex-direction: column; gap: 16px; text-align: center; height: auto; }
  .serving-text { width: 100%; height: auto; text-align: center; }
  .rating-block { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .rating-block strong { width: auto; height: auto; text-align: center; }
  
  /* Services */
  .services-wrapper { padding: 12vw 4vw; }
  .services-grid { gap: 8vw; }
  .services-intro p { width: 100%; font-size: 4vw; }
  .services-intro-top h2 { width: 100%; }
  .services-pill { font-size: 3vw; padding: 1.5vw 3vw; margin-bottom: 2vw; }
  .service-card { gap: 3vw; }
  .service-card h3 { font-size: 5vw; }
  .service-card p { width: 100%; font-size: 3.5vw; }
  .service-img-wrapper { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 4vw; }
  
  /* Fleet */
  .fleet-wrapper { padding: 60px 20px; width: calc(100% - 40px); border-radius: 20px; margin: 0 auto 60px auto; }
  .fleet-grid { grid-template-columns: 1fr; }
  
  /* Milestones */
  .milestones-section { padding: 60px 0; }
  .milestones-container { padding: 0 20px; }
  .milestones-btn { width: auto; min-width: 280px; justify-content: center; }
  .accordion-header h3 { padding-right: 40px; font-size: clamp(20px, 5vw, 28px); }
  
  /* Partnerships */
  .partnerships-section { padding: 60px 20px; height: auto; aspect-ratio: auto; min-height: auto; }
  .partnerships-features { flex-direction: column; align-items: center; gap: 16px; width: 100%; overflow: hidden; }
  .feature-item { font-size: clamp(14px, 4.5vw, 18px); white-space: normal; text-align: center; }
  .logo-card { width: 100px; height: 100px; }
  .partnerships-logos { max-width: 350px; }
  .partnerships-btn { width: auto; min-width: 280px; justify-content: center; }
  
  /* Network */
  .network-section { padding: 60px 20px; }
  .network-map-img { width: 100%; height: auto; }
  
  /* Testimonials */
  .testimonials-section { padding: 60px 20px; }
  .testimonials-grid { margin-left: -20px; margin-right: -20px; padding-left: 0; padding-right: 0; gap: 16px; }
  .card-content { max-width: 100%; height: auto; }
  
  /* Footer */
  .site-footer { padding: 60px 20px 0 20px; }
  .footer-col { flex: 0 0 100%; }
  .footer-watermark { font-size: calc((100vw - 40px) * 0.155); }
}

/* --- 576px (PHONES) --- */
@media (max-width: 576px) {
  /* Hero overrides for true mobile phones */
  
  /* Testimonials */
  .testimonial-card { width: 82vw; min-width: 82vw; }
  
  /* Global */
  .btn-contact { width: 100%; }
}

/* --- 420px (ULTRA-SMALL MOBILE HERO FIX) --- */
@media (max-width: 420px) {
  .hero-container {
    min-height: auto;
  }
  .hero-content {
    padding: 8vw 4vw 16vw 4vw;
  }
  
  /* Precision mapped from 472px width to prevent extra line breaks and preserve container aspect ratio */
  .main-title { font-size: 6.5vw; }
  .hero-right p { font-size: 3.5vw; }
  .welcome-pill { font-size: 2.5vw; padding: 2vw 4vw; }
  .hero-content .btn-primary { font-size: 3vw; padding: 2.5vw 5vw; }
}

/* --- GLOBAL PILL-TO-HEADING STANDARDIZATION (16px) --- */
/* Normalize containers that previously used gap for spacing */
.about-title-block, .services-intro-top { gap: 16px; }

/* Convert large flex gaps into margins to allow isolated pill spacing */
.milestones-content-col { gap: 0; }
.milestones-content-col > * { margin-bottom: 60px; }
.milestones-content-col > *:last-child { margin-bottom: 0; }

.partnerships-upper { gap: 0; }
.partnerships-upper > * { margin-bottom: 30px; }
.partnerships-upper > *:last-child { margin-bottom: 0; }

/* Force standard 16px Pill -> Heading spacing */
.about-pill, .services-pill, .milestones-pill, .partnerships-pill, .network-pill { 
  margin-bottom: 16px !important; 
}

/* Ensure responsive tablet/mobile layouts aren't overridden by desktop margin hacks */
@media (max-width: 991px) {
  .milestones-content-col > * { margin-bottom: 0; }
}
