/* ═══════════════════════════════════════════
   EUROPARK RANJANGAON — PREMIUM INDUSTRIAL LANDING PAGE
   Design System & Styles
═══════════════════════════════════════════ */

/* ─── ROOT VARIABLES ─── */
:root {
  --primary:       #0f2a44;
  --secondary:     #6dbf4b;
  --accent:        #1f3f5b;
  --accent-hover:  #2e5c80;
  --bg-light:      #f4f7f2;
  --bg-deep:       #09192b;
  --text-dark:     #1a1a1a;
  --text-light:    #6b7280;
  --text-muted:    #9ca3af;
  --white:         #ffffff;
  --gold:          #c9a84c;
  --border:        rgba(15,42,68,0.1);
  --border-light:  rgba(255,255,255,0.15);

  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 12px rgba(15,42,68,0.08);
  --shadow-md:     0 8px 32px rgba(15,42,68,0.14);
  --shadow-lg:     0 20px 60px rgba(15,42,68,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

/* ─── RESET & BASE ─── */
*, *::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);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── UTILITY ─── */
.section-pad { padding: 100px 0; }
.bg-light     { background: var(--bg-light); }
.bg-deep      { background: var(--bg-deep); }
.center       { text-align: center; }
.mt-24        { margin-top: 24px; }
.text-accent  { color: var(--secondary); }

/* ─── TYPOGRAPHY ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-label.light { color: var(--secondary); opacity: 0.9; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}
.section-body.light { color: rgba(255,255,255,0.72); }

.section-header { margin-bottom: 56px; }
.section-header.center .section-title { max-width: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn--primary:hover {
  background: #5aaa38;
  border-color: #5aaa38;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109,191,75,0.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(9,25,43,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

/* INNER */
.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

/* LOGO (LEFT) */
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 145px;
  width: auto;
  object-fit: contain;
}

/* MENU (RIGHT SIDE PUSH) */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;   /* 🔥 pushes everything right */
}

/* LINKS */
.navbar__menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  position: relative;
  text-decoration: none;
}

.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar__menu a:hover {
  color: var(--white);
}

.navbar__menu a:hover::after {
  transform: scaleX(1);
}

/* CTA BUTTON */
.navbar__cta {
  margin-left: 20px;   /* spacing from menu */
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* HAMBURGER */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 20px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════
   2. HERO SECTION
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,25,43,0.88) 0%,
    rgba(15,42,68,0.75) 50%,
    rgba(9,25,43,0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* Glass Cards */
.hero__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  max-width: 780px;
}

.glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(109,191,75,0.4);
  transform: translateY(-4px);
}
.glass-card__icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.glass-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px; right: 60px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 48px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--secondary);
  animation: scrollSlide 2s ease-in-out infinite;
}
@keyframes scrollSlide {
  to { left: 100%; }
}


/* ════════════════════════════════════════════
   3. ABOUT SECTION
════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-list {
  margin-bottom: 32px;
}
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-list li::before {
  content: '→';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Image Frame */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.image-frame--tall { aspect-ratio: 3/4; }

.image-frame img {
  transition: transform 0.7s ease;
}
.image-frame:hover img { transform: scale(1.04); }

.image-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
}


/* ════════════════════════════════════════════
   4. PROJECT SCALE
════════════════════════════════════════════ */
.scale__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.scale-card {
  padding: 48px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.scale-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}
.scale-card:hover::before { transform: scaleX(1); }
.scale-card:hover { background: rgba(255,255,255,0.04); }

.scale-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.scale-card__number span {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-left: 4px;
}
.scale-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}


