/* ============================================================
   air16 Aviation Pvt Ltd — Shared Stylesheet
   Brand: Navy #0B2545 / Orange #FF6E02
   ============================================================ */

:root {
  --navy:        #0B2545;
  --navy-2:      #0E2D57;
  --navy-deep:   #081B33;
  --orange:      #FF6E02;
  --orange-2:    #FF8A33;
  --orange-soft: #FFE7D2;
  --orange-tint: #FFF2E7;
  --ink:         #16263B;
  --text:        #3A4A5C;
  --muted:       #6B7A8C;
  --line:        #E6EBF1;
  --bg:          #FFFFFF;
  --bg-soft:     #F6F8FB;
  --white:       #FFFFFF;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 10px 30px rgba(11,37,69,.08);
  --shadow-sm:   0 4px 16px rgba(11,37,69,.06);
  --container:   1200px;
  --ff:          "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { color: var(--ink); font-weight: 700; line-height: 1.15; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.center { text-align: center; }

/* ---------- Image placeholder convention ----------
   Replace <div class="ph ph-16x9">Label</div> with <img src="your-image.jpg" alt="">.
   The .ph class shows a labelled gradient block sized to the slot. */
.ph {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--orange) 165%);
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-align: center;
  border-radius: var(--radius); position: relative; overflow: hidden;
  padding: 10px; min-height: 60px;
}
.ph::after {
  content: "IMAGE"; position: absolute; top: 8px; left: 10px;
  font-size: 9px; opacity: .45; letter-spacing: .12em;
}
.ph-16x9 { aspect-ratio: 16/9; }
.ph-4x3  { aspect-ratio: 4/3; }
.ph-1x1  { aspect-ratio: 1/1; }
.ph-3x2  { aspect-ratio: 3/2; }
.ph-hero { min-height: 420px; }
.ph-tall { aspect-ratio: 3/4; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 2px solid transparent; transition: .22s ease; font-family: var(--ff);
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d8480f; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(241,90,34,.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-white:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================ HEADER / NAV */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 8px; }
.brand .logo-text { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; }
.brand .logo-text b { color: var(--orange); }
.brand .logo-sub { display:block; font-size: 9px; letter-spacing:.14em; color: var(--orange); font-weight:700; margin-top:2px; }
.brand .bag { color: var(--orange); font-size: 20px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 12px; font-size: 15px; font-weight: 500; color: var(--ink);
  border-radius: 8px; transition: .18s;
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--orange); }
.nav-menu .caret { font-size: 9px; opacity: .7; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #fff; min-width: 220px; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 14px; color: var(--text); }
.dropdown a:hover { background: var(--orange-tint); color: var(--orange); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--navy); font-size: 15px; }
.nav-phone .ico { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--navy); cursor: pointer; line-height: 1; }

/* ============================================================ SECTIONS */
section { padding: 70px 0; }
.section-sm { padding: 48px 0; }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.sec-head h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 16px; }
.sec-divider { width: 64px; height: 3px; background: var(--orange); border-radius: 2px; margin: 14px auto 0; }
.eyebrow { color: var(--orange); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }

/* ============================================================ PAGE HERO */
.page-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 56px 0; }
.page-hero .hero-copy h1 { font-size: clamp(34px, 5.5vw, 58px); letter-spacing: -.5px; }
.page-hero .hero-copy h1 span { color: var(--orange); }
.page-hero .lead { font-size: 17px; color: var(--text); margin: 18px 0 26px; max-width: 520px; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 7px; }
.breadcrumb .here { color: var(--orange); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px 28px; margin: 24px 0; }
.hero-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; max-width: 92px; }
.hero-badge .ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-tint); color: var(--orange); font-size: 20px; }
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.25; }

