/* ================================================================
   AIRLOGIC AVIATION SOLUTIONS — SHARED STYLESHEET
   airlogicaviation.com
   Mission-driven | Warm | Professional | Indian Aviation
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Rajdhani:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600&display=swap');

:root {
  --gold:         #C9941A;
  --gold-light:   #E2A832;
  --gold-pale:    #F5E6C0;
  --gold-bg:      #FBF5E6;
  --red:          #C94A1A;
  --red-light:    #E06030;
  --red-bg:       #FDF3EE;
  --black:        #181816;
  --dark:         #2A2A26;
  --mid:          #5C5C54;
  --muted:        #8A8A80;
  --light:        #F5F2EC;
  --lighter:      #FAF8F4;
  --white:        #FFFFFF;
  --border:       rgba(201,148,26,0.18);
  --border-light: rgba(201,148,26,0.09);
  --shadow-gold:  0 8px 40px rgba(201,148,26,0.12);
  --shadow-soft:  0 4px 24px rgba(0,0,0,0.06);
  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-ui:      'Rajdhani', sans-serif;
  --max-w:        1140px;
  --nav-h:        72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--lighter); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ---- NAV ---- */
#al-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#al-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}
.al-nav-logo img { height: 36px; display: block; }
.al-nav-links {
  display: flex; align-items: center; gap: 2.2rem; list-style: none;
}
.al-nav-links a {
  font-family: var(--font-ui);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  transition: color 0.25s; position: relative; padding-bottom: 2px;
}
.al-nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.al-nav-links a:hover, .al-nav-links a.active { color: var(--gold); }
.al-nav-links a:hover::after, .al-nav-links a.active::after { transform: scaleX(1); }
.al-nav-cta {
  font-family: var(--font-ui); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 2px; text-decoration: none !important;
  transition: background 0.25s, transform 0.2s;
}
.al-nav-cta::after { display: none !important; }
.al-nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.al-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.al-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); transition: all 0.3s; }

/* ---- FOOTER ---- */
#al-footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 0;
}
.al-footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 5vw; }
.al-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem;
}
.al-footer-brand img { height: 34px; margin-bottom: 1.2rem; filter: brightness(10); opacity: 0.9; }
.al-footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.al-footer-col h5 {
  font-family: var(--font-ui); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.al-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.al-footer-col a {
  font-family: var(--font-ui); font-size: 0.84rem;
  color: rgba(255,255,255,0.45); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.25s;
}
.al-footer-col a:hover { color: var(--gold-light); }
.al-footer-contact { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.4rem; }
.al-footer-contact a {
  font-family: var(--font-ui); font-size: 0.84rem;
  color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.25s;
}
.al-footer-contact a:hover { color: var(--gold-light); }
.al-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.8rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.al-footer-legal { font-family: var(--font-ui); font-size: 0.7rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* ---- SHARED COMPONENTS ---- */
.al-tag {
  font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem;
}
.al-tag::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
.al-tag.centered { justify-content: center; }
.al-tag.centered::before { display: none; }
.al-tag.red { color: var(--red); }
.al-tag.red::before { background: var(--red); }
.al-h1 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
.al-h2 { font-family: var(--font-display); font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 400; line-height: 1.18; color: var(--black); margin-bottom: 1.2rem; }
.al-h2 em { font-style: italic; color: var(--gold); }
.al-h2.red em { color: var(--red); }
.al-body { font-size: 1.08rem; color: var(--mid); line-height: 1.85; }
.al-divider { width: 48px; height: 2px; background: linear-gradient(to right,var(--gold),var(--gold-pale)); margin-bottom: 1.8rem; }
.al-divider.red { background: linear-gradient(to right,var(--red),#f5c4b0); }
.al-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 5vw; }
.al-page-hero {
  min-height: 52vh; display: flex; align-items: flex-end;
  padding-bottom: 4rem; padding-top: calc(var(--nav-h) + 4rem);
  background: var(--lighter); position: relative; overflow: hidden;
}
.al-page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(201,148,26,0.06) 0%, transparent 60%);
}
.al-page-hero-content { position: relative; z-index: 2; }
.al-page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.8rem); font-weight: 400; line-height: 1.1; color: var(--black); margin-bottom: 1rem; }
.al-page-hero h1 em { font-style: italic; color: var(--gold); }
.al-page-hero p { font-size: 1.15rem; color: var(--mid); max-width: 560px; font-style: italic; }

