/* =========================================================
   Other Services Page — other-services.css
   Design system: Total Transfer / Carvan
   Fonts: DM Sans (body) + Lexend Deca (headings)
   Primary: #4e6cfb  |  Bootstrap 5 + Font Awesome 6
   ========================================================= */

/* ── CSS Design Tokens ───────────────────────────────────── */
:root {
  --wdtPrimaryColor:      #4e6cfb;
  --wdtPrimaryColorRgb:   78, 108, 251;
  --wdtPrimaryDark:       #3555e8;
  --wdtPrimaryLight:      #eef1ff;

  --wdtBodyTxtColor:      #444b5a;
  --wdtHeadAltColor:      #0d1b3e;
  --wdtBorderColor:       #e5e9f2;
  --wdtTertiaryColor:     #f5f6fa;
  --wdtBgDark:            #050b20;

  --wdtFontTypo_Base:     'DM Sans', sans-serif;
  --wdtFontTypo_Alt:      'Lexend Deca', sans-serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-2xl:  28px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 30px rgba(0,0,0,.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.14);

  --transition-fast:   0.18s ease;
  --transition-normal: 0.3s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--wdtFontTypo_Base);
  font-size: 1rem;
  color: var(--wdtBodyTxtColor);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wdtFontTypo_Alt);
  color: var(--wdtHeadAltColor);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.section { padding: 90px 0; }
.bg-light-subtle { background: var(--wdtTertiaryColor) !important; }

/* ── Shared Button ───────────────────────────────────────── */
.os-btn {
  display: inline-flex !important ;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.7rem 1.7rem !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--wdtFontTypo_Alt) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  transition: all var(--transition-normal) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  gap: 0.4rem !important;
}
.os-btn--primary {
  background: var(--wdtPrimaryColor) !important;
  color: #fff !important;
  border-color: var(--wdtPrimaryColor) !important;
}
.os-btn--primary:hover {
  background: var(--wdtPrimaryDark) !important;
  border-color: var(--wdtPrimaryDark) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(var(--wdtPrimaryColorRgb), 0.35) !important;
}
.os-btn--whatsapp {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}
.os-btn--whatsapp:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  transform: translateY(-2px);
}
.os-btn--white {
  background: #fff;
  color: var(--wdtPrimaryColor);
  border-color: #fff;
}
.os-btn--white:hover {
  background: var(--wdtPrimaryLight);
  color: var(--wdtPrimaryDark);
  transform: translateY(-2px);
}
.os-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.os-btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
}

/* ── Logo ────────────────────────────────────────────────── */
.os-logo__text {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wdtHeadAltColor);
  letter-spacing: -0.5px;
}
.os-logo__accent { color: var(--wdtPrimaryColor); }

/* ── Section Tagline + Title ─────────────────────────────── */
.section__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--wdtFontTypo_Alt);
  color: var(--wdtPrimaryColor);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.sec-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--wdtHeadAltColor);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.os-section-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.os-section-header { max-width: 100%; }
.os-section-header .sec-title { margin-bottom: 0.75rem; }


/* ============================================================
   HEADER
============================================================ */
.os-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wdtBorderColor);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.os-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.os-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.os-nav__links li a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--wdtBodyTxtColor);
  transition: all var(--transition-fast);
}
.os-nav__links li a:hover,
.os-nav__links li a.active {
  color: var(--wdtPrimaryColor);
  background: var(--wdtPrimaryLight);
}
.os-nav__links li a.os-btn { padding: 0.5rem 1.25rem; }

/* Toggle button */
.os-nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.os-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wdtBodyTxtColor);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.os-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.os-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.os-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .os-nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--wdtBorderColor);
    padding: 1.25rem 1.5rem;
    gap: 0.35rem;
    box-shadow: var(--shadow-md);
  }
  .os-nav__links.is-open { display: flex; }
  .os-nav__links li, .os-nav__links li a { width: 100%; }
}


