/* ============================================================
   ABANEX GLOBAL — Global Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   1. IMPORTS & VARIABLES
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --bg:           #070707;
  --surface:      #0E0E0E;
  --gold:         #C8A24A;
  --gold-hi:      #E0BC62;
  --text-primary: #F5F5F3;
  --text-sec:     #A8A8A8;
  --border:       rgba(255,255,255,0.08);
  --border-gold:  rgba(200,162,74,0.4);

  /* Typography */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-gap:  100px;
  --content-max:  1280px;
  --radius:       18px;
  --radius-sm:    10px;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

/* ------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-gap) 0;
}

.section--dark { background: var(--bg); }
.section--surface { background: var(--surface); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ------------------------------------------------------------
   4. TYPOGRAPHY
   ------------------------------------------------------------ */
.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, .h1 {
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--text-primary);
}

h2, .h2 {
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 1.12;
  font-weight: 400;
  color: var(--text-primary);
}

h3, .h3 {
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--text-primary);
}

.body-text {
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-sec);
}

.small-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-sec);
}

.caption {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sec);
}

/* Gold divider line */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.gold-line--center {
  margin: 20px auto;
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  border-radius: 2px;
}

.btn--primary {
  background: var(--gold);
  color: #0a0a0a;
}

.btn--primary:hover {
  background: var(--gold-hi);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: #0a0a0a;
}

.btn--full { width: 100%; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}

.btn-arrow:hover { gap: 14px; }

.btn-arrow svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------
   6. HEADER / NAVIGATION
   ------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
}

.header.scrolled {
  background: rgba(7,7,7,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s ease;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--gold);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.header__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1200;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 96px 24px 48px;
  gap: 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  flex-shrink: 0;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 162, 74, 0.4);
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.mobile-nav__close:hover {
  border-color: var(--gold);
  background: rgba(200, 162, 74, 0.1);
  color: var(--gold-hi);
}

/* When mobile menu is open: hide hamburger and lock body scroll */
body.menu-open { overflow: hidden; }
body.menu-open .header__hamburger { display: none !important; }
body.menu-open .header { z-index: 100; }  /* drop header below menu */

/* ------------------------------------------------------------
   7. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 20px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social svg {
  width: 15px;
  height: 15px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--text-primary); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer__contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(500%) hue-rotate(5deg) brightness(90%);
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-sec);
}

.footer__legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-sec);
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--text-primary); }

.footer__legal span {
  color: var(--border);
}

/* ------------------------------------------------------------
   8. HERO — HOMEPAGE
   ------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,7,7,1) 0%,
    rgba(7,7,7,1) 35%,
    rgba(7,7,7,0.40) 65%,
    rgba(7,7,7,0.10) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
  padding-bottom: 120px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--text-primary);
  max-width: 560px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-sec);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Trust bar below hero — matches design crop */
.trust-bar {
  background: #0A0A0A;
  padding: 0;
}

/* trust-bar__grid and trust-bar__inner both supported */
.trust-bar__grid,
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.trust-bar__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 44px 56px;
}

/* Short vertical divider — not the full cell height, just the content area */
.trust-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-bar__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(500%) hue-rotate(5deg) brightness(95%) contrast(88%);
}

.trust-bar__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-bar__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.005em;
}

.trust-bar__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.55);
  line-height: 1.65;
  margin: 0;
  max-width: 260px;
}

/* ── Typography utility aliases used in HTML ── */
.t-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.t-gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 28px;
}

.t-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 400;
  color: var(--text-primary);
}

.t-h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--text-primary);
}

.t-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-sec);
  font-weight: 300;
}

/* ── Grid utilities ── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.text-center { text-align: center; }

/* ── Margin utilities ── */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ------------------------------------------------------------
   9. SECTION HEADERS
   ------------------------------------------------------------ */
.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
}

.section-header__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 20px;
}

.section-header__desc {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 600px;
}

.section-header--center .section-header__desc {
  margin: 0 auto;
}

/* ------------------------------------------------------------
   10. SERVICE CARDS
   ------------------------------------------------------------ */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.service-card:hover {
  border-color: var(--border-gold);
}

.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  padding: 28px 28px 32px;
}

.service-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

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

.service-card__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
   11. FLEET CARDS
   ------------------------------------------------------------ */
.fleet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card:hover {
  border-color: var(--border-gold);
}

