/* =========================================================================
   SkyTrav — Services / About / Contact Page Style Sheet
   ---------------------------------------------------------------------
   Shared by services.html, about.html and contact.html (loaded AFTER
   style.css, same way packages.css is loaded for packages.html) so it
   reuses every color/font/spacing variable from style.css's :root block
   instead of redeclaring anything. Only styles NOT already covered by
   style.css's reusable component classes (.service-card, .why-card,
   .contact-list, .trust-row, etc.) live here.

   Sections in this file:
     1. Page banner (same look as packages.html's .pkg-banner, generic name)
     2. Service detail blocks (services.html)
     3. Process steps (services.html)
     4. Milestones / values grid (about.html)
     5. Team note card (about.html)
     6. Enquiry form (contact.html)
     7. Map embed (contact.html)
     8. Mobile responsive tweaks
   ========================================================================= */

/* ---- 1. Page banner ---------------------------------------------------- */
.page-banner{
  position:relative;
  padding:64px 0 48px;
  text-align:center;
  background:
    radial-gradient(circle at 15% 20%, rgba(245,196,69,0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(35,96,143,0.12), transparent 45%),
    var(--cream-soft);
  overflow:hidden;
}
.page-banner .eyebrow{ margin-bottom:16px; }
.page-banner-title{ font-size:2.4rem; font-weight:700; color:var(--navy-deep); margin-bottom:14px; }
.page-banner-sub{ max-width:600px; margin:0 auto; color:var(--text-body); font-size:1rem; line-height:1.7; }

/* ---- 2. Service detail blocks ------------------------------------------ */
.svc-block{ padding:56px 0; border-bottom:1px solid var(--border-soft); }
.svc-block:last-of-type{ border-bottom:none; }
.svc-block:nth-child(even){ background:var(--cream-soft); }
.svc-grid{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:32px;
  align-items:start;
}
.svc-icon{
  width:64px; height:64px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  background:var(--blue-pale);
  color:var(--blue-brand);
}
.svc-block.tone-cream .svc-icon{ background:var(--white); }
.svc-grid h2{ font-size:1.4rem; margin-bottom:8px; }
.svc-grid > div > p{ line-height:1.7; margin-bottom:18px; }
.svc-includes{ display:grid; grid-template-columns:1fr 1fr; gap:10px 24px; margin-bottom:22px; }
.svc-includes li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.92rem; line-height:1.5; color:var(--text-body);
}
.svc-includes li svg{ color:var(--blue-brand); flex-shrink:0; margin-top:2px; }

/* ---- 3. Process steps --------------------------------------------------- */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.process-step{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:26px 22px;
  box-shadow:var(--shadow-soft);
  position:relative;
}
.process-num{
  font-family:var(--font-display);
  font-weight:800;
  font-size:1.6rem;
  color:var(--gold-dark);
  margin-bottom:10px;
  display:block;
}
.process-step h3{ font-size:1rem; margin-bottom:6px; }
.process-step p{ font-size:0.86rem; color:var(--text-muted); line-height:1.5; }

/* ---- 4. Milestones / values grid ---------------------------------------- */
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.value-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:28px 24px;
  box-shadow:var(--shadow-soft);
}
.value-card .value-icon{
  width:46px; height:46px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:var(--blue-pale);
  color:var(--blue-brand);
  margin-bottom:16px;
}
.value-card h3{ font-size:1rem; margin-bottom:6px; }
.value-card p{ font-size:0.88rem; color:var(--text-muted); line-height:1.55; }

.milestones{ display:flex; flex-wrap:wrap; gap:28px; justify-content:center; margin-top:12px; }
.milestone{ text-align:center; min-width:130px; }
.milestone strong{ display:block; font-family:var(--font-display); font-size:1.9rem; color:var(--navy-deep); }
.milestone span{ font-size:0.85rem; color:var(--text-muted); }

/* ---- 4b. "Why choose us" grid (about.html) --------------------------------
   Reuses .why-card's look (icon chip + heading + text) from style.css, but
   with its own always-visible 3-column grid — the .why-choose/.why-grid
   classes in style.css are purpose-built as a MOBILE-ONLY stack for
   index.html and are display:none on desktop by default, so this page
   gets its own class instead of fighting that rule with inline styles. */
.about-why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.about-why-grid .why-card{ transition:transform .3s ease, box-shadow .3s ease; }
.about-why-grid .why-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); }
@media (max-width:900px){
  .about-why-grid{ grid-template-columns:1fr; }
}

/* ---- 5. Team note card ---------------------------------------------------- */
.team-note{
  background:var(--navy-deep);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  color:var(--cream);
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}
.team-note-icon{
  width:56px; height:56px; flex-shrink:0;
  border-radius:16px;
  background:rgba(245,196,69,0.16);
  color:var(--gold);
  display:flex; align-items:center; justify-content:center;
}
.team-note h3{ color:var(--white); font-size:1.15rem; margin-bottom:6px; }
.team-note p{ color:rgba(251,247,237,0.75); font-size:0.92rem; line-height:1.6; margin:0; }

/* ---- 6. Enquiry form -------------------------------------------------- */
.enquiry-form{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:30px 28px;
  box-shadow:var(--shadow-card);
  margin-top:28px;
}
.enquiry-form h3{ font-size:1.15rem; margin-bottom:6px; }
.enquiry-form > p{ font-size:0.88rem; color:var(--text-muted); margin-bottom:22px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-field{ display:flex; flex-direction:column; gap:6px; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ font-family:var(--font-display); font-weight:600; font-size:0.82rem; color:var(--navy-deep); }
.form-field input, .form-field select, .form-field textarea{
  font-family:var(--font-body);
  font-size:0.94rem;
  color:var(--navy-deep);
  background:var(--cream-soft);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-sm);
  padding:12px 14px;
  resize:vertical;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none;
  border-color:var(--blue-brand);
  box-shadow:0 0 0 3px rgba(35,96,143,0.14);
}
.enquiry-form .btn{ width:100%; justify-content:center; margin-top:6px; }
.form-note{ font-size:0.78rem; color:var(--text-muted); margin-top:12px; text-align:center; }

/* ---- 7. Map embed -------------------------------------------------------- */
.contact-map{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  margin-top:28px;
}
.contact-map iframe{ width:100%; height:280px; border:0; display:block; }

/* ---- 8. Mobile responsive tweaks ----------------------------------------- */
@media (max-width:900px){
  .svc-grid{ grid-template-columns:1fr; }
  .svc-icon{ width:52px; height:52px; }
  .svc-includes{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr 1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .team-note{ flex-direction:column; text-align:center; }
}
@media (max-width:520px){
  .process-grid{ grid-template-columns:1fr; }
  .page-banner-title{ font-size:1.8rem; }
}
