/* index.html — mobile-first responsive overrides */

html {
  width: 100%;
  overflow-x: clip;
}

.page {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

.page .hero {
  min-height: auto;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
}

.page .nav {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page .booking,
.page .search,
.page .search-field,
.page .field-control {
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

/* Search: 1 col mobile → 2 col tablet → 5 col desktop */
.page .search {
  grid-template-columns: 1fr;
  gap: 14px;
}

.page .search-field {
  padding: 0;
  border-right: 0;
}

.page .search .search-submit {
  margin-left: 0;
  width: 100%;
  grid-column: 1 / -1;
  min-height: 58px;
}

@media (min-width: 640px) {
  .page .search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .page .search {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .page .search .search-submit {
    width: auto;
    grid-column: auto;
    min-height: 72px;
  }
}

/* Tablet + mobile nav (hamburger) */
@media (max-width: 991px) {
  .page .nav {
    display: flex !important;
    height: 64px;
    padding: 0 12px;
    justify-content: space-between;
    gap: 12px;
  }

  .page .nav-left {
    flex: 0 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .page .nav-right {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .page .nav-left .logo {
    display: inline-flex !important;
  }

  .page .nav-left .logo img {
    height: 48px;
    width: auto;
  }

  .page .desktop-menu,
  .page .nav-center,
  .page .nav-right > .account-menu {
    display: none !important;
  }

  .page .menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .page .info-card {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-top: 16px;
    padding: 12px 10px;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.32);
    z-index: 2;
  }

  .page .info-card div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: clamp(10px, 2.8vw, 13px);
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .page .info-card div i {
    font-size: clamp(15px, 4vw, 18px);
  }

  .page .hero-text h1 {
    font-size: clamp(26px, 6.5vw, 40px);
    line-height: 1.1;
  }

  .page .driver-services {
    overflow-x: clip;
  }

  .page .service-image::before {
    display: none;
  }

  .page .service-image {
    overflow: hidden;
    border-radius: 18px;
  }

  .page .assist-section,
  .page .luxury-footer {
    overflow-x: clip;
  }
}

@media (min-width: 992px) {
  .page .menu-btn {
    display: none !important;
  }

  .page .nav-left .logo {
    display: inline-flex !important;
  }

  .page .mobile-menu,
  .page .mobile-menu.active {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .page .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 12px 0 16px;
    box-sizing: border-box;
  }

  .page .mobile-menu.active {
    display: flex !important;
  }

  .page .mobile-menu a,
  .page .mobile-menu button {
    color: #fff;
    font-weight: 700;
    background: transparent;
    text-align: left;
    padding: 10px 0;
  }

  .page .mobile-menu .account-link {
    color: #fff;
    background: transparent;
    padding: 10px 0;
    text-align: left;
  }
}

/* Modern full-screen mobile menu (≤768px) */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .page .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex !important;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(50, 50, 50, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: "Inter", sans-serif;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-28px);
    transition:
      opacity 0.35s ease,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.35s ease;
  }

  .page .mobile-menu.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .page .mobile-menu-close {
    position: absolute;
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .page .mobile-menu-close:hover,
  .page .mobile-menu-close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
  }

  .page .mobile-menu-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 72px 24px 24px;
    box-sizing: border-box;
  }

  .page .mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
  }

  .page .mobile-menu-links a {
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 4px 0;
    background: transparent;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .page .mobile-menu-links a:hover,
  .page .mobile-menu-links a:focus-visible {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  .page .mobile-menu-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px max(28px, env(safe-area-inset-bottom));
    box-sizing: border-box;
    margin-top: auto;
  }

  .page .mobile-menu-auth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .page .mobile-menu:has(.mobile-account.signed-in) .mobile-menu-auth {
    display: none;
  }

  .page .customer-login,
  .page .driver-login {
    width: 90%;
    max-width: 360px;
    padding: 16px 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .page .customer-login {
    background: #0d6efd;
    color: #fff;
  }

  .page .driver-login {
    background: #0b1736;
    color: #fff;
  }

  .page .customer-login:hover,
  .page .driver-login:hover,
  .page .customer-login:focus-visible,
  .page .driver-login:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  }

  .page .customer-login i,
  .page .driver-login i {
    color: #fff;
    font-size: 18px;
  }

  .page .mobile-menu .account-menu.mobile-account {
    display: none;
    width: 90%;
    max-width: 360px;
    flex-direction: column;
    gap: 12px;
  }

  .page .mobile-menu .account-menu.mobile-account.signed-in {
    display: flex;
  }

  .page .mobile-account-btn,
  .page .mobile-logout-btn {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .page .mobile-account-btn {
    background: #0d6efd;
    color: #fff;
  }

  .page .mobile-logout-btn {
    background: #0b1736;
    color: #fff;
  }

  .page .mobile-account-btn i,
  .page .mobile-logout-btn i {
    color: #fff;
    font-size: 18px;
  }

  .page .mobile-account-btn:hover,
  .page .mobile-logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  }
}

@media (max-width: 480px) {
  .page .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page .info-card {
    grid-template-columns: 1fr;
    padding: 12px 14px;
    gap: 12px;
  }

  .page .info-card div {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    font-size: 13px;
    gap: 10px;
  }

  .page .hero-text h1 br {
    display: none;
  }

  .page .booking {
    padding: 14px;
  }

  .page .field-control {
    min-height: 52px;
    padding: 0 12px;
    gap: 10px;
  }

  .page .field-control i {
    font-size: 18px;
  }

  .page .search .search-submit {
    min-height: 52px;
    font-size: 15px;
  }
}

/* Brand marquee — below hero */
.brand-marquee-section {
  padding: clamp(48px, 7vw, 70px) 0;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.brand-marquee-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.brand-marquee-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  color: #111827;
  margin-bottom: clamp(28px, 4vw, 45px);
  line-height: 1.2;
}

.brand-marquee-heading .accent {
  color: #2563eb;
}

.brand-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brand-marquee-wrapper::before,
.brand-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(60px, 12vw, 120px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.brand-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.brand-marquee-track {
  display: flex;
  gap: clamp(28px, 5vw, 55px);
  width: max-content;
  animation: brandMarqueeScroll 58s linear infinite;
}

.brand-marquee-wrapper:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-name-card {
  width: clamp(135px, 22vw, 170px);
  height: clamp(90px, 16vw, 105px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name-card h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 3.2vw, 24px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
  filter: grayscale(1);
  opacity: 0.65;
  line-height: 1.1;
  text-align: center;
}

.brand-name-card p {
  margin-top: 12px;
  font-size: clamp(11px, 2vw, 13px);
  color: #6b7280;
  font-weight: 500;
}

@keyframes brandMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
  }

  .brand-marquee-wrapper::before,
  .brand-marquee-wrapper::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .brand-marquee-section {
    padding: 45px 0;
  }

  .brand-marquee-heading {
    margin-bottom: 30px;
  }
}

/* Service, About, Contact inner pages */
.services-section {
  padding: clamp(45px, 7vw, 70px) clamp(16px, 6vw, 6%);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  color: #07142f;
  min-height: calc(100vh - 80px);
}

.services-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.services-section .section-title span {
  color: #1267ff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.services-section .section-title h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  margin-top: 10px;
  color: #07142f;
  font-weight: 800;
}

.services-section .section-title p {
  max-width: 620px;
  margin: 14px auto 0;
  color: #51627f;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1420px;
  margin: 0 auto;
}

.services-section .service-card {
  position: relative;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2eaf5;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(13, 42, 89, 0.08);
  transition: 0.35s ease;
}

.services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(18, 76, 150, 0.14);
  border-color: #cfe0ff;
}

.services-section .service-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 310px;
  height: 210px;
  border-radius: 55% 45% 0 0;
  background: var(--soft);
  z-index: 0;
}