.fleet-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.fleet-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-card__title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  min-height: 60px;
}

.fleet-card__desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 62px;
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.fleet-card__spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.fleet-card__spec img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(500%) hue-rotate(5deg) brightness(90%);
}

.fleet-card__spec > span:not(.fleet-card__spec-label) {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1;
  margin-top: 4px;
}

.fleet-card__spec-label {
  font-size: 10.5px;
  color: var(--text-sec);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.fleet-card__amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.fleet-card__amenity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-sec);
  letter-spacing: 0.02em;
}
.fleet-card__amenity svg {
  color: var(--gold);
  flex-shrink: 0;
}

.fleet-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.fleet-card__actions .btn {
  height: 42px;
  font-size: 10.5px;
  padding: 0 14px;
}

/* ------------------------------------------------------------
   12. PROCESS / HOW IT WORKS
   ------------------------------------------------------------ */
.process {
  background: var(--bg);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 60px;
}

/* Connector lines between steps */
.process__steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 100%);
  z-index: 0;
  opacity: 0.3;
}

.process__step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process__step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  border: 1px solid rgba(200,162,74,0.5);
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.process__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process__step-num {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.process__step-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 14px;
}

.process__step-desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 230px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   13. STATS SECTION
   ------------------------------------------------------------ */
.stats {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  text-align: center;
  padding: 20px 40px;
  border-right: 1px solid var(--border);
}

.stats__item:last-child { border-right: none; }

.stats__num {
  font-family: var(--font-head);
  font-size: 58px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.5;
}

.stats__divider {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
}

/* ------------------------------------------------------------
   14. CTA SECTIONS
   ------------------------------------------------------------ */
.cta-section {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Compact variant — kept for potential future use, no longer used on corporate */
.cta-section--compact {
  padding: 56px 40px;
}
.cta-section--compact .cta-section__title {
  font-size: 40px;
  margin-bottom: 14px;
}
.cta-section--compact .cta-section__desc {
  font-size: 14px;
  margin-bottom: 28px;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section__title {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin: 0 0 18px;
}

.cta-section__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.65;
}

/* The gold button in this centered CTA */
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 36px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  transition: background 0.25s ease;
}
.cta-section__btn:hover { background: var(--gold-hi); }

/* Split CTA — base */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
}

.cta-split__content {
  background: var(--surface);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-split__title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.cta-split__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 380px;
}

.cta-split__btn {
  align-self: flex-start;
}

.cta-split__image {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.cta-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Compact variant (used on Fleet "Ready when you are") — narrow text, wide image */
.cta-split--compact {
  grid-template-columns: 0.6fr 1.4fr;
}

/* Center variant (used on About "Let's move forward, together") — 50/50, centered text */
.cta-split--center .cta-split__content {
  text-align: center;
  align-items: center;
}
.cta-split--center .cta-split__desc {
  max-width: 380px;
}
.cta-split--center .cta-split__btn {
  align-self: center;
}


/* ============================================================
   CTA BANNER — full-bleed photo + left-aligned text overlay
   Used on Fleet ("Ready when you are") and About ("Let's move forward, together")
   ============================================================ */

.cta-banner {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Diagonal gradient — darker on the left where the text sits, fading right */
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(7,7,7,0.95) 0%,
    rgba(7,7,7,0.85) 25%,
    rgba(7,7,7,0.45) 55%,
    rgba(7,7,7,0.10) 100%
  );
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  padding: 56px 64px;
  max-width: 620px;
}

.cta-banner__title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.cta-banner__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-sec);
  margin-bottom: 28px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  transition: background 0.25s ease;
}
.cta-banner__btn:hover { background: var(--gold-hi); }

/* ------------------------------------------------------------
   15. VALUES / PILLARS ROW
   ------------------------------------------------------------ */
.values-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

.values-row__main {
  padding: 0 48px 0 0;
}

.values-row__main .section-header__label,
.values-row__main .t-label {
  margin-bottom: 16px;
}

.values-row__main h2 {
  font-size: 40px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.values-row__main p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
}

.values-row__item {
  padding: 0 20px;
  text-align: center;
}

.values-row__item:last-child { border-right: none; }

.values-row__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
}