/* ════════════════════════════════════════════
   5. STRATEGIC LOCATION
════════════════════════════════════════════ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location__distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.distance-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--secondary);
}
.distance-km {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.distance-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}


/* ════════════════════════════════════════════
   6. MASTER PLAN ZONES
════════════════════════════════════════════ */
.zones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zone-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.zone-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.zone-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.zone-card--industrial::before { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.zone-card--light::before      { background: linear-gradient(90deg, var(--accent), #2980b9); }
.zone-card--logistics::before  { background: linear-gradient(90deg, #e67e22, #f39c12); }
.zone-card--green::before      { background: linear-gradient(90deg, var(--secondary), #2ecc71); }
.zone-card--aviation::before   { background: linear-gradient(90deg, #8e44ad, #9b59b6); }
.zone-card--commercial::before { background: linear-gradient(90deg, var(--gold), #e5ac3c); }

.zone-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.zone-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.zone-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   7. ESG GREEN ZONE
════════════════════════════════════════════ */
.esg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.esg__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.esg-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.esg-feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.esg-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}
.esg-feature p {
  font-size: 0.875rem;
  color: var(--text-light);
}


/* ════════════════════════════════════════════
   8. INDUSTRIAL DARK ZONES
════════════════════════════════════════════ */
.ind-zones__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ind-zone {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
}
.ind-zone:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(109,191,75,0.3);
  transform: translateY(-4px);
}
.ind-zone__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.ind-zone h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.ind-zone p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   9. SUPPORTING INFRASTRUCTURE
════════════════════════════════════════════ */
.infra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.infra-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.infra-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(109,191,75,0.3);
}
.infra-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.infra-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.infra-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   10. AIRCRAFT HIGHLIGHT
════════════════════════════════════════════ */
.aircraft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.aircraft__specs {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}
.spec-item { text-align: center; }
.spec-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}
.spec-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aircraft__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.aircraft__ring {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(109,191,75,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: ringPulse 4s ease-in-out infinite;
}
.aircraft__ring::before,
.aircraft__ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(109,191,75,0.15);
  animation: ringExpand 4s ease-in-out infinite;
}
.aircraft__ring::before { inset: -30px; animation-delay: 0.5s; }
.aircraft__ring::after  { inset: -60px; animation-delay: 1s; }

@keyframes ringPulse {
  0%,100% { border-color: rgba(109,191,75,0.25); }
  50%      { border-color: rgba(109,191,75,0.5); }
}
@keyframes ringExpand {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.aircraft__icon {
  font-size: 5rem;
  animation: planeFly 6s ease-in-out infinite;
}
@keyframes planeFly {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50%      { transform: translateY(-12px) rotate(-5deg); }
}


/* ════════════════════════════════════════════
   11. CORE DEVELOPMENT
════════════════════════════════════════════ */
.core__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.core-pillar { padding-top: 24px; }
.core-pillar__line {
  width: 40px; height: 3px;
  background: var(--secondary);
  margin-bottom: 20px;
}
.core-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.core-pillar p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* ════════════════════════════════════════════
   12. INFRASTRUCTURE GRID
════════════════════════════════════════════ */
.ig__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ig-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.ig-item__bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.ig-item__bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--secondary), #4caf50);
  border-radius: 2px;
  animation: barFill 1.5s ease-out forwards;
  transform-origin: left;
}
@keyframes barFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.ig-item__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.ig-item__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}


/* ════════════════════════════════════════════
   13. STRATEGIC IMPACT
════════════════════════════════════════════ */
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  border-radius: var(--radius);
  padding: 36px 24px;
  border-top: 4px solid;
  background: var(--bg-light);
  transition: var(--transition);
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.impact-card--employment  { border-color: var(--primary); }
.impact-card--investment  { border-color: var(--gold); }
.impact-card--sustainability { border-color: var(--secondary); }
.impact-card--gdp         { border-color: #8e44ad; }

.impact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.impact-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   14. SHOWCASE SECTION
════════════════════════════════════════════ */
.showcase {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.showcase__bg {
  position: absolute;
  inset: 0;
}
.showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9,25,43,0.88) 0%,
    rgba(9,25,43,0.5) 70%,
    transparent 100%
  );
}
.showcase__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 640px;
}


/* ════════════════════════════════════════════
   15. GALLERY
════════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item img {
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,25,43,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Placeholder for missing images */
.gallery-item img[src*="gallery"],
.image-frame img,
.hero__bg-img,
.showcase__bg img {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* ════════════════════════════════════════════
   16. CONTACT / ENQUIRY
════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact Details */
.contact__details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail__icon {
  font-size: 1.1rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}

.contact-detail a:hover {
  color: var(--white);
}

/* Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Inputs */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;                         /* WHITE TEXT */
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

/* Placeholder */
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* Focus */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--secondary);
  background: rgba(255,255,255,0.1);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* 🔥 SELECT (DROPDOWN FIX) */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* Dropdown options */
.form-select option {
  background-color: #09192b;   /* DARK BACKGROUND */
  color: #ffffff;              /* WHITE TEXT */
}
/* ════════════════════════════════════════════
   17. THANK YOU SECTION
════════════════════════════════════════════ */
.thankyou {
  background: var(--bg-light);
  text-align: center;
}
.thankyou__inner { max-width: 640px; margin: 0 auto; }

.thankyou__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.thankyou__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.thankyou__subheading {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.thankyou__tagline {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 32px;
}
.thankyou__divider {
  width: 60px; height: 2px;
  background: var(--secondary);
  margin: 0 auto 24px;
}
.thankyou__by {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.thankyou__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
}
.thankyou__contact a { color: var(--primary); font-weight: 500; }
.thankyou__contact a:hover { color: var(--secondary); }
.divider-dot { color: var(--text-muted); }


/* ════════════════════════════════════════════
   18. FOOTER
════════════════════════════════════════════ */
.footer { background: var(--bg-deep); padding: 80px 0 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__col--brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a,
.footer__col ul li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--secondary); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--secondary); }


/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal        { transform: translateY(40px); }
.reveal-left   { transform: translateX(-50px); }
.reveal-right  { transform: translateX(50px); }

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}


/* ════════════════════════════════════════════
   RESPONSIVE — 1200px
════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .about__grid,
  .esg__grid,
  .location__grid { gap: 48px; }
  .core__grid { gap: 32px; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — 992px
════════════════════════════════════════════ */
@media (max-width: 992px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }

  /* Navbar */
  .navbar__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-deep);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 32px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .navbar__menu.open { right: 0; }
  .navbar__menu a { font-size: 1.1rem; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  /* Grids */
  .about__grid,
  .esg__grid,
  .location__grid,
  .aircraft__inner,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .scale__grid         { grid-template-columns: repeat(2, 1fr); }
  .zones__grid         { grid-template-columns: repeat(2, 1fr); }
  .ind-zones__grid     { grid-template-columns: repeat(2, 1fr); }
  .infra__grid         { grid-template-columns: repeat(2, 1fr); }
  .core__grid          { grid-template-columns: repeat(2, 1fr); }
  .ig__grid            { grid-template-columns: repeat(2, 1fr); }
  .impact__grid        { grid-template-columns: repeat(2, 1fr); }
  .footer__grid        { grid-template-columns: 1fr 1fr; }

  .hero__cards { grid-template-columns: repeat(2, 1fr); }
  .aircraft__visual { display: none; }
  .location__distances { grid-template-columns: repeat(2, 1fr); }
}


/* ════════════════════════════════════════════
   RESPONSIVE — 768px
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  .hero__heading { font-size: clamp(2rem, 8vw, 3.2rem); }

  .scale__grid,
  .zones__grid,
  .infra__grid,
  .impact__grid { grid-template-columns: 1fr; }

  .ind-zones__grid { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .hero__scroll-indicator { display: none; }
  .aircraft__specs { flex-wrap: wrap; gap: 24px; }

  .location__distances { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — 480px
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }

  .hero__cards { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .scale__grid { grid-template-columns: 1fr; }
  .core__grid  { grid-template-columns: 1fr; }
  .ig__grid    { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }

  .section-title { font-size: 1.8rem; }

  .thankyou__contact { flex-direction: column; gap: 6px; }
  .divider-dot { display: none; }
}