/* Buttons */
.al-btn { display: inline-block; font-family: var(--font-ui); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.85rem 2rem; border-radius: 2px; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; }
.al-btn-gold { background: var(--gold); color: var(--white); }
.al-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,148,26,0.28); color: var(--white); text-decoration: none; }
.al-btn-red { background: var(--red); color: var(--white); }
.al-btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,74,26,0.28); color: var(--white); text-decoration: none; }
.al-btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--border); }
.al-btn-outline:hover { border-color: var(--gold); background: rgba(201,148,26,0.06); color: var(--gold); text-decoration: none; }
.al-btn-outline-red { background: transparent; color: var(--red); border: 1.5px solid rgba(201,74,26,0.25); }
.al-btn-outline-red:hover { border-color: var(--red); background: rgba(201,74,26,0.05); color: var(--red); text-decoration: none; }
.al-link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-ui); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 0.2rem; transition: color 0.25s, border-color 0.25s; }
.al-link-arrow:hover { color: var(--gold-light); border-color: var(--gold-light); }
.al-link-arrow::after { content: '→'; transition: transform 0.25s; }
.al-link-arrow:hover::after { transform: translateX(4px); }

/* Reveal animations */
.al-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.al-reveal.v { opacity: 1; transform: none; }
.al-reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.al-reveal-l.v { opacity: 1; transform: none; }
.al-reveal-r { opacity: 0; transform: translateX(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.al-reveal-r.v { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; } .d2 { transition-delay: 0.24s; } .d3 { transition-delay: 0.36s; }

/* Wheel watermark */
.al-wheel-mark {
  position: absolute; pointer-events: none; opacity: 0.045;
  animation: al-rot 180s linear infinite;
}
@keyframes al-rot { to { transform: rotate(360deg); } }
.al-wheel-mark.centered { top: 50%; left: 50%; transform: translate(-50%,-50%); animation: al-rot-center 180s linear infinite; }
@keyframes al-rot-center { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Section padding */
.al-section { padding: 7rem 0; }
.al-section-sm { padding: 5rem 0; }
.al-section.light-bg { background: var(--lighter); }
.al-section.gold-bg { background: var(--gold-bg); }
.al-section.dark-bg { background: var(--black); color: var(--white); }

/* CTA Band */
.al-cta-band { padding: 6rem 0; background: var(--dark); position: relative; overflow: hidden; }
.al-cta-band-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 5vw; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.al-cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem,2.8vw,2.4rem); font-weight: 400; color: #f5f0e8; line-height: 1.2; margin-bottom: 0.8rem; }
.al-cta-band h2 em { color: var(--gold-light); font-style: italic; }
.al-cta-band p { font-size: 1.05rem; color: rgba(245,240,232,0.6); max-width: 460px; }
.al-cta-actions { display: flex; flex-direction: column; gap: 0.9rem; min-width: 200px; }
.al-btn-cta { display: block; font-family: var(--font-ui); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.9rem 1.8rem; border-radius: 2px; text-decoration: none; text-align: center; transition: all 0.25s; }
.al-btn-cta.gold { background: var(--gold); color: var(--white); }
.al-btn-cta.gold:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--white); }
.al-btn-cta.ghost { background: transparent; color: rgba(245,240,232,0.7); border: 1px solid rgba(245,240,232,0.18); }
.al-btn-cta.ghost:hover { border-color: rgba(245,240,232,0.4); color: #f5f0e8; }

/* Responsive nav */
@media (max-width: 960px) {
  .al-nav-links { display: none; }
  .al-hamburger { display: flex; }
  .al-nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); padding: 3rem 5vw; gap: 1.8rem; z-index: 999;
    border-top: 1px solid var(--border);
  }
  .al-nav-links.open a { font-size: 1rem; }
  .al-footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .al-footer-brand { grid-column: 1/-1; }
  .al-cta-band-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .al-cta-actions { flex-direction: row; flex-wrap: wrap; min-width: unset; }
}
@media (max-width: 560px) {
  .al-footer-top { grid-template-columns: 1fr; }
  .al-cta-actions { flex-direction: column; }
}