.values-row__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.values-row__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.values-row__desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   16. PAGE HERO (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-top: 88px;          /* clear the fixed header */
  overflow: hidden;
  background: var(--bg);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,7,7,1) 0%,
    rgba(7,7,7,1) 35%,
    rgba(7,7,7,0.40) 65%,
    rgba(7,7,7,0.10) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 560px;
  margin-bottom: 24px;
}

.page-hero__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-sec);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Solid gold CTA for page heroes (matches services) */
.page-hero__ctas .btn--primary {
  height: 54px;
  padding: 0 32px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
}
.page-hero__ctas .btn--primary:hover { background: var(--gold-hi); }

/* Outlined CTA for page heroes */
.page-hero__ctas .btn--secondary {
  height: 54px;
  padding: 0 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}
.page-hero__ctas .btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    min-height: 440px;
  }
  .page-hero__inner { padding: 0 24px; }
  .page-hero__title { font-size: clamp(36px, 8vw, 48px); }
  .page-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(7,7,7,0.92) 0%,
      rgba(7,7,7,0.7) 50%,
      rgba(7,7,7,0.55) 100%
    );
  }
  .page-hero__ctas { flex-direction: column; }
  .page-hero__ctas .btn { width: 100%; }
}

/* ------------------------------------------------------------
   17. SPLIT SECTIONS
   ------------------------------------------------------------ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section__img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
}

.split-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.split-section__title {
  font-family: var(--font-head);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
}

.split-section__desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ------------------------------------------------------------
   18. CHECKLIST
   ------------------------------------------------------------ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.5;
}

.checklist__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.checklist__icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
}

/* ------------------------------------------------------------
   19. CORPORATE CARDS
   ------------------------------------------------------------ */
.corp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 32px 48px;
  text-align: center;
  transition: border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 440px;
  height: 100%;
}

.corp-card:hover { border-color: var(--border-gold); }

.corp-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}

.corp-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.corp-card__title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}

.corp-card__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 240px;
}

.corp-card .btn-arrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-top: auto;
}

/* ------------------------------------------------------------
   20. ABOUT PAGE SPECIFIC
   ------------------------------------------------------------ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px;
  background: var(--bg);
}

.about-hero__image {
  position: relative;
  overflow: hidden;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------
   21. CONTACT PAGE
   ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-info__desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 340px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200,162,74,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(500%) hue-rotate(5deg) brightness(90%);
}

.contact-detail__label {
  font-size: 13px;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 15px;
  color: var(--gold);
  font-weight: 400;
}

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px 48px;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(168,168,168,0.45);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8A24A' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  cursor: pointer;
  background-color: rgba(255,255,255,0.04);
}

.form-select option {
  background: var(--surface);
  color: var(--text-primary);
}

/* ------------------------------------------------------------
   22. BOOKING PAGE
   ------------------------------------------------------------ */
.booking-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  padding-top: 90px;
}

.booking-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 40px;
  position: relative;
}

.booking-left__title {
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 16px;
}

.booking-left__desc {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 40px;
}

.booking-left__img {
  width: 100%;
  max-width: 520px;
}

.booking-right {
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Trip type tabs */
.trip-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.trip-tab {
  flex: 1;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  color: var(--text-sec);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}

.trip-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

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

.form-input-icon {
  position: relative;
}

.form-input-icon .form-input {
  padding-right: 48px;
}

.form-input-icon__icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.form-input-icon__icon svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------------
   23. SERVICES PAGE — CUSTOM REQUEST BAR
   ------------------------------------------------------------ */
.custom-request-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.custom-request-bar__title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
}

.custom-request-bar__desc {
  font-size: 14px;
  color: var(--text-sec);
  margin-top: 4px;
}

/* ------------------------------------------------------------
   24. FLEET PAGE — BEYOND VEHICLE
   ------------------------------------------------------------ */
.beyond-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.beyond-grid__media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.beyond-grid__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyond-grid__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beyond-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.beyond-pillar {
  text-align: center;
}

.beyond-pillar__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
}

.beyond-pillar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.beyond-pillar__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}

.beyond-pillar__desc {
  font-size: 11px;
  color: var(--text-sec);
  line-height: 1.55;
}

/* ------------------------------------------------------------
   25. HOMEPAGE — FLEET PREVIEW GRID
   ------------------------------------------------------------ */
.fleet-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fleet-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.fleet-preview-card:hover {
  border-color: var(--border-gold);
}

.fleet-preview-card__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.fleet-preview-card__body {
  padding: 20px 22px 24px;
}