/* ============================================================ STAT BARS */
.stat-bar { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 10px; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 26px 20px; }
.stat-bar.light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.stat-item { text-align: center; padding: 4px 10px; border-right: 1px solid rgba(255,255,255,.12); }
.stat-bar.light .stat-item { border-color: var(--line); }
.stat-item:last-child { border-right: 0; }
.stat-item .ico { color: var(--orange); font-size: 22px; margin-bottom: 6px; }
.stat-item .num { font-size: 26px; font-weight: 800; }
.stat-bar:not(.light) .stat-item .num { color: #fff; }
.stat-item .lbl { font-size: 12.5px; opacity: .8; }

/* ============================================================ GRID & CARDS */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
.g6 { grid-template-columns: repeat(6, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .22s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card .card-body { padding: 22px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--muted); }
.card .link { color: var(--orange); font-weight: 600; font-size: 14px; display:inline-flex; gap:6px; align-items:center; margin-top: 12px; }

.icard { text-align: center; padding: 26px 18px; }
.icard .ico { width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; font-size: 24px; }
.icard h3 { font-size: 17px; margin-bottom: 6px; }
.icard p { font-size: 14px; color: var(--muted); }

.feature-row { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 10px; }
.feature-cell { text-align: center; padding: 6px 14px; border-right: 1px solid var(--line); }
.feature-cell:last-child { border-right: 0; }
.feature-cell .ico { color: var(--orange); font-size: 26px; margin-bottom: 8px; }
.feature-cell .t { font-size: 13.5px; font-weight: 600; color: var(--ink); }

.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 15px; }
.checklist .tick { color: var(--orange); flex: none; margin-top: 2px; }

.price-card { border:1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align:center; background:#fff; }
.price-card.feature { border-color: var(--orange); box-shadow: var(--shadow); }
.price-card .head { background: var(--navy); color:#fff; border-radius: 10px; padding: 10px; font-weight:700; margin-bottom:18px; }
.price-card.feature .head { background: var(--orange); }
.price-card .price { font-size: 32px; font-weight: 800; color: var(--orange); }
.price-card .price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card ul { text-align:left; margin: 18px 0; }
.price-card ul li { font-size: 14px; padding: 7px 0; border-bottom: 1px dashed var(--line); }

.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border-radius: var(--radius-lg); padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(22px, 3vw, 30px); }
.cta-band h2 span { color: var(--orange); }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 6px; }

.tabs { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-bottom: 30px; }
.tab { padding: 10px 22px; border-radius: 10px; border:1px solid var(--line); background:#fff; font-weight:600; font-size:14px; cursor:pointer; color: var(--ink); }
.tab.active, .tab:hover { background: var(--orange); color:#fff; border-color: var(--orange); }

.jobs-table { width:100%; border-collapse: collapse; background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; }
.jobs-table th, .jobs-table td { padding: 16px 18px; text-align:left; font-size:14.5px; border-bottom:1px solid var(--line); }
.jobs-table th { background: var(--bg-soft); color: var(--ink); font-weight:600; }
.jobs-table tr:last-child td { border-bottom:0; }

/* ============================================================ FOOTER */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.8); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.6fr; gap: 28px; padding-bottom: 36px; }
.site-footer h4 { color:#fff; font-size: 13px; letter-spacing:.1em; text-transform:uppercase; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { font-size: 14px; color: rgba(255,255,255,.72); }
.site-footer ul li a:hover { color: var(--orange); }
.footer-brand .logo-text { font-size: 26px; font-weight: 800; color: #fff; }
.footer-brand .logo-text b { color: var(--orange); }
.footer-brand p { font-size: 13.5px; margin-top: 12px; color: rgba(255,255,255,.6); }
.footer-tag { color: var(--orange) !important; font-weight:600; margin-top:6px; }
.footer-contact li { display:flex; gap:9px; font-size:13.5px; margin-bottom:12px; align-items:flex-start; line-height:1.55; }
.footer-contact .ico { color: var(--orange); flex:none; width:16px; text-align:center; margin-top:4px; }
.socials { display:flex; gap:10px; margin-top:16px; }
.socials a { width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#fff; font-size:15px; }
.socials a:hover { background: var(--orange); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding: 18px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom .links a { margin-left: 18px; }

/* ============================================================ UTIL */
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:36px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.soft-bg { background: var(--bg-soft); }
.badge-pill { display:inline-block; background: var(--orange); color:#fff; font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; letter-spacing:.04em; }
.price-tag { color: var(--orange); font-weight:800; font-size: 20px; }
.price-tag small { color: var(--muted); font-weight:500; font-size:13px; }
.lead-muted { color: var(--muted); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px){
  .g6{grid-template-columns:repeat(3,1fr)}
  .g5{grid-template-columns:repeat(3,1fr)}
  .g4{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr 1fr;}
  .feature-row, .stat-bar{grid-auto-flow:row; grid-template-columns:repeat(3,1fr); grid-auto-columns:auto;}
  .feature-cell:nth-child(3n), .stat-item:nth-child(3n){border-right:0}
}
@media (max-width: 820px){
  .nav-menu, .nav-phone{ display:none; }
  .nav-toggle{ display:block; }
  .nav-menu.open{
    display:flex; flex-direction:column; align-items:stretch;
    position:absolute; top:74px; left:0; right:0; background:#fff;
    border-bottom:1px solid var(--line); padding:10px 18px; gap:0;
    box-shadow: var(--shadow); max-height:80vh; overflow:auto;
  }
  .nav-menu.open > li > a{ padding:13px 6px; border-bottom:1px solid var(--line); }
  .nav-menu.open .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; padding:0 0 8px 14px; }
  .page-hero{ grid-template-columns:1fr; }
  .g3,.g2{grid-template-columns:1fr;}
  .cta-band{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 560px){
  .g4,.g5,.g6{grid-template-columns:1fr 1fr;}
  .feature-row,.stat-bar{grid-template-columns:repeat(2,1fr);}
  .feature-cell:nth-child(3n),.stat-item:nth-child(3n){border-right:1px solid var(--line)}
  .feature-cell:nth-child(2n),.stat-item:nth-child(2n){border-right:0}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .container{padding:0 16px;}
  .page-hero .hero-copy h1{font-size:38px;}
}
