/* ===== JMC Airport Transfers ===== */
:root {
  --gold: #c8a04b;
  --gold-dark: #ab8538;
  --navy: #0f2238;
  --navy-deep: #0a1828;
  --cream: #f5f2ec;
  --cream-card: #fffdf8;
  --grey: #6b6f74;
  --line: #e3ddd1;
  --radius: 10px;
  --shadow: 0 18px 40px -22px rgba(10, 24, 40, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

/* ===== Layout helpers ===== */
section { padding: 96px 24px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold); }
.lead { color: var(--grey); font-size: 1.08rem; margin-top: 16px; }

/* ===== Logo text fallback ===== */
.nav-logo-text, .footer-logo-text {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  font-size: 1.5rem;
  transition: font-size 0.25s ease;
}
.nav.scrolled .nav-logo-text { font-size: 1.25rem; }
.nav.scrolled .nav-logo-text span { font-size: 0.7rem; }
.nav-logo-text span, .footer-logo-text span {
  color: inherit;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 0.78rem;
  display: block;
  margin-top: 2px;
}
.nav-logo-text span { color: var(--navy); }
.footer-logo-text { color: var(--gold); font-size: 1.7rem; }
.footer-logo-text span { color: rgba(255,255,255,0.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }
.btn-whatsapp { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); display: inline-flex; align-items: center; gap: 10px; }
.btn-whatsapp:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-whatsapp svg { width: 20px; height: 20px; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  display: flex; align-items: center;
  height: 58px; border-radius: 29px;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 30px; height: 30px; flex: none; margin: 0 14px; }
.wa-float-label {
  white-space: nowrap; max-width: 0; overflow: hidden; opacity: 0;
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; font-size: 0.9rem;
  transition: max-width 0.28s ease, opacity 0.2s ease, margin 0.28s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(0,0,0,0.45); }
.wa-float:hover .wa-float-label { max-width: 160px; opacity: 1; margin-right: 22px; }
@media (max-width: 560px) {
  .wa-float { bottom: 16px; right: 16px; height: 54px; border-radius: 27px; }
  .wa-float svg { margin: 0 12px; }
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: top 0.28s ease, background 0.28s ease, border-color 0.28s ease, padding 0.28s ease;
}
.nav.scrolled {
  top: 14px;
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  padding: 0 16px;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: padding 0.28s ease, max-width 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.nav.scrolled .nav-inner {
  max-width: 1080px;
  padding: 9px 22px;
  background: rgba(245, 242, 236, 0.97);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  box-shadow: 0 14px 32px -16px rgba(10, 24, 40, 0.55);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 10px 20px; border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-dark); }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 84px);
  display: flex; align-items: center;
  padding: 80px 24px;
  background:
    linear-gradient(90deg, rgba(10,24,40,0.82) 0%, rgba(10,24,40,0.55) 38%, rgba(10,24,40,0.12) 62%, rgba(10,24,40,0) 80%),
    url('assets/hero.jpg') center center/cover no-repeat,
    var(--navy-deep);
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(10,24,40,0.55) 0%, rgba(10,24,40,0.28) 40%, rgba(10,24,40,0.72) 100%),
      url('assets/hero.jpg') 72% center / cover no-repeat,
      var(--navy-deep);
  }
}
.hero-overlay { display: none; }
.hero-content { position: relative; max-width: 1180px; margin: 0 auto; width: 100%; color: #fff; }
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 4px;
  font-size: 0.85rem; color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; color: #fff;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 620px; margin: 24px 0 36px; color: rgba(255,255,255,0.85); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Oswald', sans-serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.hero-stats span { text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ===== Services ===== */
.services { background: var(--cream); }
.service-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.service-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: rgba(200,160,75,0.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { background: var(--gold); color: var(--navy-deep); transform: scale(1.05); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-card p { color: var(--grey); font-size: 0.98rem; }
.services-note {
  max-width: 1180px; margin: 28px auto 0; text-align: center;
  font-size: 0.82rem; color: var(--gold-dark); font-style: italic;
  background: rgba(200,160,75,0.08); border: 1px dashed var(--gold);
  border-radius: 8px; padding: 12px 16px;
}

/* ===== Fleet ===== */
.fleet { background: var(--navy); color: #fff; padding: 0; position: relative; overflow: hidden; }
.fleet-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 96px 24px;
}
.fleet-copy { max-width: 600px; }
.fleet-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; margin-bottom: 18px; }
.fleet-copy p { color: rgba(255,255,255,0.82); margin-bottom: 26px; }
.fleet-list { list-style: none; margin-bottom: 32px; }
.fleet-list li {
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
}
.fleet-list strong {
  display: inline-block; min-width: 92px;
  font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 1.05rem;
}
.fleet-photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 42%;
}
.fleet-photo img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center right; display: block;
}
.photo-placeholder {
  width: 100%; min-height: 380px; border-radius: var(--radius);
  border: 2px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255,255,255,0.55);
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px;
}

/* ===== Areas ===== */
.areas { background: var(--cream); }
.areas-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.areas-card {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  border-top: 4px solid var(--gold);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.areas-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.areas-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.areas-card p { color: var(--grey); font-size: 0.96rem; }

/* ===== About ===== */
.about { background: var(--cream-card); }
.about-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
}
.about-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }
.about-copy p { color: var(--grey); margin-bottom: 16px; font-size: 1.05rem; }
.about-points { display: flex; flex-direction: column; gap: 18px; }
.point {
  background: var(--cream); border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 20px 24px;
}
.point strong { display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 1.15rem; }
.point span { color: var(--grey); font-size: 0.96rem; }

/* ===== Contact ===== */
.contact { background: var(--navy); color: #fff; }
.contact-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.contact-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.contact-copy > p { color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.contact-details { list-style: none; }
.contact-details li { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-label {
  display: block; font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem;
  color: var(--gold); margin-bottom: 4px;
}
.contact-details a, .contact-details li > span:last-child { font-size: 1.15rem; color: #fff; }
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem;
  margin-bottom: 8px; color: rgba(255,255,255,0.8);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px; color: #fff; font-family: inherit; font-size: 0.98rem;
  resize: vertical;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23c8a04b' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field select option { color: #1a1a1a; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.form-success {
  background: rgba(200,160,75,0.10); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
}
.form-success-title { font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,0.85); }
.form-success a { color: var(--gold); font-weight: 600; }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: #fff; padding: 48px 24px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-info p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-copy { margin-top: 8px; font-size: 0.82rem !important; color: rgba(255,255,255,0.45) !important; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .fleet-photo { position: static; width: 100%; height: 260px; margin-top: 32px; border-radius: var(--radius); overflow: hidden; }
  .fleet-photo::before { display: none; }
  .fleet-copy { max-width: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 8px; }
}
@media (max-width: 560px) {
  section { padding: 64px 20px; }
  .service-grid, .areas-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
}