.fleet-preview-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  margin-bottom: 6px;
}

.fleet-preview-card__desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   26. RESPONSIVE — TABLET
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }

  h1, .h1 { font-size: 54px; }
  h2, .h2, .section-header__title { font-size: 40px; }
  h3, .h3 { font-size: 26px; }

  .container { padding: 0 32px; }
  .header__inner { padding: 0 32px; }
  .page-hero__inner { padding: 0 32px; }
  .hero__inner { padding: 0 32px; padding-bottom: 100px; }

  .hero__title { font-size: 54px; }
  .page-hero__title { font-size: 52px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }

  .values-row { grid-template-columns: 1fr 1fr; }
  .values-row__main { grid-column: 1 / -1; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .split-section { gap: 50px; }
  .split-section__img { height: 400px; }

  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-hero__content { padding: 140px 40px 60px; }
  .about-hero__image { height: 440px; }

  .fleet-preview-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-layout { gap: 50px; }

  .booking-layout { grid-template-columns: 1fr; }
  .booking-left { padding: 140px 40px 40px; }
  .booking-right { padding: 40px; }

  .cta-split { grid-template-columns: 1fr; }
  .cta-split__image { height: 300px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid var(--border); }
  .stats__item:nth-child(even) { border-right: none; }

  .trust-bar__grid,
  .trust-bar__inner { grid-template-columns: 1fr; border-left: none; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 28px 24px; }
  .trust-bar__item:not(:last-child)::after { display: none; }
  .trust-bar__item:last-child { border-bottom: none; }
}

/* ------------------------------------------------------------
   27. RESPONSIVE — MOBILE
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root { --section-gap: 60px; }

  .container { padding: 0 24px; }
  .header__inner { padding: 0 24px; }

  .header__nav,
  .header__actions .btn { display: none; }

  .header__hamburger { display: flex; }

  h1, .h1, .hero__title { font-size: 40px; }
  h2, .h2, .section-header__title { font-size: 32px; }
  h3, .h3 { font-size: 24px; }

  .page-hero__title { font-size: 38px; }
  .page-hero__inner { padding: 0 24px; }
  .hero__inner { padding: 0 24px; padding-bottom: 80px; }

  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }

  .page-hero__ctas { flex-direction: column; }
  .page-hero__ctas .btn { width: 100%; max-width: 280px; }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 { grid-template-columns: 1fr; }

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

  .values-row { grid-template-columns: 1fr; }
  .values-row__item { border-right: none; border-bottom: 1px solid var(--border); }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 60px 0 0; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section__img { height: 280px; }
  .split-section--reverse .split-section__img { order: -1; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .contact-info__title { font-size: 38px; }

  .booking-layout { grid-template-columns: 1fr; padding-top: 80px; }
  .booking-left { padding: 40px 24px 24px; }
  .booking-right { padding: 32px 24px; }
  .booking-left__title { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-section { padding: 52px 28px; }
  .cta-section__title { font-size: 36px; }

  .custom-request-bar { flex-direction: column; gap: 20px; text-align: center; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__num { font-size: 40px; }

  .corp-card { padding: 28px 24px 32px; }

  .fleet-preview-grid { grid-template-columns: 1fr; }

  .about-hero__content { padding: 120px 24px 50px; }

  .beyond-grid { grid-template-columns: 1fr; }
  .beyond-pillars { grid-template-columns: 1fr 1fr; }

  .trust-bar__item { padding: 28px 24px; }

  .cta-split__content { padding: 50px 32px; }

  .footer__bottom { padding: 20px 24px; }

  .mobile-nav__close { right: 24px; }
}

/* ============================================================
   HOMEPAGE FIX — Missing aliases & spacing corrections
   ============================================================ */

/* Hero aliases (HTML uses heading/sub/actions, CSS had title/subtitle/ctas) */


.hero__sub {
  font-size: 17px;
  color: var(--text-sec);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Hero background-image support (used as inline style on .hero__bg div) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,7,7,0.88) 0%,
    rgba(7,7,7,0.52) 55%,
    rgba(7,7,7,0.18) 100%
  );
}

/* Service card image alias (.service-card__image vs .service-card__img) */
.service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Service card link alias */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s ease;
}
.service-card__link:hover { gap: 14px; }

/* Service card icon as direct img (not nested) */
.service-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(500%) hue-rotate(5deg) brightness(95%) contrast(88%);
}

