@import url('styles.css');

/* ============================
   Header (matches the .brand / dropdown nav / .book-btn
   pattern shared with NEMT.html, CorpoT.html, PharmT.html)
============================ */
.brand {
  display: flex;
  align-items: center;
}

/* ============================
   Hero
============================ */
.hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 4vw 3.5rem;
  text-align: center;
}

.hero h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.75rem;
}

.hero > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================
   Key Benefits
============================ */
.benefits {
  background: var(--gold-cream);
  padding: 4rem 4vw;
}

.benefits h3 {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 2.25rem;
}

.benefits ul {
  list-style: none;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefits li {
  background: var(--white);
  border: 1px solid #ececea;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem 1rem 3rem;
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   Services 
============================ */

.services-section{
    padding:5rem 4vw;
    background:var(--navy);
    text-align:center;
}

.services-section h2{
    margin-bottom:3rem;
    color: var(--white)
}

.services-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.75rem;
}

.service-card{
    background:var(--off-white);
    border:1px solid #ececea;
    border-radius:var(--radius);
    padding:2.25rem 2rem;
    box-shadow:var(--shadow);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    height:100%;
    transition:transform .2s ease, box-shadow .2s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
}

.service-card h3{
    margin-bottom:.75rem;
    font-size:1.15rem;
    color:var(--navy);
}

.service-card p{
    color:var(--text-muted);
    line-height:1.7;
    margin:0;
}
/* ============================
   Long-form info sections
   (flight-tracking / airport-coverage / travel-tips /
    group-travel / pricing-transparency)
============================ */
.flight-tracking,
.airport-coverage,
.travel-tips,
.group-travel,
.pricing-transparency {
  padding: 3.5rem 4vw;
}

.flight-tracking h3,
.airport-coverage h3,
.travel-tips h3,
.group-travel h3,
.pricing-transparency h3 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.flight-tracking p,
.airport-coverage p,
.travel-tips p,
.group-travel p,
.pricing-transparency p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Subtle alternating background so five stacked text sections still
   read as distinct blocks rather than one long wall of copy */
.airport-coverage,
.group-travel {
  background: var(--gold-cream);
}

/* Pricing section gets a little extra emphasis, closing out the
   long-form content before the booking form */
.pricing-transparency {
  background: var(--navy);
}

.pricing-transparency h3 { color: var(--white); }
.pricing-transparency p { color: var(--text-on-navy); }

/* ============================
   Booking form — required-field indicator
   (adds .label-text span inside each <label>;
   .required is styled globally in styles.css)
============================ */
.booking form .label-text {
  display: block;
}

/* ============================
   Responsive
============================ */
@media (max-width: 900px) {
  .benefits ul { grid-template-columns: 1fr; }
}