/* ============================================================
   HERO SECTION (matching existing WordPress template)
============================================================ */
.airport-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--wdtBgDark);
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(78,108,251,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(78,108,251,.15) 0%, transparent 50%),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=75&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 120px 0 60px;
}
.airport-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,11,32,.88) 0%, rgba(5,11,32,.65) 100%);
}
.airport-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1199.98px) {
  .airport-hero__inner { grid-template-columns: 1fr 400px; }
}
@media (max-width: 991.98px) {
  .airport-hero__inner { grid-template-columns: 1fr; }
  .airport-hero { padding-top: 100px; }
}

/* Hero Content */
.airport-hero__content { color: #fff; }
.airport-hero__title {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.airport-hero__title-accent {
  background: linear-gradient(90deg, #818cf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.airport-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}
.airport-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.airport-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}
.airport-hero__badges span i { font-size: 0.75rem; color: #fff; }

/* Hero Form */
.airport-form {
  background: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
  overflow: hidden;
}
.airport-form__tabs {
  background: var(--wdtTertiaryColor);
}
.airport-form__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wdtPrimaryColor);
  padding: 1rem 0;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.airport-form__tab--active {
  border-bottom-color: var(--wdtPrimaryColor);
  color: var(--wdtPrimaryColor);
}
.airport-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.airport-form__field {
  padding: 0.9rem 1.4rem;
  border-right: 1px solid var(--wdtBorderColor);
  border-bottom: 1px solid var(--wdtBorderColor);
}
.airport-form__field:nth-child(even) { border-right: none; }
.airport-form__field--full {
  grid-column: 1 / -1;
  border-right: none;
}
.airport-form__field--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.airport-form__label {
  display: block;
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.35rem;
}
.airport-form__field input,
.airport-form__field select,
.airport-form__field textarea {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--wdtFontTypo_Base);
  font-size: 0.92rem;
  color: var(--wdtBodyTxtColor);
  background: transparent;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}
.airport-form__field textarea {
  resize: none;
  min-height: 44px;
}
.airport-form__field input::placeholder,
.airport-form__field textarea::placeholder { color: #bbb; }
.airport-form__field select { cursor: pointer; }
.airport-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  gap: 1rem;
  border-bottom: none;
  border-right: none;
}
.airport-form__note {
  font-size: 0.78rem;
  color: #999;
}
.airport-form__note i { color: var(--wdtPrimaryColor); margin-right: 4px; }
.airport-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}
.airport-form__btn--primary {
  background: var(--wdtPrimaryColor);
  color: #fff;
  border-color: var(--wdtPrimaryColor);
}
.airport-form__btn--primary:hover {
  background: var(--wdtPrimaryDark);
  border-color: var(--wdtPrimaryDark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--wdtPrimaryColorRgb),.35);
}
.option-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.2rem;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.os-breadcrumb {
  background: var(--wdtTertiaryColor);
  border-bottom: 1px solid var(--wdtBorderColor);
  padding: 0.65rem 0;
}
.os-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #888;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.os-breadcrumb__list a { color: var(--wdtPrimaryColor); font-weight: 500; }
.os-breadcrumb__list a:hover { text-decoration: underline; }
.os-breadcrumb__list i { font-size: 0.6rem; color: #ccc; }
.os-breadcrumb__list .active { color: var(--wdtBodyTxtColor); font-weight: 600; }


/* ============================================================
   STATS STRIP
============================================================ */
.os-stats {
  background: var(--wdtPrimaryColor);
}
.os-stat {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  color: #fff;
  position: relative;
}
.os-stat--last { border-right: none; }
.os-stat__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,.75);
}
.os-stat__value {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.os-stat__value span { font-size: 1rem; font-weight: 500; opacity: .8; }
.os-stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media (max-width: 767.98px) {
  .os-stat { border-bottom: 1px solid rgba(255,255,255,.12); }
  .os-stat:nth-child(even) { border-right: none; }
}


/* ============================================================
   SERVICES GRID
============================================================ */
body .os-services-section {
  background: var(--wdtTertiaryColor) !important;
  padding: 90px 0;
}

.os-service-card {
  background: #fff;
  border: 1.5px solid var(--wdtBorderColor);
  border-radius: var(--radius-xl);
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}
.os-service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: rgba(var(--wdtPrimaryColorRgb), .3);
}
.os-service-card--featured {
  background: var(--wdtPrimaryColor);
  border-color: var(--wdtPrimaryColor);
}
.os-service-card--featured:hover {
  box-shadow: 0 20px 60px rgba(var(--wdtPrimaryColorRgb),.4);
  border-color: var(--wdtPrimaryDark);
}
.os-service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  color: var(--wdtPrimaryColor);
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.os-service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 1.75rem 1.75rem 0;
  flex-shrink: 0;
}
.os-service-card__icon--blue {
  background: var(--wdtPrimaryLight);
  color: var(--wdtPrimaryColor);
}
.os-service-card__icon--white {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.os-service-card__body {
  padding: 1.25rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.os-service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--wdtHeadAltColor);
}
.os-service-card--featured .os-service-card__title { color: #fff; }

.os-service-card__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666;
  margin-bottom: 1rem;
  flex: 1;
}
.os-service-card--featured .os-service-card__text { color: rgba(255,255,255,.8); }