.services-section .icon-box {
  width: 135px;
  height: 135px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--main);
  font-size: 58px;
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.services-section .icon-box i {
  display: block;
  line-height: 1;
  font-style: normal;
}

.services-section .card-content {
  position: relative;
  z-index: 2;
}

.services-section .card-content h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.5vw, 34px);
  margin-bottom: 18px;
  font-weight: 900;
  color: #07142f;
}

.services-section .line {
  width: 42px;
  height: 5px;
  border-radius: 50px;
  background: var(--main);
  margin-bottom: 22px;
}

.services-section .card-content p {
  color: #51627f;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  max-width: 460px;
}

.services-section .arrow-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--main);
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.14);
  transition: 0.3s;
  text-decoration: none;
  display: grid;
  place-items: center;
}

.services-section .arrow-btn:hover {
  background: var(--main);
  color: #fff;
  transform: scale(1.08);
}

.services-section .orange { --main: #f97316; --icon-bg: #fff1e6; --soft: linear-gradient(135deg, transparent, #ffedd5); }
.services-section .amber { --main: #f59e0b; --icon-bg: #fff7db; --soft: linear-gradient(135deg, transparent, #fef3c7); }
.services-section .blue { --main: #2563eb; --icon-bg: #eaf3ff; --soft: linear-gradient(135deg, transparent, #dbeafe); }
.services-section .green { --main: #16a34a; --icon-bg: #e9faef; --soft: linear-gradient(135deg, transparent, #dcfce7); }
.services-section .cyan { --main: #0ea5a8; --icon-bg: #e6fbfb; --soft: linear-gradient(135deg, transparent, #ccfbf1); }
.services-section .purple { --main: #7c3aed; --icon-bg: #f1e8ff; --soft: linear-gradient(135deg, transparent, #ede9fe); }
.services-section .red { --main: #ef4444; --icon-bg: #fff0f0; --soft: linear-gradient(135deg, transparent, #fee2e2); }

.about-section {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: clamp(50px, 7vw, 70px) clamp(18px, 7vw, 7%);
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.about-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 36% 64%;
  gap: clamp(40px, 6vw, 70px);
  max-width: 1450px;
  margin: 0 auto;
}

.about-section .label {
  font-size: 13px;
  letter-spacing: 3px;
  color: #1267ff;
  font-weight: 700;
  margin-bottom: 28px;
}

.about-section .left h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -3px;
  color: #07142f;
}

.about-section .meta {
  margin-top: 45px;
  padding-left: 22px;
  border-left: 2px solid #1267ff;
  color: #51627f;
  line-height: 1.9;
}

.about-section .right .lead {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  font-weight: 500;
  color: #07142f;
  max-width: 900px;
  margin-bottom: 60px;
}

.about-section .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.about-section .feature {
  border-top: 1px solid #dbe4f1;
  padding-top: 22px;
}

.about-section .feature span {
  color: #1267ff;
  font-weight: 700;
}

.about-section .feature h3 {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  margin: 12px 0;
  color: #07142f;
}

.about-section .feature p {
  color: #51627f;
  line-height: 1.7;
}

.about-section .stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dbe4f1;
  border-bottom: 1px solid #dbe4f1;
  margin-bottom: 55px;
}

.about-section .stat {
  padding: 28px 18px;
  border-right: 1px solid #dbe4f1;
}

.about-section .stat:last-child {
  border-right: none;
}

.about-section .stat h2 {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  color: #1267ff;
}

.about-section .stat p {
  color: #51627f;
  margin-top: 8px;
}

.about-section .cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-section .cta h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  letter-spacing: -1px;
  color: #07142f;
}

.about-section .btn {
  background: #1267ff;
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-section .btn:hover {
  background: #0b2550;
  transform: translateY(-2px);
}

.contact-page {
  min-height: calc(100vh - 80px);
  background:
    linear-gradient(rgba(18, 76, 150, 0.72), rgba(7, 26, 68, 0.82)),
    url("assets/img/web/hero-bg.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.contact-card {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2eaf5;
  border-radius: 16px;
  padding: clamp(35px, 6vw, 55px) clamp(26px, 5vw, 58px);
  box-shadow: 0 30px 80px rgba(7, 20, 47, 0.18);
}

.contact-card h1 {
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(27px, 4vw, 32px);
  line-height: 1.15;
  font-weight: 700;
  color: #07142f;
  margin-bottom: 10px;
}

.contact-card > p {
  text-align: center;
  font-size: 14px;
  color: #51627f;
  margin-bottom: 34px;
}

.contact-card .form-group {
  margin-bottom: 22px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfd8e6;
  background: transparent;
  padding: 10px 0;
  font-size: clamp(18px, 2.5vw, 21px);
  outline: none;
  color: #07142f;
}

.contact-card textarea {
  resize: none;
  height: 48px;
}

.contact-card .check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  color: #51627f;
  margin: 12px 0 28px;
}

.contact-card .check-row input {
  width: 18px;
  height: 18px;
  accent-color: #1267ff;
}

.contact-card button[type="submit"] {
  border: none;
  background: #1267ff;
  color: #fff;
  padding: 12px 18px 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-card button[type="submit"]:hover {
  background: #0b2550;
  transform: translateY(-2px);
}

.contact-card button[type="submit"] span {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #1267ff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.contact-card .success {
  display: none;
  margin-top: 22px;
  background: #e8fff1;
  color: #087a35;
  border: 1px solid #a7efbf;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}

.contact-card-wide {
  max-width: 760px;
}

.contact-page-form .contact-field {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.contact-page-form .contact-field i {
  color: #1267ff;
  width: 18px;
  flex-shrink: 0;
}

.contact-page-form .contact-field input,
.contact-page-form .contact-field select,
.contact-page-form .contact-field textarea {
  width: 100%;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  color: #07142f;
  background: #fff;
}

.contact-page-form .contact-field textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-page-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-page-form .contact-form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-page-form .contact-form-status.error {
  background: #fff1f1;
  color: #b42318;
  border: 1px solid #fecdca;
}

.contact-page-form .contact-form-status.success {
  background: #e8fff1;
  color: #087a35;
  border: 1px solid #a7efbf;
}

@media (max-width: 700px) {
  .contact-page-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-section .features {
    grid-template-columns: 1fr;
  }

  .about-section .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .services-section .service-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
  }

  .services-section .icon-box {
    width: 105px;
    height: 105px;
    font-size: 44px;
  }

  .services-section .arrow-btn {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .about-section .stats {
    grid-template-columns: 1fr;
  }

  .about-section .stat {
    border-right: none;
    border-bottom: 1px solid #dbe4f1;
  }

  .about-section .stat:last-child {
    border-bottom: none;
  }
}
