/* ============================================================
   COLOURS & SIZES — change these few lines to restyle the site
   ============================================================ */
:root {
  --navy:        #0b1c2c;   /* header + dark sections */
  --navy-mid:    #143453;   /* lighter navy, used in gradients */
  --navy-deep:   #05101a;   /* footer */
  --gold:        #c8a349;   /* accent / buttons / underlines */
  --gold-soft:   #e2c87e;
  --ink:         #16202b;   /* body text */
  --muted:       #5d6b7a;   /* secondary text */
  --line:        #e4e9ef;   /* borders */
  --bg:          #ffffff;
  --bg-alt:      #f4f7fa;   /* alternating section background */

  --wrap:        1200px;    /* page width */
  --header-h:    78px;

  --radius:      12px;      /* cards and panels */
  --radius-sm:   8px;       /* buttons and fields */

  /* Two-layer shadows: a tight one for the edge, a wide soft one for lift */
  --shadow-sm:   0 1px 2px rgba(11,28,44,0.06), 0 6px 18px rgba(11,28,44,0.05);
  --shadow-md:   0 2px 4px rgba(11,28,44,0.05), 0 18px 44px rgba(11,28,44,0.10);
  --shadow-lg:   0 3px 6px rgba(11,28,44,0.06), 0 34px 70px rgba(11,28,44,0.16);

  --font-head:   "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body:   "Inter", "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Section rhythm. One number controls how airy the whole page feels. */
  --section-y:   clamp(72px, 8.5vw, 130px);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* Nothing should ever be wide enough to sideways-scroll the page */
  overflow-x: hidden;
  /* Stops the grey flash on tap on Android */
  -webkit-tap-highlight-color: transparent;
  /* Stops iOS inflating text in landscape */
  -webkit-text-size-adjust: 100%;
}

/* Give every tappable control a finger-sized hit area on touch screens */
@media (pointer: coarse) {
  .nav a, .footer-links a, .contact-list a, .doc-link, .btn { min-height: 44px; }
  .btn, .doc-link { display: inline-flex; align-items: center; justify-content: center; }
  .nav-toggle { padding: 11px; }
}

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.14; font-weight: 600; }

h1 { letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -0.02em; }

.lead { font-size: 1.09rem; color: var(--muted); max-width: 60ch; margin-top: 16px; }

.section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-alt); }

/* --- Section headings --------------------------------------
   The little gold rule before the kicker is what ties the
   sections together visually, so every section gets one. */
.section-head { max-width: 62ch; margin-bottom: 54px; }

.section-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.section-kicker::before {
  content: ""; width: 32px; height: 2px; background: var(--gold); flex: 0 0 auto;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 100;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width 0.1s linear;
}

/* ============================================================
   HEADER — the bold company name lives here
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,28,44,0.78);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6,17,28,0.96);
  box-shadow: 0 8px 34px rgba(0,0,0,0.32);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.brand-mark {
  color: var(--gold); font-size: 1.4rem; line-height: 1;
  transform: rotate(90deg); transition: transform 0.4s ease;
}
.brand:hover .brand-mark { transform: rotate(90deg) translateY(5px); }

.brand-text { display: flex; flex-direction: column; }

/* --- THE COMPANY NAME --- */
.brand-name {
  font-family: var(--font-head);
  font-weight: 600;                    /* bold */
  font-size: clamp(1rem, 2.1vw, 1.42rem);
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 3px;
}

