*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky: #0a1628;
  --sky-mid: #1a3a6b;
  --sky-light: #2563eb;
  --accent: #f97316;
  --accent2: #fbbf24;
  --white: #ffffff;
  --gray: #94a3b8;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--sky);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  backdrop-filter: blur(16px);
  background: rgba(10,22,40,0.6);
  border-bottom: 1px solid var(--card-border);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.8rem 2.5rem; }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active { color: var(--white); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #ea6c0a; transform: scale(1.04); }
.nav-cta.nav-active { color: var(--white) !important; }

/* ── PARAGLIDER ILLUSTRATION ── */
.paraglider-svg {
  position: absolute;
  left: 4%;
  top: 14%;
  width: clamp(180px, 26vw, 360px);
  z-index: 5;
  opacity: 0.82;
  animation: paraFloat 9s ease-in-out infinite;
  filter: drop-shadow(0 6px 28px rgba(249,115,22,0.22));
}
@keyframes paraFloat {
  0%,100% { transform: translateY(0px) rotate(-0.8deg); }
  50%      { transform: translateY(-14px) rotate(0.8deg); }
}
@media (max-width: 640px) { .paraglider-svg { display: none; } }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #020c1c 0%,
    #0a1e3d 25%,
    #1a3a6b 55%,
    #2d6bbf 75%,
    #4899e8 90%,
    #87ceeb 100%
  );
  animation: skyShift 12s ease-in-out infinite alternate;
}
@keyframes skyShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(8deg) brightness(1.05); }
  100% { filter: hue-rotate(-5deg) brightness(0.98); }
}

.mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
}
.mountain-layer { position: absolute; bottom: 0; left: 0; width: 100%; }

.cloud {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  filter: blur(18px);
  animation: drift linear infinite;
}
@keyframes drift {
  from { transform: translateX(-120px); }
  to   { transform: translateX(110vw); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge::before { content: "✦"; font-size: 0.7rem; }

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.4s both;
}
h1 .line2 {
  display: block;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
h1 .accent { color: var(--accent); -webkit-text-stroke: 0; }

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s 0.8s both;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(249,115,22,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(249,115,22,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* ── STATS ── */
#stats {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(249,115,22,0.06));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.05em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── SECTION COMMON ── */
section { padding: 6rem 2rem; }
@media (max-width: 640px) {
  section { padding: 4rem 1.25rem; }
  #stats { padding: 3.5rem 1.25rem; }
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.section-desc {
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  font-size: 1rem;
}
.centered { text-align: center; }
.centered .section-desc { margin: 0 auto; }

/* ── FLIGHTS ── */
#flights { background: var(--sky); }
.flights-header { text-align: center; margin-bottom: 4rem; }
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.flight-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.flight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.flight-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.3); }
.flight-card:hover::before { opacity: 1; }
.flight-card.featured {
  border-color: rgba(249,115,22,0.4);
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(37,99,235,0.05));
}
.featured-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}
.flight-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.flight-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.flight-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.flight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.flight-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.flight-features li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.flight-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.flight-cta:hover { gap: 0.8rem; }
.flight-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.flight-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
}
.flight-tag.duration {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.flight-tag.price {
  background: rgba(249,115,22,0.15);
  color: var(--accent2);
  border: 1px solid rgba(249,115,22,0.25);
}

/* ── PILOT ── */
#pilot {
  background: linear-gradient(180deg, #0d2040 0%, var(--sky) 100%);
}
.pilot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pilot-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pilot-avatar { width: 160px; height: 160px; font-size: 4rem; }
}
.pilot-avatar {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1a3a6b, #2d6bbf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 2px solid rgba(249,115,22,0.3);
  flex-shrink: 0;
}
.pilot-licenses {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.license-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: #93c5fd;
}
.pilot-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(249,115,22,0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── EXPERIENCE ── */
#experience {
  background: linear-gradient(180deg, var(--sky) 0%, #0d2040 100%);
}
.experience-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .experience-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .experience-visual { aspect-ratio: 16/9; }
}
.experience-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.exp-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a3a6b, #2d6bbf, #4899e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}
.exp-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.8) 100%);
}
.experience-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(249,115,22,0.2);
  line-height: 1;
  min-width: 2.5rem;
  transition: color 0.3s;
}
.step:hover .step-num { color: var(--accent); }
.step-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.step-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── GALLERY ── */
#gallery {
  background: var(--sky);
  overflow: hidden;
}
.gallery-header { text-align: center; margin-bottom: 3rem; }
#galleryWrap {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#galleryWrap::-webkit-scrollbar { display: none; }
#galleryWrap.dragging { cursor: grabbing; }
.gallery-strip {
  display: flex;
  gap: 1rem;
  width: max-content;
  user-select: none;
}
.gallery-item {
  width: 360px;
  height: 240px;
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--card-border);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.g1 { background: linear-gradient(135deg, #1e3a5f, #2d6bbf); }
.g2 { background: linear-gradient(135deg, #2d1b4e, #7c3aed); }
.g3 { background: linear-gradient(135deg, #1a3a2a, #16a34a); }
.g4 { background: linear-gradient(135deg, #4a1c1c, #dc2626); }
.g5 { background: linear-gradient(135deg, #3a2a0a, #d97706); }
.g6 { background: linear-gradient(135deg, #0d2040, #0ea5e9); }
.gallery-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── VOUCHER ── */
#voucher {
  background: linear-gradient(135deg, #0d2040, #1a1040);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.voucher-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 640px) {
  .voucher-inner { grid-template-columns: 1fr; gap: 2rem; }
  .voucher-card { min-width: unset; padding: 1.75rem; }
}
.voucher-card {
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(37,99,235,0.1));
  border: 1.5px solid rgba(249,115,22,0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  min-width: 240px;
}
.voucher-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.voucher-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--accent2);
  margin-bottom: 0.5rem;
}
.voucher-sub { font-size: 0.8rem; color: var(--gray); }

/* ── FAQ ── */
#faq { background: var(--sky); }
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ── CONTACT ── */
#contact {
  background: linear-gradient(135deg, #0a1628, #0d2040);
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .contact-inner { gap: 2rem; }
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.contact-detail-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-value a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(249,115,22,0.5);
  background: rgba(255,255,255,0.07);
}
.form-select option { background: #0a1628; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 99px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
  margin-top: 0.5rem;
}
.form-submit:hover { background: #ea6c0a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.45); }

/* ── FOOTER ── */
footer {
  background: #050d1a;
  border-top: 1px solid var(--card-border);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 501;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-arrow {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 501;
  user-select: none;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
.lightbox-arrow.prev { left: 1rem; }
.lightbox-arrow.next { right: 1rem; }
.lightbox-arrow.hidden { display: none; }
.lightbox-caption {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 80vw;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.lang-btn.active { color: var(--white); border-color: var(--accent); background: rgba(249,115,22,0.12); }
@media (max-width: 640px) { .lang-switcher { margin-left: 0.5rem; } }

/* ── MOBILE NAV ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; z-index: 101; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: rgba(10,22,40,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s,
                visibility 0s linear 0.3s;
    pointer-events: none;
  }
  .nav-links.mobile-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s,
                visibility 0s;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1rem; }
  .nav-cta { text-align: center; padding: 0.75rem 1.25rem; }
}