/* Fleet card image alias (.fleet-card__image vs .fleet-card__img) */
.fleet-card__image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* Fleet card name alias */
.fleet-card__name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-primary);
}

/* Process step aliases (HTML uses .process-step / .process-steps) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 60px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-step__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--surface);
}

.process-step__circle img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(500%) hue-rotate(5deg);
}

.process-step__number {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.process-step__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* CTA split section (Corporate CTA) */
.cta-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
}

.cta-section__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-section__image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.cta-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA full-width centered (Contact CTA) */
.cta-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-full__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.cta-full__content {
  position: relative;
  z-index: 1;
}

/* Section spacing fixes */
.section {
  padding: 100px 0;
}

/* t-label, t-gold-line, t-h2 aliases already added — ensure section-header spacing */
.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .t-gold-line {
  margin-left: auto;
  margin-right: auto;
}

/* Trust bar icon when used as direct img element — matches design crop */
img.trust-bar__icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(500%) hue-rotate(5deg) brightness(95%) contrast(88%);
}

/* Footer grid fix */
.footer__grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer__contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(500%) hue-rotate(5deg);
}

.footer__contact-item span {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.55;
}

/* ── Responsive fixes for homepage ── */
@media (max-width: 1024px) {
  .cta-section { grid-template-columns: 1fr; }
  .cta-section__image { min-height: 300px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero__heading { font-size: 42px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .trust-bar__inner { grid-template-columns: 1fr; border-left: none; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-bar__item:not(:last-child)::after { display: none; }
  .trust-bar__item:last-child { border-bottom: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-section__content { padding: 48px 28px; }
  .cta-full { padding: 64px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}


/* Remove pseudo-element overlay to avoid double darkening */
.hero__bg::after { display: none; }

/* btn--text fix */
.btn--text {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: auto;
  cursor: pointer;
  transition: color 0.25s ease, gap 0.25s ease;
}
.btn--text:hover { color: var(--gold-hi); gap: 14px; }

/* btn--outline-gold fix */
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  height: 54px;
  padding: 0 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: #070707;
}

/* ============================================================
   FOOTER & HEADER — Design-accurate fixes
   ============================================================ */

/* ── Footer: 4-column grid (Brand | Quick Links | Services | Contact) ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.3fr;
  gap: 64px;
  padding-bottom: 64px;
}

/* Logo inside footer */
.footer__logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

/* Tagline */
.footer__tagline {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
}

/* ── Social icons row ── */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Each social icon: circular bordered button */
.footer__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  background: transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social svg {
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
}

/* Column heading */
.footer__col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

/* Link list */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links a {
  font-size: 15px;
  color: var(--text-sec);
  font-weight: 300;
  transition: color 0.2s ease;
  line-height: 1;
}

.footer__links a:hover { color: var(--text-primary); }

/* Contact items */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.footer__contact-item:last-child { margin-bottom: 0; }

.footer__contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(500%) hue-rotate(5deg);
}

.footer__contact-item span {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  font-weight: 300;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-sec);
  font-weight: 300;
}

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

.footer__legal a {
  font-size: 13px;
  color: var(--text-sec);
  transition: color 0.2s ease;
}

.footer__legal a:hover { color: var(--text-primary); }

.footer__legal span {
  color: var(--border);
  font-size: 13px;
}

/* ── Header: match design exactly ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.header__logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* Nav centered — letter-spaced, uppercase, 13px */
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
  padding-bottom: 4px;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.header__nav a:hover,
.header__nav a.active { color: var(--gold); }

.header__nav a:hover::after,
.header__nav a.active::after { width: 100%; }

/* Right side: BOOK A RIDE — outlined rectangular button */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

/* Override btn--secondary for header to match design's outlined box */
.header__right .btn--secondary {
  height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.header__right .btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Scrolled header state */
.header.scrolled {
  background: rgba(7,7,7,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ── Responsive footer & header ── */
@media (max-width: 1100px) {
  .header__nav { gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__right .btn--secondary { display: none; }
  .header__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer__socials { gap: 10px; }
}

/* ============================================================
   TRUST BAR — Final authoritative override (matches design crop)
   ============================================================ */

.trust-bar {
  background: #0A0A0A;
  width: 100%;
  padding: 0;
}

.trust-bar__inner,
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--content-max);
  margin: 0 auto;
  border-left: none;
}

.trust-bar__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 44px 56px;
  border-right: none;
  border-left: none;
}

/* Short vertical divider — content-area height only, centered */
.trust-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-bar__item:first-child { padding-left: 40px; }
.trust-bar__item:last-child { padding-right: 40px; }

/* Icon — small gold outline */
img.trust-bar__icon,
.trust-bar__icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%)
          saturate(500%) hue-rotate(5deg) brightness(95%) contrast(88%);
}

/* Text block */
.trust-bar__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-bar__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.005em;
  line-height: 1.2;
  margin: 0;
}

