/* ==========================================================================
   AFFORD TRANSPORT — Airport Transfers Service Page
   Design tokens follow the site's existing brand palette exactly.
   ========================================================================== */

:root{
  /* ---- Brand palette (do not introduce new colors) ---- */
  --primary:        #052B26;   /* deep pine green */
  --secondary:      #0E1F1D;   /* near-black green */
  --accent:         #E4B11A;   /* gold */
  --bg:             #FFFFFF;
  --bg-section:     #F8F7F2;
  --bg-alt:         #EDF7F1;
  --border:         #E6E6E6;
  --text-dark:      #10231F;
  --text-gray:      #5B6B67;

  /* ---- Type ---- */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  /* ---- Shape / elevation ---- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(5,43,38,0.06);
  --shadow-md: 0 12px 32px rgba(5,43,38,0.10);
  --shadow-gold: 0 10px 28px rgba(228,177,26,0.30);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.01em;
}

a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }

.section{ padding: 96px 0; }
.section-eyebrow{
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow.light{ color: var(--accent); }
.section-title{ font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 600; margin-bottom: 16px; }
.section-desc{ color: var(--text-gray); max-width: 620px; margin: 0 auto; }
.section-head{ margin-bottom: 56px; }
.body-text{ color: var(--text-gray); font-size: 1.02rem; }
.lead-text{ color: var(--text-dark); font-size: 1.12rem; font-weight: 500; margin-bottom: 18px; }
.text-link{ color: var(--primary); font-weight: 600; text-decoration: underline; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover{ transform: translateY(-2px); }

.btn-gold{
  background: var(--accent);
  color: var(--secondary);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover{ background: #f0c33a; color: var(--secondary); box-shadow: 0 14px 34px rgba(228,177,26,0.4); }

.btn-outline-light{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-ghost:hover{ background: rgba(255,255,255,0.1); color: #fff; }

.btn-nav-call{
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}
.btn-nav-call:hover{ background: var(--primary); color: #fff; }

.btn-nav-book{
  background: var(--accent);
  color: var(--secondary);
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
}
.btn-nav-book:hover{ background: #f0c33a; color: var(--secondary); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.custom-navbar{ padding: 14px 0; }
.navbar-brand{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i{ color: var(--accent); font-size: 1.4rem; }
.navbar-brand em{ font-style: normal; color: var(--accent); }
.nav-link{
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.nav-link:hover{ color: var(--primary) !important; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,43,38,0.78) 0%, rgba(5,43,38,0.6) 45%, rgba(14,31,29,0.92) 100%);
}
.hero-content{
  position: relative;
  z-index: 1;
  padding: 108px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.breadcrumb-wrap .breadcrumb{
  margin-bottom: 22px;
  justify-content: center;
}
.breadcrumb-wrap .breadcrumb-item, .breadcrumb-wrap .breadcrumb-item a{
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.breadcrumb-wrap .breadcrumb-item.active{ color: var(--accent); }
.breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before{ color: rgba(255,255,255,0.4); }

.hero-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-title{
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.14;
  max-width: 780px;
  margin: 0 auto 18px;
}
.hero-sub{
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-cta{ display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }

.hero-stats{
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat{ display: flex; flex-direction: column; align-items: center; }
.stat-num{ font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--accent); display: inline-block; }
.stat-plus{ font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--accent); }
.stat-label{ font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.intro-section{ background: var(--bg); }
.intro-media{ position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.intro-media img{ width: 100%; height: 520px; object-fit: cover; transition: transform .6s ease; }
.intro-media:hover img{ transform: scale(1.04); }
.intro-badge{
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.intro-badge i{ font-size: 1.6rem; color: var(--accent); }
.intro-badge strong{ display: block; font-size: 0.92rem; color: var(--primary); }
.intro-badge span{ font-size: 0.78rem; color: var(--text-gray); }

.intro-contact{ display: flex; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
.intro-contact a{
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--primary);
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  transition: all .25s ease;
}
.intro-contact a:hover{ border-color: var(--accent); background: var(--bg-alt); }
.intro-contact i{ color: var(--accent); }

/* ==========================================================================
   FEATURE CARDS (What's Included)
   ========================================================================== */
.included-section{ background: var(--bg-section); }
.included-section--compact{ padding-top: 64px; padding-bottom: 64px; }
.included-section--compact .section-head{ margin-bottom: 40px; }

.included-strip{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.included-card{
  position: relative;
  text-align: center;
  padding: 38px 18px 30px;
  border-right: 1px solid var(--border);
  transition: background .3s ease;
}
.included-card:last-child{ border-right: none; }
.included-card:hover{ background: var(--bg-alt); }

.included-num{
  position: absolute;
  top: 14px; left: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--border);
  letter-spacing: 0.06em;
}
.included-icon{
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin: 0 auto 18px;
  box-shadow: 0 10px 22px rgba(5,43,38,0.25);
  transition: transform .35s ease;
}
.included-card:hover .included-icon{ transform: scale(1.08) rotate(-4deg); }

.included-card h3{
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.included-card h3::after{
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s ease, left .3s ease;
}
.included-card:hover h3::after{ width: 60%; left: 20%; }
.included-card p{
  color: var(--text-gray);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   AIRPORTS — "Boarding Pass" cards (signature element)
   ========================================================================== */
.airports-section{ background: var(--bg); }

.airport-strip{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.airport-chip{
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.airport-chip:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.airport-chip img{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.airport-chip:hover img{ transform: scale(1.1); }
.airport-chip-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,43,38,0.05) 30%, rgba(5,43,38,0.9) 100%);
}
.airport-chip-code{
  position: absolute; top: 10px; left: 10px;
  background: var(--accent);
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 999px;
  z-index: 2;
}
.airport-chip-name{
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

.cbx-note{
  margin-top: 36px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cbx-note i{ font-size: 1.4rem; color: var(--accent); flex-shrink: 0; }
.cbx-note p{ margin: 0; color: var(--text-dark); }

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
.fleet-section{ background: var(--bg-section); }
.fleet-card{
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fleet-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fleet-img{ height: 190px; overflow: hidden; }
.fleet-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fleet-card:hover .fleet-img img{ transform: scale(1.08); }
.fleet-body{ padding: 24px; }
.fleet-body h3{ font-size: 1.2rem; margin-bottom: 10px; }
.fleet-cap{ font-size: 0.85rem; color: var(--text-gray); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.fleet-cap i{ color: var(--accent); }
.fleet-best{ font-size: 0.88rem; color: var(--text-dark); margin-bottom: 18px; }
.fleet-cta{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  width: 100%;
  transition: gap .25s ease, color .25s ease;
}
.fleet-cta:hover{ gap: 12px; color: var(--accent); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section{ background: var(--bg); }
.why-item{
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  transition: transform .3s ease, background .3s ease;
}
.why-item:hover{ transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-sm); }
.why-item i{ font-size: 1.6rem; color: var(--accent); margin-bottom: 14px; display: block; }
.why-item h3{ font-size: 1.02rem; margin-bottom: 6px; }
.why-item p{ font-size: 0.88rem; color: var(--text-gray); margin: 0; }

/* ==========================================================================
   BOOKING PROCESS — Timeline
   ========================================================================== */
.booking-section{ background: var(--bg-section); }

.process-flow{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.process-step{
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
}
.process-marker{
  position: relative;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 8px var(--bg-section), var(--shadow-sm);
}
.process-num{
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--bg-section);
}
.process-step h3{ font-size: 1.05rem; margin-bottom: 8px; }
.process-step p{ font-size: 0.88rem; color: var(--text-gray); max-width: 240px; margin: 0 auto; }

.process-connector{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  padding-top: 18px;
  opacity: 0.7;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section{ background: var(--bg); }
.custom-accordion .accordion-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.custom-accordion .accordion-button{
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  padding: 20px 24px;
  box-shadow: none !important;
}
.custom-accordion .accordion-button:not(.collapsed){
  background: var(--bg-alt);
  color: var(--primary);
}
.custom-accordion .accordion-button::after{
  filter: sepia(1) saturate(4) hue-rotate(0deg);
}
.custom-accordion .accordion-body{
  color: var(--text-gray);
  padding: 6px 24px 22px;
  font-size: 0.95rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta{ position: relative; padding: 120px 0; overflow: hidden; color: #fff; }
.final-cta-media{ position: absolute; inset: 0; }
.final-cta-media img{ width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,31,29,0.88), rgba(5,43,38,0.92)); }
.final-cta-content{ position: relative; z-index: 1; }
.final-cta h2{ color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.final-cta-sub{ color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; }
.final-cta-buttons{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--secondary); color: rgba(255,255,255,0.75); padding: 72px 0 28px; }
.footer-brand{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.footer-brand i{ color: var(--accent); }
.footer-brand em{ font-style: normal; color: var(--accent); }
.footer-desc{ font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.site-footer h4{
  color: #fff; font-family: var(--font-body); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{ margin-bottom: 12px; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-links a{ color: rgba(255,255,255,0.75); transition: color .2s ease; }
.footer-links a:hover{ color: var(--accent); }
.footer-links i{ color: var(--accent); margin-top: 3px; }
.site-footer hr{ border-color: rgba(255,255,255,0.15); margin: 40px 0 24px; }
.footer-bottom{ font-size: 0.82rem; text-align: center; color: rgba(255,255,255,0.5); }

/* ==========================================================================
   MOBILE CALL FAB
   ========================================================================== */
.mobile-call-fab{
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
  z-index: 998;
  animation: pulse-fab 2.4s infinite;
}
@keyframes pulse-fab{
  0%{ box-shadow: 0 0 0 0 rgba(228,177,26,0.5); }
  70%{ box-shadow: 0 0 0 14px rgba(228,177,26,0); }
  100%{ box-shadow: 0 0 0 0 rgba(228,177,26,0); }
}

/* ==========================================================================
   SCROLL REVEAL (fade-up/left/right)
   ========================================================================== */
[data-aos]{
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"]{ transform: translateY(28px); }
[data-aos="fade-left"]{ transform: translateX(40px); }
[data-aos="fade-right"]{ transform: translateX(-40px); }
[data-aos].aos-visible{ opacity: 1; transform: translate(0,0); }

@media (prefers-reduced-motion: reduce){
  [data-aos]{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .mobile-call-fab{ animation: none; }
}

/* Accessible focus states */
a:focus-visible, button:focus-visible, .btn:focus-visible{
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