.os-service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.os-service-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--wdtBodyTxtColor);
}
.os-service-card__features li i {
  color: #22c55e;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.os-service-card--featured .os-service-card__features li { color: rgba(255,255,255,.9); }
.os-service-card--featured .os-service-card__features li i { color: #86efac; }

.os-service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--wdtPrimaryColor);
  background: transparent;
  color: var(--wdtPrimaryColor);
  transition: all var(--transition-fast);
  width: 100%;
  margin-top: auto;
}
.os-service-card__btn:hover {
  background: var(--wdtPrimaryColor);
  color: #fff;
  transform: translateY(-1px);
}
.os-service-card__btn--light {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
}
.os-service-card__btn--light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}


/* ============================================================
   PARTNER INTRO (matching existing template)
============================================================ */
.partner-intro { padding: 90px 0; }

.partner-image { position: relative; }
.partner-image .absolute {
  position: absolute;
  inset: 10px;
  background: linear-gradient(135deg, var(--wdtPrimaryColor), #818cf8);
  transform: rotate(-4deg);
  border-radius: var(--radius-2xl);
  z-index: 0;
  opacity: .3;
}
.partner-image__placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--wdtPrimaryLight) 0%, #c7d2fe 100%);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
}
.partner-image__placeholder i {
  font-size: 5rem;
  color: var(--wdtPrimaryColor);
  opacity: .35;
}
.partner-image__placeholder span {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wdtPrimaryColor);
  opacity: .6;
}

.partner-badge i { font-size: 0.9rem; }

.partner-desc {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}

.partner-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.partner-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--wdtBodyTxtColor);
}
.partner-list li i {
  width: 22px;
  height: 22px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.partner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   HOW IT WORKS / PROCESS
============================================================ */
.os-process { background: var(--wdtTertiaryColor); }

.os-process-step {
  background: #fff;
  border: 1.5px solid var(--wdtBorderColor);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all var(--transition-normal);
}
.os-process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(var(--wdtPrimaryColorRgb), .3);
}
.os-process-step--featured {
  background: var(--wdtPrimaryColor);
  border-color: var(--wdtPrimaryColor);
}
.os-process-step--featured:hover { box-shadow: 0 16px 50px rgba(var(--wdtPrimaryColorRgb),.4); }

.os-process-step__number {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(var(--wdtPrimaryColorRgb), .06);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  letter-spacing: -2px;
}
.os-process-step--featured .os-process-step__number { color: rgba(255,255,255,.12); }

.os-process-step__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--wdtPrimaryLight);
  color: var(--wdtPrimaryColor);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.os-process-step--featured .os-process-step__icon {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.os-process-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--wdtHeadAltColor);
}
.os-process-step--featured .os-process-step__title { color: #fff; }
.os-process-step__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666;
}
.os-process-step--featured .os-process-step__text { color: rgba(255,255,255,.8); }


/* ============================================================
   WHY CHOOSE US (existing work-section styles)
============================================================ */
.work-section { padding: 90px 0; background: #fff; }

.work-title { margin-bottom: 3rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.work-card {
  background: var(--wdtTertiaryColor);
  border: 1.5px solid var(--wdtBorderColor);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-normal);
}
.work-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--wdtPrimaryColorRgb), .25);
  transform: translateY(-4px);
  background: #fff;
}