.trust-bar__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.55);
  line-height: 1.65;
  margin: 0;
  max-width: 260px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .trust-bar__inner,
  .trust-bar__grid {
    grid-template-columns: 1fr;
  }
  .trust-bar__item,
  .trust-bar__item:first-child,
  .trust-bar__item:last-child {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  /* Stack-mode: remove vertical accent, no border on the last item */
  .trust-bar__item:not(:last-child)::after { display: none; }
  .trust-bar__item:last-child { border-bottom: none; }
}

/* ============================================================
   HERO — Final authoritative override (replaces all previous)
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Background image layer — z-index 0 */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Gradient overlay — z-index 1, sits above bg, below content */

/* Kill the old ::after pseudo overlay — not needed anymore */
.hero__bg::after {
  display: none !important;
}

/* Content layer — z-index 2, always on top */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 100px;
}

.hero__content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Heading */
.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(48px, 5.8vw, 74px);
  line-height: 1.07;
  font-weight: 400;
  color: #F5F5F3;
  max-width: 600px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Subheading */
.hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: #A8A8A8;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 360px;
}

/* CTA row */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero__heading { font-size: 40px; }
  .hero__sub { font-size: 15px; margin-bottom: 32px; }
  .hero__content { padding-bottom: 72px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__actions .btn { width: 220px; justify-content: center; }
}

/* ============================================================
   28. SERVICES PAGE
   ============================================================ */

/* ── HERO ── full-bleed background image with diagonal overlay (same pattern as home hero, shorter height) */
.svc-hero {
  position: relative;
  min-height: 700px;          /* shorter than home's 100vh / 700px */
  display: flex;
  align-items: center;
  padding-top: 88px;          /* clear the fixed header */
  overflow: hidden;
  background: var(--bg);
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;  /* keep the chauffeur + car visible on the right */
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,7,7,1) 0%,
    rgba(7,7,7,1) 35%,
    rgba(7,7,7,0.40) 65%,
    rgba(7,7,7,0.10) 100%
  );
  z-index: 1;
}

/* Bottom fade — softens the hero image into the page background, so the
   overlapping service tiles below blend seamlessly into the hero. */
.svc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 7, 0) 0%,
    rgba(7, 7, 7, 0.55) 50%,
    rgba(7, 7, 7, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.svc-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.svc-hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.svc-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.svc-hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 560px;
}

.svc-hero__lede {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-sec);
  max-width: 440px;
  margin-bottom: 40px;
}

/* Solid gold CTA (matches the design) */
.svc-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 36px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.svc-hero__cta:hover { background: var(--gold-hi); }



/* ── SERVICE CARDS + CUSTOM REQUESTS ──
   Each card is its OWN rounded container with column gaps between them.
   The grid is pulled UP to overlap the bottom of the hero section (per design). */
.svc-grid-wrap {
  max-width: 1280px;
  margin: -70px auto 0;     /* negative top margin overlaps the hero */
  padding: 0 40px 100px;
  position: relative;
  z-index: 5;                /* sit above hero layers (bg=0, overlay=1, content=2) */
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;                    /* visible column gap, matches the design */
  margin-bottom: 20px;          /* small space before the custom requests row */
}

.svc-tile {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.svc-tile:hover {
  border-color: var(--border-gold);
}

.svc-tile__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.svc-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-tile:hover .svc-tile__photo img { transform: scale(1.04); }

.svc-tile__inner {
  position: relative;
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-tile__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%)
          saturate(500%) hue-rotate(5deg) brightness(95%) contrast(88%);
}

.svc-tile__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.svc-tile__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-sec);
  margin-bottom: 28px;
  padding-right: 60px;          /* room for the arrow at bottom-right */
  max-width: 240px;
  flex: 1;
}