/* --- Navigation --- */
.nav { display: flex; gap: 24px; }
.nav a {
  position: relative; color: #cdd7e1; text-decoration: none;
  font-size: 0.79rem; letter-spacing: 0.09em; text-transform: uppercase;
  font-weight: 500; padding: 8px 0; transition: color 0.2s ease;
  white-space: nowrap;          /* never let a label break across lines */
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.28s ease;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; padding: 15px 32px; border: 1px solid transparent;
  border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: transform 0.22s ease, box-shadow 0.22s ease,
                              background 0.22s ease, color 0.22s ease;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 6px 18px rgba(200,163,73,0.32);
}
.btn-primary:hover {
  background: var(--gold-soft); transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200,163,73,0.42);
}
.btn-ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: min(88vh, 820px);
  display: flex; align-items: center; color: #fff;
  /* Room underneath for the credentials strip to overlap into */
  padding-bottom: 96px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; background: var(--navy); }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
  /* A very slow push-in stops the hero feeling like a flat stock photo */
  animation: heroDrift 26s ease-out forwards;
}
@keyframes heroDrift {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,20,32,0.95) 0%, rgba(9,23,37,0.72) 52%, rgba(11,28,44,0.34) 100%),
    radial-gradient(120% 90% at 12% 100%, rgba(200,163,73,0.16) 0%, transparent 62%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 28px 40px; max-width: 940px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 26px;
  border: 1px solid rgba(200,163,73,0.42);
  border-radius: 100px; padding: 8px 18px;
  background: rgba(200,163,73,0.09);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem); margin-bottom: 26px;
  font-weight: 600; max-width: 16ch;
}
.hero-text { font-size: 1.15rem; color: #ccd8e3; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }


/* ============================================================
   CREDENTIALS STRIP — floats over the bottom of the hero
   ============================================================ */
.cred-wrap { position: relative; z-index: 5; margin-top: -78px; }
.cred-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cred { padding: 26px 28px; box-shadow: 1px 0 0 var(--line); min-width: 0; }
.cred dt {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.cred dd {
  margin-top: 8px; font-family: var(--font-head); font-size: 1.02rem;
  font-weight: 600; color: var(--navy); overflow-wrap: anywhere; line-height: 1.35;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 76px; align-items: center; }
.about-copy p + p { margin-top: 18px; }
.about-copy > div p { color: var(--muted); margin-top: 20px; }

/* The gold outline sits behind and offset from the photograph — it is what
   stops this section reading as a plain two-column text-and-image row. */
.about-frame { position: relative; }
.about-frame::before {
  content: ""; position: absolute; inset: 26px -26px -26px 26px;
  border: 2px solid var(--gold); border-radius: var(--radius); z-index: 0;
}
.about-frame img {
  position: relative; z-index: 1; width: 100%;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}

.checklist { list-style: none; margin-top: 34px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; font-size: 0.97rem; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; display: grid; place-items: center;
  background: rgba(200,163,73,0.16); color: var(--gold);
  border-radius: 50%; font-size: 0.72rem; font-weight: 700; line-height: 1;
}

/* ============================================================
   SERVICE CARDS — numbered steps
   ============================================================ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px 34px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover {
  transform: translateY(-7px); border-color: rgba(200,163,73,0.55);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-mid), var(--navy));
  color: var(--gold); font-size: 1.35rem;
  border-radius: var(--radius-sm); margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(11,28,44,0.22);
}
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   FLEET CARDS
   Two across on desktop rather than four: with large photographs
   the aircraft are the point of the section, so they get room.
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.fleet-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.fleet-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.fleet-photo { position: relative; height: 268px; overflow: hidden; background: var(--bg-alt); }
.fleet-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.fleet-card:hover .fleet-photo img { transform: scale(1.07); }
.fleet-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(8,20,32,0.55) 0%, transparent 46%);
}
.fleet-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1 1 auto; }
.fleet-type {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.fleet-body h3 { font-size: 1.35rem; margin: 10px 0 18px; }
.fleet-specs {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: var(--muted);
}
.fleet-specs li {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 100px; padding: 5px 14px;
}

/* --- Rental price + availability badge --- */
.fleet-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,0.94); color: var(--navy);
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.fleet-price {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px;
}
.price-amount {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 700;
  color: var(--navy); line-height: 1.1;
}
.price-period { font-size: 0.8rem; color: var(--muted); }
.fleet-btn { width: 100%; text-align: center; margin-top: 20px; padding: 14px 20px; }

.fleet-note {
  margin-top: 38px; font-size: 0.89rem; color: var(--muted);
  border-left: 3px solid var(--gold); padding-left: 18px; max-width: 70ch;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(150deg, var(--navy-mid) 0%, var(--navy) 46%, #071523 100%);
}
/* Soft gold light behind the numbers */
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(58% 70% at 50% 0%, rgba(200,163,73,0.20) 0%, transparent 65%);
}
.stats .wrap { position: relative; z-index: 1; }
.stats-heading { margin-bottom: 60px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 44px 0; }
.stat { padding: 0 20px; box-shadow: 1px 0 0 rgba(255,255,255,0.12); }
.stat:last-child { box-shadow: none; }
.stat-value {
  font-family: var(--font-head); font-size: clamp(2.6rem, 5.4vw, 3.8rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label {
  margin-top: 14px; font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #a9b7c5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.quote {
  position: relative; background: #fff; border: 1px solid var(--line);
  padding: 46px 32px 34px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* Big decorative quotation mark */
.quote::before {
  content: "\201C"; position: absolute; top: 8px; left: 26px;
  font-family: var(--font-head); font-size: 5rem; font-weight: 700;
  color: rgba(200,163,73,0.28); line-height: 1;
}
.quote p { font-size: 1.02rem; color: var(--ink); }
.quote footer {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 0.86rem;
}
.quote strong { display: block; font-weight: 600; }
.quote span { color: var(--muted); font-size: 0.82rem; }
/* Stagger every second card down so the row is not a flat line */
@media (min-width: 900px) {
  .quote-grid > :nth-child(even) { margin-top: 34px; }
}

/* ============================================================
   LICENCES & REGISTRATIONS
   ============================================================ */
.panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.panel-head {
  background: linear-gradient(150deg, var(--navy-mid), var(--navy));
  color: var(--gold-soft); padding: 16px 26px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
/* The dividing lines are drawn as shadows rather than gaps, so a part-full
   last row stays white instead of showing a grey block. */
.fact { padding: 24px 26px; box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); min-width: 0; }
.fact dt {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.fact dd {
  margin-top: 9px; font-size: 1rem; font-weight: 600;
  color: var(--ink); overflow-wrap: anywhere;
}

.doc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 30px;
}
.doc-card {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.doc-card:hover {
  transform: translateY(-6px); border-color: rgba(200,163,73,0.55);
  box-shadow: var(--shadow-md);
}
.doc-icon {
  flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-mid), var(--navy));
  color: var(--gold); font-size: 1.2rem; border-radius: var(--radius-sm);
}
.doc-body { flex: 1 1 auto; min-width: 0; }
.doc-body h3 { font-size: 1.08rem; line-height: 1.3; }
.doc-issuer { font-size: 0.83rem; color: var(--muted); margin-top: 8px; }
.doc-date { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.doc-link {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: var(--navy); border: 1px solid var(--gold);
  border-radius: var(--radius-sm); padding: 12px 20px;
  transition: background 0.2s ease, color 0.2s ease;
}
.doc-link:hover { background: var(--gold); }
.doc-link-none { color: var(--muted); border-color: var(--line); cursor: default; }
.doc-link-none:hover { background: none; }

.licence-disclaimer {
  margin-top: 24px; font-size: 0.81rem; color: var(--muted); max-width: 78ch;
}

/* ============================================================
   BOARD OF DIRECTORS
   Photos are optional. With no photo the tile shows the
   director's initials over a navy gradient instead.
   ============================================================ */
.director-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.director-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-align: left;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.director-card:hover {
  transform: translateY(-7px); border-color: rgba(200,163,73,0.55);
  box-shadow: var(--shadow-md);
}
/* A tall tile rather than a small round avatar: it gives the section
   presence now, and takes a real photograph later without changing shape. */
.director-photo {
  position: relative; width: 100%; aspect-ratio: 4 / 3.4;
  background: linear-gradient(155deg, var(--navy-mid) 0%, var(--navy) 58%, #071523 100%);
  display: grid; place-items: center; overflow: hidden;
}
.director-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 12%, rgba(200,163,73,0.20) 0%, transparent 70%);
}
.director-photo img { width: 100%; height: 100%; object-fit: cover; }
.director-initials {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: 3.6rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.08em;
}
.director-body { padding: 26px 28px 30px; }
.director-body h3 { font-size: 1.24rem; }
.director-role {
  margin-top: 8px; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
}
.director-din {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 0.88rem; color: var(--muted);
}
.director-din span {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 4px; padding: 3px 8px; margin-right: 10px; color: var(--muted);
}
.director-appointed { margin-top: 5px; font-size: 0.85rem; color: var(--muted); }
.director-bio { margin-top: 16px; font-size: 0.93rem; color: var(--muted); }

/* ============================================================
   CONTACT — dark section, white form card
   ============================================================ */
.contact {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 52%, #071523 100%);
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 80% at 88% 8%, rgba(200,163,73,0.18) 0%, transparent 62%);
}
.contact .wrap { position: relative; z-index: 1; }
.contact .lead { color: #c2cedb; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

/* Grid and flex items default to min-width:auto, so a track can never shrink
   below its content. The aircraft dropdown is sized by its longest <option>
   ("Vaynix VX-300 Continental - Rs 12,000,000 per month", 434px), which pushed
   the whole contact column to 476px inside a 375px phone screen. Letting these
   tracks shrink is what stops the page scrolling sideways. */
.contact-grid > *, .contact-form label { min-width: 0; }

.contact-list { list-style: none; margin-top: 38px; display: grid; gap: 22px; }
.contact-list li { display: grid; gap: 4px; }
.contact-list .k {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  font-weight: 700;
}
.contact-list a, .contact-list li > span:not(.k) { color: #e6ecf2; }
.contact-list a { text-decoration: none; border-bottom: 1px solid rgba(200,163,73,0.6); }
.contact-list a:hover { color: var(--gold-soft); }

.contact-form {
  display: grid; gap: 20px; background: #fff;
  padding: 40px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-lg);
}
.contact-form label {
  display: grid; gap: 8px; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700;
}
.contact-form input, .contact-form textarea, .contact-form select {
  font: inherit; font-size: 0.95rem; font-weight: 400; letter-spacing: normal; text-transform: none;
  color: var(--ink); padding: 13px 15px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-alt); resize: vertical;
  width: 100%; min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; background: #fff;
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,163,73,0.2);
}
.contact-form .btn { justify-self: stretch; border: 0; text-align: center; }
.form-note { font-size: 0.85rem; color: var(--muted); min-height: 1.2em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: #8b99a8; padding: 68px 0 44px; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  align-items: center; justify-content: space-between;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-name {
  font-family: var(--font-head); font-weight: 600; font-size: 1.2rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.footer-tagline {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-top: 6px;
}
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a {
  color: #8b99a8; text-decoration: none; font-size: 0.84rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; display: grid; gap: 12px; }
.footer-legal {
  font-size: 0.78rem; color: #75828f; max-width: 82ch;
  overflow-wrap: anywhere;
}
.footer-note { font-size: 0.79rem; color: #5c6874; max-width: 82ch; }

/* ============================================================
   SETUP ERROR BANNER
   Only appears if content.js has a typo and cannot be read.
   ============================================================ */
.setup-error {
  position: relative; z-index: 999;
  display: grid; gap: 6px;
  background: #fdf3f3; border-bottom: 3px solid #c0392b;
  color: #7b241c; padding: 20px 24px; font-size: 0.92rem; line-height: 1.5;
}
.setup-error strong { font-size: 1rem; }

/* ============================================================
   BROKEN-IMAGE PLACEHOLDER
   Shown when an `image:` URL in content.js is wrong or offline,
   so the layout keeps its shape instead of collapsing.
   ============================================================ */
.img-failed { position: relative; background: var(--bg-alt); border-radius: var(--radius); }
.img-failed img { display: none; }
.img-failed::after {
  content: "Image unavailable";
  display: grid; place-items: center; min-height: 190px; height: 100%;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius);
}
.about-frame.img-failed::after { min-height: 360px; }
.about-frame.img-failed::before { content: none; }
.hero-bg.img-failed { background: var(--navy); }
.hero-bg.img-failed::after { content: none; }

/* ============================================================
   SCROLL-IN ANIMATION
   Cards in a row fade in one after another rather than all at
   once — app.js sets --d on each child of a grid.
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* --- Laptops: the menu now has seven items, so tighten it --- */
@media (max-width: 1280px) {
  .nav { gap: 17px; }
  .nav a { font-size: 0.74rem; letter-spacing: 0.05em; }
  .about-grid { gap: 52px; }
  .contact-grid { gap: 48px; }
}

/* --- Small laptops: the credentials strip needs two rows --- */
@media (max-width: 1080px) {
  .cred-strip { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { gap: 26px; }
}

/* --- Tablets and phones: hamburger menu takes over.
       Breakpoint is 1024px, not 900px: seven links plus the company
       name do not fit side by side below that width. --- */
@media (max-width: 1024px) {
  :root { --header-h: 68px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { order: -1; }
  .header-inner { min-height: 68px; }

  /* The offset gold outline needs room either side that a narrow
     screen does not have, so it tucks in behind the photo. */
  .about-frame::before { inset: 18px -14px -18px 18px; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,17,28,0.98);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    flex-direction: column; gap: 0;
    padding: 0 28px; max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }
  /* Tall enough for all seven links — raise this if you add more. */
  .nav.open { max-height: 480px; padding: 10px 28px 22px; }
  .nav a {
    padding: 14px 0; font-size: 0.9rem; letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .brand-tagline { display: none; }

  .fleet-grid { grid-template-columns: 1fr; }
  .stat { box-shadow: none; }
}

/* --- Phones --- */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }

  /* Long unbroken strings — the CIN, the GSTIN, the email address —
     break rather than push the page sideways. */
  .eyebrow, .contact-list a, .contact-list span,
  .doc-issuer, .footer-legal { overflow-wrap: break-word; }

  .hero { min-height: 0; padding-bottom: 76px; }
  .hero-inner { padding: 92px 18px 24px; }
  .hero h1 { max-width: none; }
  .hero-text { font-size: 1.03rem; }
  .lead { font-size: 1.02rem; }
  .eyebrow { padding: 7px 14px; letter-spacing: 0.16em; }

  .section-head { margin-bottom: 38px; }
  .cred-wrap { margin-top: -56px; }
  .cred { padding: 20px 22px; }

  /* Cards get their padding back so text is not cramped */
  .card { padding: 30px 24px 28px; }
  .director-body { padding: 22px 22px 26px; }
  .fleet-body { padding: 22px 22px 26px; }
  .quote { padding: 42px 24px 28px; }
  .contact-form { padding: 28px 22px; }
  .fact { padding: 19px 20px; }
  .doc-card { padding: 24px 22px; }

  .director-initials { font-size: 2.9rem; }
  .fleet-photo { height: 220px; }

  /* Every card grid drops to a single column. These are set explicitly
     rather than left to auto-fit, because a minmax() minimum wider than
     the screen (the doc grid asks for 300px) overflows the page. */
  .card-grid, .fleet-grid, .director-grid,
  .quote-grid, .doc-grid, .fact-grid, .cred-strip { grid-template-columns: 1fr; }
  .quote-grid > :nth-child(even) { margin-top: 0; }
  .doc-link { align-self: stretch; text-align: center; }

  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .stats-heading { margin-bottom: 40px; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-links { gap: 10px 22px; }
  .footer-links a { padding: 6px 0; }

  /* 16px stops iOS Safari zooming in when a field is tapped */
  .contact-form input,
  .contact-form textarea,
  .contact-form select { font-size: 16px; padding: 14px 15px; }
}

@media (max-width: 420px) {
  .brand-name { letter-spacing: 0.04em; white-space: normal; font-size: 1rem; }
  .brand-mark { font-size: 1.2rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stat-grid { grid-template-columns: 1fr; gap: 30px; }
  .fleet-specs { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg img { transform: none; }
}