.work-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--wdtPrimaryLight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.work-icon--fa {
  font-size: 1.5rem;
  color: var(--wdtPrimaryColor);
}
/* For the old SVG icons from the template */
.work-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--wdtPrimaryColor);
}
.work-icon i {
  color: var(--wdtPrimaryColor);
  font-size : 21px;
}
.work-card:hover .work-icon i {
    color: #fff;
}
.work-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--wdtHeadAltColor);
}
.work-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #777;
  margin: 0;
}


/* ============================================================
   TESTIMONIALS
============================================================ */
.os-testimonials { background: var(--wdtTertiaryColor); }

.os-review {
  background: #fff;
  border: 1.5px solid var(--wdtBorderColor);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}
.os-review:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.os-review--featured {
  background: var(--wdtPrimaryColor);
  border-color: var(--wdtPrimaryColor);
}
.os-review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 0.85rem;
}
.os-review--featured .os-review__stars { color: #fde68a; }
.os-review__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.os-review--featured .os-review__text { color: rgba(255,255,255,.85); }
.os-review__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.os-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wdtPrimaryLight);
  color: var(--wdtPrimaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.os-review__avatar--light {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.os-review__name {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wdtHeadAltColor);
}
.os-review--featured .os-review__name { color: #fff; }
.os-review__role {
  font-size: 0.75rem;
  color: #999;
}
.os-review--featured .os-review__role { color: rgba(255,255,255,.65); }


/* ============================================================
   FAQ
============================================================ */
.os-faq { padding: 90px 0; }

.os-accordion .accordion-item.os-accordion__item {
  border: 1.5px solid var(--wdtBorderColor) !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.os-accordion__btn {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wdtHeadAltColor);
  background: #fff;
  padding: 1.1rem 1.4rem;
  box-shadow: none !important;
}
.os-accordion__btn:not(.collapsed) {
  background: var(--wdtPrimaryLight);
  color: var(--wdtPrimaryColor);
}
.os-accordion__btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234e6cfb'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.os-accordion__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #666;
  padding: 1rem 1.4rem 1.25rem;
  border-top: 1px solid var(--wdtBorderColor);
}


/* ============================================================
   CTA BANNER
============================================================ */
.os-cta {
  position: relative;
  padding: 100px 0;
  background: var(--wdtBgDark);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(78,108,251,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(78,108,251,.2) 0%, transparent 50%);
  overflow: hidden;
}
.os-cta__overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 80px);
}
.os-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.os-cta__tag {
  display: inline-flex;
  align-items: center;
  background: rgba(78,108,251,.2);
  border: 1px solid rgba(78,108,251,.4);
  color: #a5b4fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.os-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.os-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.os-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   FOOTER
============================================================ */
.os-footer {
  background: var(--wdtBgDark);
  padding: 70px 0 0;
}
.os-footer__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 340px;
  margin-top: 0.75rem;
}
.os-footer__heading {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.os-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.os-footer__links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition-fast);
}
.os-footer__links li a:hover { color: #fff; }
.os-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.os-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
}
.os-footer__contact li i {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--wdtPrimaryColor);
  flex-shrink: 0;
}
.os-footer__contact li a:hover { color: #fff; }
.os-footer__socials {
  display: flex;
  gap: 0.6rem;
}
.os-footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,.1);
}
.os-footer__socials a:hover {
  background: var(--wdtPrimaryColor);
  color: #fff;
  border-color: var(--wdtPrimaryColor);
}
.os-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}
.os-footer__bottom ul {
  display: flex;
  gap: 1.25rem;
}
.os-footer__bottom a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition-fast);
}
.os-footer__bottom a:hover { color: rgba(255,255,255,.8); }


