@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy:       #04111f;
  --navy-mid:   #071e37;
  --navy-light: #0c2a4a;
  --navy-card:  #0f2f55;
  --saffron:    #f97316;
  --saffron-dk: #c2520c;
  --gold:       #c8a44a;
  --gold-lt:    #e8c870;
  --white:      #f0f4fc;
  --text:       #c5d4e8;
  --muted:      #7a96b8;
  --border:     rgba(200,164,74,0.18);
  --glow:       rgba(249,115,22,0.15);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

/* ============================================
   UTILITY
   ============================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   TOP SKIP BAR
   ============================================ */
.top-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a:hover { color: var(--saffron); }

/* ============================================
   HEADER & NAV
   ============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 17, 31, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 8px;
}
.site-logo .logo-mark {
  width: 42px;
  height: 42px;
}
.site-logo .logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.site-logo .logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* Main nav */
#main-nav { display: flex; align-items: center; flex: 1; }

.nav-items { display: flex; height: 64px; }

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--transition);
  gap: 6px;
}
.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-item:hover .nav-link,
.nav-item.active .nav-link { color: var(--white); }
.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after { transform: scaleX(1); }

.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega-menu dropdown */
.mega-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: -20px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-top: 2px solid var(--saffron);
  min-width: 240px;
  padding: 20px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: slideDown 0.2s ease;
}
.nav-item:hover .mega-menu { display: flex; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mega-col {
  min-width: 200px;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }

.mega-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}

.mega-link {
  display: block;
  padding: 7px 12px;
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.mega-link:hover {
  background: rgba(249,115,22,0.08);
  border-left-color: var(--saffron);
  color: var(--white);
  padding-left: 16px;
}

/* Nav right utilities */
.nav-utils {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  margin-left: auto;
}
.nav-search-btn, .lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-search-btn:hover, .lang-btn:hover { color: var(--saffron); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-mid);
  overflow-y: auto;
  z-index: 999;
  padding: 20px;
}
#mobile-nav.open { display: block; }
.mobile-nav-section { margin-bottom: 20px; }
.mobile-nav-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mobile-nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.95rem;
  color: var(--text);
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.mobile-nav-link:hover {
  color: var(--saffron);
  border-left-color: var(--saffron);
  padding-left: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-mid);
}