/* Long thin gold arrow at bottom-right of each tile */
.svc-tile__arrow {
  position: absolute;
  right: 22px;
  bottom: 24px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease, color 0.25s ease;
}
.svc-tile__arrow:hover {
  transform: translateX(4px);
  color: var(--gold-hi);
}
.svc-tile__arrow svg { display: block; }


/* Custom Requests — own rounded box, sits directly below the cards */
.svc-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.svc-custom__text { flex: 1; }

.svc-custom__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.svc-custom__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-sec);
}

.svc-custom__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.25s ease, color 0.25s ease;
}
.svc-custom__link:hover {
  gap: 18px;
  color: var(--gold-hi);
}
.svc-custom__link svg { flex-shrink: 0; }


/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-hero { min-height: 480px; }
  .svc-hero__inner { padding: 0 32px; }

  .svc-grid-wrap { margin-top: -30px; padding: 0 32px 80px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .svc-hero {
    min-height: 440px;
    padding-top: 88px;
  }
  .svc-hero__inner { padding: 0 24px; }
  .svc-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(7,7,7,0.92) 0%,
      rgba(7,7,7,0.72) 50%,
      rgba(7,7,7,0.55) 100%
    );
  }

  /* On mobile, drop the negative-overlap so single-column cards don't get cropped */
  .svc-grid-wrap { margin-top: 0; padding: 40px 20px 60px; }
  .svc-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }

  .svc-tile__desc { padding-right: 0; }
  .svc-tile__arrow { position: static; margin-top: 8px; align-self: flex-end; }

  .svc-custom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

/* ── CTA banner responsive ── */
@media (max-width: 1024px) {
  .cta-banner__content {
    padding: 44px 40px;
    max-width: 520px;
  }
  .cta-banner__title { font-size: 32px; }
}

@media (max-width: 768px) {
  .cta-banner {
    min-height: 320px;
  }
  .cta-banner__content {
    padding: 36px 28px;
    max-width: 100%;
  }
  .cta-banner__overlay {
    /* On narrow screens the image fills width fully, so use a vertical fade
       instead of a side-to-side one so text on the left remains readable */
    background: linear-gradient(
      180deg,
      rgba(7,7,7,0.95) 0%,
      rgba(7,7,7,0.75) 60%,
      rgba(7,7,7,0.55) 100%
    );
  }
  .cta-banner__title { font-size: 28px; }
  .cta-banner__desc { font-size: 13px; }
  .cta-banner__desc br { display: none; }
}

/* ── CTA section (Corporate) responsive ── */
@media (max-width: 1024px) {
  .cta-section { padding: 72px 32px; }
  .cta-section__title { font-size: 42px; }
}

@media (max-width: 768px) {
  .cta-section { padding: 56px 24px; }
  .cta-section__title { font-size: 32px; line-height: 1.15; }
  .cta-section__desc { font-size: 14px; margin-bottom: 28px; }
  .cta-section__btn { height: 50px; font-size: 11px; padding: 0 28px; }
}

/* ============================================================
   CORPORATE FINAL CTA — self-contained, no class inheritance
   Built from the cropped design reference
   ============================================================ */
.corp-final {
  padding: 0 0 100px;
  background: var(--bg);
}

.corp-final__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.corp-final__box {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 80px 40px;
  text-align: center;
  background: transparent;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.corp-final__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 400;
  color: #F5F5F3;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
}

.corp-final__desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.55);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 680px;
}

.corp-final__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 42px;
  background: #C8A24A;
  color: #0a0a0a;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.corp-final__btn:hover {
  background: #E0BC62;
}

/* Responsive */
@media (max-width: 1024px) {
  .corp-final { padding: 0 0 80px; }
  .corp-final__container { padding: 0 32px; }
  .corp-final__box { padding: 60px 32px; min-height: 340px; }
  .corp-final__title { font-size: 42px; }
}

@media (max-width: 768px) {
  .corp-final { padding: 0 0 60px; }
  .corp-final__container { padding: 0 20px; }
  .corp-final__box { padding: 56px 24px; min-height: 300px; }
  .corp-final__title { font-size: 32px; line-height: 1.15; }
  .corp-final__desc { font-size: 14px; margin-bottom: 32px; }
  .corp-final__btn { height: 50px; padding: 0 32px; font-size: 11px; }
}