/* ============================================================
   SERVICE ENQUIRY MODAL
============================================================ */
.os-modal .modal-dialog { max-width: 680px; }
.os-modal__content {
  border: none;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.os-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 2rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--wdtBorderColor);
  position: relative;
}
.os-modal__header-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: var(--wdtPrimaryLight);
  color: var(--wdtPrimaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.os-modal__title {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wdtHeadAltColor);
  margin-bottom: 0.2rem;
}
.os-modal__subtitle {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}
.os-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wdtTertiaryColor);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.os-modal__close:hover { background: #e0e0e0; color: var(--wdtBodyTxtColor); }
.os-modal__body {
  padding: 1.75rem 2rem 2rem;
  background: #fff;
  max-height: 80vh;
  overflow-y: auto;
}
.os-modal__body::-webkit-scrollbar { width: 6px; }
.os-modal__body::-webkit-scrollbar-track { background: var(--wdtTertiaryColor); }
.os-modal__body::-webkit-scrollbar-thumb { background: var(--wdtBorderColor); border-radius: 3px; }

/* ── Booking Form ────────────────────────────────────────── */
.os-booking-form { width: 100%; }
.os-form-group p { display: flex; flex-direction: column; gap: 0.35rem; margin: 0; }
.os-form-label {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wdtBodyTxtColor);
  display: flex;
  align-items: center;
}
.os-form-label i { color: var(--wdtPrimaryColor); }
.os-required { color: #e53935; margin-left: 2px; }
.os-form-control {
    width: 100%;
    padding: 0.65rem 1rem !important;
    font-family: var(--wdtFontTypo_Base);
    font-size: 0.9rem;
    color: var(--wdtBodyTxtColor) !important;
    background: #fff;
    border: 1.5px solid var(--wdtBorderColor) !important;
    border-radius: var(--radius-md) !important;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none !important;
    -webkit-appearance: none !important;
}
.os-form-control::placeholder { color: #aaa; }
.os-form-control:focus {
  border-color: var(--wdtPrimaryColor);
  box-shadow: 0 0 0 3px rgba(var(--wdtPrimaryColorRgb), .12);
}
textarea.os-form-control { resize: vertical; min-height: 80px; }
.os-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
  padding-right: 2.25rem;
  cursor: pointer;
}
.os-has-error .os-form-control {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.1);
}
.os-form-error { font-size: 0.78rem; color: #e53935; display: none; font-weight: 500; }
.os-has-error .os-form-error { display: block; }
.os-btn-submit { position: relative; }
.os-btn-submit:disabled { opacity: .75; cursor: not-allowed; transform: none !important; }
.os-form-note { font-size: 0.78rem; color: #999; text-align: center; margin-bottom: 0; }
.os-form-note i { color: var(--wdtPrimaryColor); }

/* Success Message */
.os-form-success { text-align: center; padding: 2.5rem 1rem; }
.os-form-success__icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 1rem;
  animation: successPop .4s ease;
}
@keyframes successPop {
  0%   { transform: scale(.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}
.os-form-success h5 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--wdtHeadAltColor); }
.os-form-success p { color: #666; font-size: .95rem; max-width: 400px; margin: 0 auto; line-height: 1.7; }


/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.os-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.os-anim--in {
  opacity: 1;
  transform: none;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 767.98px) {
  .section { padding: 60px 0; }
  .airport-hero { padding-bottom: 40px; }
  .airport-hero__inner { gap: 2rem; }

  .airport-form__grid { grid-template-columns: 1fr; }
  .airport-form__field { border-right: none; }
  .airport-form__field--split { grid-template-columns: 1fr 1fr; }

  .partner-intro { padding: 60px 0; }
  .partner-image__placeholder { min-height: 280px; }

  .work-section { padding: 60px 0; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .os-process { padding: 60px 0; }
  .os-testimonials { padding: 60px 0; }
  .os-faq { padding: 60px 0; }
  .os-cta { padding: 70px 0; }
  .os-services-section { padding: 60px 0; }

  .os-modal__header { padding: 1.25rem; }
  .os-modal__body { padding: 1.25rem; }
}

@media (max-width: 575.98px) {
  .work-grid { grid-template-columns: 1fr; }
  .os-cta__actions { flex-direction: column; }
  .partner-actions { flex-direction: column; }
  .os-footer__bottom { flex-direction: column; text-align: center; }
  .airport-form__field--split { grid-template-columns: 1fr; }
}