.hero-home {
  min-height: 100vh;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg-0 { background: linear-gradient(135deg, #04111f 0%, #0c2040 40%, #1a3a60 100%); }
.hero-bg-1 { background: linear-gradient(120deg, #060e1c 0%, #111f38 50%, #0d2a46 100%); }
.hero-bg-2 { background: linear-gradient(150deg, #050f1d 0%, #0a1e35 45%, #152d50 100%); }
.hero-bg-3 { background: linear-gradient(110deg, #03101e 0%, #0c2038 50%, #0f2948 100%); }
.hero-bg-4 { background: linear-gradient(160deg, #04111f 0%, #091c33 40%, #122540 100%); }
.hero-bg-5 { background: linear-gradient(130deg, #060d1b 0%, #0b1e36 45%, #182e52 100%); }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,164,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,74,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-jet {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: auto;
  opacity: 0.22;
  filter: drop-shadow(0 0 40px rgba(200,164,74,0.3));
}

.hero-home .hero-jet {
  width: 460px;
  opacity: 0.18;
  right: 8%;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--saffron);
}

.hero h1 { margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-lead {
  font-size: 1.05rem;
  max-width: 600px;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--saffron);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: all var(--transition);
}
.hero-cta:hover {
  background: var(--saffron-dk);
  transform: translateX(4px);
}
.hero-cta svg { width: 16px; height: 16px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb .sep { color: var(--gold); opacity: 0.5; }
.breadcrumb .current { color: var(--white); }

/* ============================================
   SECTION NAV (sub-navigation tabs)
   ============================================ */
.section-nav {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.section-nav ul {
  display: flex;
  gap: 0;
  min-width: max-content;
}
.section-nav li a {
  display: block;
  padding: 14px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.section-nav li a:hover,
.section-nav li a.active {
  color: var(--saffron);
  border-bottom-color: var(--saffron);
}

/* ============================================
   MAIN CONTENT LAYOUT
   ============================================ */
.page-body { padding: 60px 0; }

.page-body.with-sidebar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.page-sidebar {}
.sidebar-nav {
  background: var(--navy-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.sidebar-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-nav a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--text);
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(200,164,74,0.08);
  transition: all var(--transition);
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--saffron);
  border-left-color: var(--saffron);
  background: rgba(249,115,22,0.05);
  padding-left: 22px;
}

/* ============================================
   CONTENT AREA
   ============================================ */
.content-area {}

.lead-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
  border-left: 3px solid var(--saffron);
  padding-left: 20px;
  margin-bottom: 32px;
}

.content-section { margin-bottom: 40px; }
.content-section h2 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.content-section h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.content-section p { color: var(--text); margin-bottom: 14px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.spec-table th {
  background: var(--navy-light);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.spec-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.spec-table tr:hover td { background: rgba(200,164,74,0.04); }
.spec-table td:first-child { color: var(--muted); font-size: 0.82rem; }

/* ============================================
   CARD GRID (section landing pages)
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 2px;
}

.card-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy-card);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.card-item:hover .card-img { transform: scale(1.04); }

/* Card gradient backgrounds (dummy photos) */
.cg-0 { background: linear-gradient(135deg,#071828 0%,#0f2d50 60%,#1a4070 100%); }
.cg-1 { background: linear-gradient(150deg,#0a1e32 0%,#132e4e 55%,#0d2036 100%); }
.cg-2 { background: linear-gradient(120deg,#060f1e 0%,#0b2238 55%,#162d4e 100%); }
.cg-3 { background: linear-gradient(160deg,#030d1a 0%,#091929 50%,#10253e 100%); }
.cg-4 { background: linear-gradient(140deg,#060e1c 0%,#0e1e34 50%,#192b46 100%); }
.cg-5 { background: linear-gradient(125deg,#040c1a 0%,#0c2035 55%,#142940 100%); }
.cg-6 { background: linear-gradient(145deg,#050d1b 0%,#102338 55%,#1a3255 100%); }
.cg-7 { background: linear-gradient(155deg,#04101e 0%,#0b1d32 50%,#152c48 100%); }
.cg-8 { background: linear-gradient(115deg,#030c1a 0%,#0d2038 55%,#1a3358 100%); }
.cg-9 { background: linear-gradient(170deg,#050e1c 0%,#0f2035 50%,#162d50 100%); }
.cg-10 { background: linear-gradient(130deg,#040b18 0%,#0a1c30 55%,#132848 100%); }
.cg-11 { background: linear-gradient(148deg,#050c1a 0%,#0c1e34 55%,#18304e 100%); }

.card-jet-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-jet-placeholder img {
  width: 60%;
  max-width: 180px;
  opacity: 0.18;
  filter: drop-shadow(0 0 20px rgba(200,164,74,0.3));
  transition: opacity 0.4s ease;
}
.card-item:hover .card-jet-placeholder img { opacity: 0.28; }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,17,31,0.92) 0%, rgba(4,17,31,0.4) 50%, transparent 100%);
}

.card-body {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: var(--white);
  transition: color var(--transition);
}
.card-item:hover .card-body h3 { color: var(--saffron); }

.card-body .card-desc {
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 6px;
  display: none;
}
.card-item:hover .card-body .card-desc { display: block; }

.card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(249,115,22,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  transition: all var(--transition);
  z-index: 2;
}
.card-item:hover .card-arrow {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}

/* ============================================
   HOME PAGE SPECIAL SECTIONS
   ============================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.section-divider h2 { font-size: 2rem; }
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  margin: 40px 0;
}
.feature-box {
  background: var(--navy-card);
  padding: 32px 24px;
  border-top: 2px solid transparent;
  transition: all var(--transition);
}
.feature-box:hover { border-top-color: var(--saffron); }
.feature-box .icon {
  width: 48px;
  height: 48px;
  color: var(--saffron);
  margin-bottom: 16px;
}
.feature-box h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-box p { font-size: 0.85rem; color: var(--muted); margin: 0; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.news-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-3px);
}
.news-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card-img img {
  width: 50%;
  opacity: 0.2;
}
.news-card-body { padding: 18px; }
.news-card-date {
  font-size: 0.72rem;
  color: var(--saffron);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-card-body h4 { font-size: 1rem; margin-bottom: 8px; }
.news-card-body p { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* ============================================
   SECTION INTRO (used on section landing pages)
   ============================================ */
.section-intro {
  padding: 50px 0 30px;
}
.section-intro .container > p {
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.8;
  border-left: 3px solid var(--saffron);
  padding-left: 20px;
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-newsletter {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.footer-newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-newsletter p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.footer-newsletter strong { color: var(--white); display: block; font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; letter-spacing: 0.06em; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.85rem;
  width: 260px;
  font-family: 'Barlow', sans-serif;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { outline: none; border-color: var(--saffron); }
.newsletter-form button {
  background: var(--saffron);
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--saffron-dk); }

.site-footer {
  background: var(--navy-mid);
  padding: 50px 0 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
  font-size: 0.8rem;
}
.footer-social-link:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(249,115,22,0.08);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--saffron); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--saffron); }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4,17,31,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.search-overlay.open { display: flex; }
.search-box {
  width: 100%;
  max-width: 600px;
  padding: 20px;
}
.search-box input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--saffron);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  padding: 10px 0;
  outline: none;
  letter-spacing: 0.05em;
}
.search-box input::placeholder { color: var(--muted); }
.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.search-close:hover { color: var(--saffron); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-row { grid-template-columns: repeat(2,1fr); }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
}

@media (max-width: 768px) {
  #main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-utils { display: none; }
  .hero-jet { width: 200px; opacity: 0.12; }
  .page-body.with-sidebar { grid-template-columns: 1fr; }
  .page-sidebar { display: none; }
  .features-row { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-newsletter .container { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; width: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-nav { display: none; }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .site-logo .logo-text { font-size: 1rem; }
}
