/* ============================================
   AERO-BI — Orange Summit Theme
   Premium graphic charter · Orange as hero color
   Warm darks, creamy lights, bold accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand — Orange */
  --primary: #E8650A;
  --primary-bright: #FF7A1A;
  --primary-light: #FFB066;
  --primary-glow: rgba(232, 101, 10, 0.15);
  --primary-gradient: linear-gradient(135deg, #E8650A 0%, #FF7A1A 100%);

  /* Dark palette */
  --bg-dark: #111111;
  --bg-dark-end: #1a1a1a;
  --overlay-dark: rgba(0, 0, 0, 0.88);

  /* Light palette */
  --bg-light: #f5f5f5;
  --bg-light-alt: #ececec;

  /* Neutrals */
  --white: #FFFFFF;
  --text-on-dark: rgba(255, 255, 255, 0.72);
  --text-on-light: #1a1a1a;
  --text-muted-light: #666666;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: #F0E4D8;
  --gold: #FFB74D;

  /* Typography */
  --font-heading: 'DM Sans', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --radius: 12px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 136px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ============ TOP BAR ============ */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: 36px;
  background: rgba(11, 29, 51, 0.98);
  border-bottom: 1px solid rgba(232, 101, 10, 0.15);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 32px; gap: 24px;
}
.top-bar-contact {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  text-decoration: none; font-weight: 600;
  transition: color 0.2s;
}
.top-bar-contact:hover { color: var(--primary-light); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(11, 29, 51, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232, 101, 10, 0.1);
}
.nav-inner {
  max-width: 100%; margin: 0; padding: 0 32px 0 0;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800;
  color: var(--white); text-decoration: none; letter-spacing: 0.5px;
  margin-left: 12px; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 24px; list-style: none; flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 1rem;
  font-weight: 600; transition: color 0.25s; position: relative;
  text-transform: capitalize; white-space: nowrap;
}
.nav-links a:hover { color: var(--primary-light); }
.nav-links a.active { color: var(--white); }
.nav-lang {
  background: rgba(255,255,255,0.1); border-radius: 6px; padding: 4px 10px !important;
  font-size: 0.82rem !important; letter-spacing: 0.02em; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.12); transition: background 0.2s, color 0.2s;
}
.nav-lang:hover { background: rgba(232, 101, 10, 0.2); color: var(--primary-light); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--primary-bright);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  margin: 5px 0; transition: 0.3s;
}

/* ============ NAV DROPDOWNS ============ */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.nav-arrow { font-size: 0.7rem; opacity: 0.6; transition: transform 0.2s; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: -12px;
  background: rgba(11, 29, 51, 0.96); backdrop-filter: blur(24px);
  border: 1px solid rgba(232, 101, 10, 0.12); border-radius: 10px;
  padding: 8px 0; min-width: 220px; list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.84rem !important;
  color: rgba(255,255,255,0.65) !important; transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(232, 101, 10, 0.1); color: var(--primary-light) !important;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-new.jpg') center/cover no-repeat;
}
/* Clouds */
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 220px 80px at 15% 70%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(ellipse 300px 100px at 25% 65%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(ellipse 180px 60px at 60% 75%, rgba(255,255,255,0.85) 0%, transparent 100%),
    radial-gradient(ellipse 260px 90px at 70% 70%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 400px 120px at 85% 60%, rgba(255,255,255,0.75) 0%, transparent 100%),
    radial-gradient(ellipse 350px 110px at 90% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(ellipse 200px 70px at 40% 80%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(ellipse 280px 85px at 50% 85%, rgba(255,255,255,0.55) 0%, transparent 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 150px 50px at 35% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(ellipse 200px 60px at 75% 35%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(ellipse 120px 40px at 10% 30%, rgba(255,255,255,0.3) 0%, transparent 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 29, 51, 0.78) 0%,
    rgba(11, 29, 51, 0.5) 30%,
    rgba(11, 29, 51, 0.1) 55%,
    rgba(11, 29, 51, 0.0) 70%
  );
  z-index: 3;
}
.hero-content {
  position: relative; z-index: 4;
  max-width: 520px; padding: 0 32px;
}
.hero-tag {
  font-size: 0.82rem; font-weight: 700; color: var(--primary-bright);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12; color: var(--white);
  margin-bottom: 24px; letter-spacing: -0.5px;
}
.hero-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border: none; margin-bottom: 24px;
}
.hero-sub {
  font-size: 0.95rem; color: var(--text-on-dark); line-height: 1.8;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--white); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: gap 0.3s, color 0.3s;
}
.hero-cta:hover { gap: 20px; color: var(--primary-light); }
.hero-cta::before {
  content: ''; width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--primary-bright), var(--primary-light));
  transition: width 0.3s;
}
.hero-cta:hover::before { width: 64px; }

/* Paragliders */
.hero-paragliders {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.paraglider {
  position: absolute;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.paraglider svg { width: 100%; height: 100%; }

.paraglider-1 { width: 150px; top: 16%; right: 15%; animation: float1 6s ease-in-out infinite; }
.paraglider-2 { width: 95px; top: 26%; right: 34%; animation: float2 8s ease-in-out infinite; opacity: 0.75; }
.paraglider-3 { width: 70px; top: 12%; right: 52%; animation: float3 10s ease-in-out infinite; opacity: 0.65; }
.paraglider-4 { width: 80px; top: 34%; right: 10%; animation: float2 7s ease-in-out infinite 1s; opacity: 0.7; }
.paraglider-5 { width: 45px; top: 8%; right: 62%; animation: float3 12s ease-in-out infinite; opacity: 0.45; }
.paraglider-6 { width: 35px; top: 22%; right: 70%; animation: float1 14s ease-in-out infinite 2s; opacity: 0.4; }
.paraglider-7 { width: 28px; top: 6%; right: 40%; animation: float2 16s ease-in-out infinite 3s; opacity: 0.3; }
.paraglider-8 { width: 38px; top: 30%; right: 55%; animation: float3 11s ease-in-out infinite 1.5s; opacity: 0.35; }

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(8px, -6px) rotate(1deg); }
  50% { transform: translate(-4px, -10px) rotate(-0.5deg); }
  75% { transform: translate(5px, -3px) rotate(0.5deg); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-10px, -8px); }
  66% { transform: translate(6px, -4px); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -6px); }
}

/* Mountains — flat vector travel poster */
.hero-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  line-height: 0;
  height: 50vh; min-height: 280px;
}
.hero-mountains svg { width: 100%; height: 100%; display: block; }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-sky {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-end) 100%);
}
.section-cloud {
  background: var(--bg-light);
  color: var(--text-on-light);
}
.section-cloud .section-sub,
.section-cloud .card p,
.section-cloud .stage-card p,
.section-cloud .stage-card li,
.section-cloud .price-card li {
  color: var(--text-muted-light);
}
.section-title {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  margin-bottom: 10px; line-height: 1.15; letter-spacing: -0.3px;
}
.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border: none; margin-bottom: 16px; border-radius: 2px;
}
.section-sub {
  color: var(--text-on-dark); font-size: 1rem; margin-bottom: 56px;
  max-width: 540px;
}
.section-cloud .section-title { color: var(--bg-dark); }
.section-cloud .section-sub { color: var(--text-muted-light); }
.section-cloud .section-divider {
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
}

/* ============ REVIEWS ============ */
.reviews-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 32px;
}
.reviews-header .section-sub { margin-bottom: 0; }
.reviews-badge {
  text-align: center; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px 28px;
  box-shadow: 0 4px 20px rgba(232, 101, 10, 0.08);
}
.reviews-badge-stars { font-size: 1.4rem; color: #FBBC04; letter-spacing: 2px; }
.reviews-badge-score { font-size: 2.4rem; font-weight: 800; color: var(--bg-dark); line-height: 1.1; }
.reviews-badge-count { font-size: 0.78rem; color: var(--text-muted-light); margin-top: 2px; }

.reviews-scroll-wrapper {
  overflow: hidden; width: 100%; padding: 8px 0 24px;
}
.reviews-scroll-track {
  display: flex; gap: 20px; width: max-content;
  animation: reviewsScroll 60s linear infinite;
}
.reviews-scroll-track:hover { animation-play-state: paused; }

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0; width: 340px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(232, 101, 10, 0.1);
  transform: translateY(-3px);
  border-color: rgba(232, 101, 10, 0.2);
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: 0.9rem; font-weight: 700; color: var(--bg-dark); }
.review-date { font-size: 0.75rem; color: #94A7B8; }
.review-stars { color: #FBBC04; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 10px; }
.review-card p {
  font-size: 0.85rem; line-height: 1.7; color: var(--text-muted-light); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 101, 10, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #D45800 0%, #E8650A 100%);
  box-shadow: 0 6px 24px rgba(232, 101, 10, 0.4);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--primary-bright);
  color: var(--primary-light);
  background: rgba(232, 101, 10, 0.08);
}
.btn-outline-dark {
  background: transparent; border: 1.5px solid var(--primary); color: var(--primary);
  border-radius: 10px;
}
.btn-outline-dark:hover {
  background: var(--primary-gradient); color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(232, 101, 10, 0.25);
  transform: translateY(-1px);
}
.btn-full { width: 100%; text-align: center; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============ GRIDS ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ============ ACTIVITY CARDS (dark bg) ============ */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}
.card:hover {
  border-color: rgba(232, 101, 10, 0.25);
  background: rgba(232, 101, 10, 0.04);
  box-shadow: 0 8px 32px rgba(232, 101, 10, 0.08);
  transform: translateY(-2px);
}
.card-icon { font-size: 2.2rem; margin-bottom: 20px; }
.card h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px;
}
.card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-on-dark); }

/* ============ PRICE CARDS (light bg) ============ */
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px 24px; display: flex; flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.price-card:hover {
  border-top-color: var(--primary);
  border-color: rgba(232, 101, 10, 0.2);
  border-top-color: var(--primary);
  box-shadow: 0 12px 40px rgba(232, 101, 10, 0.12);
  transform: translateY(-3px);
}
.price-card.featured {
  border-top-color: var(--primary);
  border-color: rgba(232, 101, 10, 0.2);
  box-shadow: 0 8px 32px rgba(232, 101, 10, 0.1);
}
.price-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--primary-gradient); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(232, 101, 10, 0.3);
}
.price-header { margin-bottom: 20px; }
.price-header h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  color: var(--bg-dark); margin-bottom: 8px;
}
.price { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.price span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted-light); }
.price-alt { font-size: 0.88rem; color: var(--text-muted-light); margin-top: 4px; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 24px; }
.price-card li {
  padding: 7px 0; font-size: 0.88rem;
  border-bottom: 1px solid rgba(232, 101, 10, 0.08);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: "✓ "; color: var(--primary); font-weight: 700; }

/* ============ TABS ============ */
.tabs {
  display: flex; gap: 8px; margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0;
}
.tab {
  padding: 14px 28px; background: none; border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-on-dark); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-heading); transition: all 0.25s;
}
.tab:hover { color: var(--primary-light); }
.tab.active {
  color: var(--primary-bright);
  border-bottom-color: var(--primary-bright);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============ STAGE CARDS (dark bg) ============ */
.stage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px; }
.stage-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.stage-card:hover {
  border-color: rgba(232, 101, 10, 0.2);
  background: rgba(232, 101, 10, 0.03);
  box-shadow: 0 4px 20px rgba(232, 101, 10, 0.06);
}
.stage-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px;
}
.stage-duration, .stage-price-tag {
  font-size: 0.82rem; font-weight: 700; color: var(--primary-bright); margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.stage-card p { color: var(--text-on-dark); font-size: 0.88rem; margin-bottom: 12px; line-height: 1.7; }
.stage-card ul { list-style: none; margin-bottom: 16px; }
.stage-card li { padding: 3px 0; font-size: 0.85rem; color: var(--text-on-dark); }
.stage-card li::before { content: "— "; color: var(--primary-bright); }

/* ============ STAGE BUTTONS & DETAILS ============ */
.stage-buttons {
  display: flex; gap: 12px; margin-top: 16px;
}
.stage-buttons .btn {
  flex: 1; text-align: center;
}
.stage-summary-list {
  list-style: none; margin: 12px 0 0; padding: 0;
}
.stage-summary-list li {
  position: relative; padding: 6px 0 6px 16px;
  font-size: 0.88rem; line-height: 1.6; color: var(--text-muted-light);
}
.stage-summary-list li::before {
  content: '•'; position: absolute; left: 0; color: var(--primary);
  font-weight: 700;
}
.stage-details h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--primary); margin: 16px 0 8px;
}
.stage-details p {
  color: var(--text-muted-light);
}
.stage-details ul {
  color: var(--text-muted-light);
}
.stage-details {
  margin: 16px 0 0; padding-top: 16px;
  border-top: 1px solid rgba(232, 101, 10, 0.15);
  animation: slideDown 0.3s ease-out;
}
.stage-details.closing {
  animation: slideUp 0.3s ease-out;
}
.stage-toggle {
  transition: all 0.3s;
}
.stage-toggle.active {
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}
.stage-info {
  background: rgba(232, 101, 10, 0.06);
  border-radius: var(--radius); padding: 24px;
  border: 1px solid rgba(232, 101, 10, 0.12);
}
.stage-info p { font-size: 0.88rem; margin-bottom: 8px; color: var(--text-on-dark); }
.stage-info strong { color: var(--white); }
.stage-info p:last-child { margin-bottom: 0; }
.stage-info ul { list-style: none; margin: 8px 0; }
.stage-info li { font-size: 0.88rem; padding: 2px 0; color: var(--text-on-dark); }
.stage-info li::before { content: "📅 "; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
.about-subtitle {
  color: var(--primary-bright); font-weight: 700; font-size: 0.9rem;
  margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1.5px;
}
.about-text p { color: var(--text-on-dark); margin-bottom: 16px; font-size: 0.92rem; line-height: 1.8; }
.about-stats { display: flex; flex-direction: column; gap: 20px; }
.stat {
  background: rgba(232, 101, 10, 0.05); border: 1px solid rgba(232, 101, 10, 0.12);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.stat:hover {
  border-color: rgba(232, 101, 10, 0.25);
  background: rgba(232, 101, 10, 0.08);
}
.stat-number {
  display: block; font-family: var(--font-heading); font-size: 2rem;
  font-weight: 800; color: var(--primary-bright);
}
.stat-label { font-size: 0.82rem; color: var(--text-on-dark); margin-top: 4px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 32px 20px; text-align: center;
  text-decoration: none; color: var(--white);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: rgba(232, 101, 10, 0.25);
  background: rgba(232, 101, 10, 0.06);
  box-shadow: 0 8px 28px rgba(232, 101, 10, 0.1);
  transform: translateY(-2px);
}
.contact-icon { font-size: 1.8rem; margin-bottom: 14px; }
.contact-card h3 { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 0.82rem; color: var(--text-on-dark); }
.contact-location {
  text-align: center; color: var(--text-on-dark); font-size: 0.95rem;
  padding: 20px 0;
}

/* ============ VIDEOS ============ */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--border-light);
  transition: box-shadow 0.3s, transform 0.3s;
}
.video-card:hover {
  box-shadow: 0 12px 40px rgba(232, 101, 10, 0.1);
  transform: translateY(-2px);
}
.video-card iframe {
  width: 100%; aspect-ratio: 16/9; display: block; border: none;
}
.video-card .video-label {
  padding: 14px 18px; font-size: 0.88rem; font-weight: 600; color: var(--bg-dark);
  font-family: var(--font-heading);
}

/* ============ BON CADEAU ============ */
.bon-cadeau-main { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.bon-cadeau-card-main {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 40px 36px; backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.bon-cadeau-card-main:hover {
  border-color: rgba(232, 101, 10, 0.25);
  background: rgba(232, 101, 10, 0.04);
  box-shadow: 0 8px 32px rgba(232, 101, 10, 0.08);
}
.bon-cadeau-icon { font-size: 3rem; text-align: center; margin-bottom: 24px; }
.bon-cadeau-card-main h3 {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 16px; text-align: center;
}
.bon-cadeau-card-main > p {
  color: var(--text-on-dark); text-align: center; margin-bottom: 32px;
  font-size: 0.95rem; line-height: 1.7;
}
.bon-cadeau-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-on-dark);
}
.feature-icon { color: var(--primary-bright); font-size: 1.1rem; }
.bon-cadeau-actions { display: flex; gap: 16px; justify-content: center; }
.bon-cadeau-actions .btn { flex: 1; text-align: center; }

.bon-cadeau-process h4 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 24px; color: var(--white);
}
.process-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.process-step { display: flex; align-items: flex-start; gap: 16px; }
.step-number {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-gradient); color: var(--white);
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content h5 {
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 4px; color: var(--white);
}
.step-content p { font-size: 0.85rem; color: var(--text-on-dark); margin: 0; line-height: 1.6; }
.bon-cadeau-tip {
  background: rgba(232, 101, 10, 0.06); border-radius: var(--radius); padding: 16px;
  border: 1px solid rgba(232, 101, 10, 0.12);
}
.bon-cadeau-tip p { font-size: 0.85rem; color: var(--text-on-dark); margin: 0; }

/* BON CADEAU dans les tabs stages */
.bon-cadeau-section { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.bon-cadeau-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 32px 28px; backdrop-filter: blur(8px);
}
.bon-cadeau-card .bon-cadeau-icon { font-size: 2.2rem; margin-bottom: 20px; text-align: center; }
.bon-cadeau-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 14px; text-align: center;
}
.bon-cadeau-card > p { color: var(--text-on-dark); margin-bottom: 24px; font-size: 0.88rem; line-height: 1.7; }
.bon-cadeau-card .bon-cadeau-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.bon-cadeau-card .bon-cadeau-actions { display: flex; flex-direction: column; gap: 12px; }

.bon-cadeau-info h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  margin-bottom: 16px; color: var(--white);
}
.bon-cadeau-steps { list-style: none; margin-bottom: 20px; }
.bon-cadeau-steps li {
  padding: 6px 0; font-size: 0.85rem; color: var(--text-on-dark);
  position: relative; padding-left: 24px;
}
.bon-cadeau-steps li::before {
  content: counter(step-counter); counter-increment: step-counter;
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-bright); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.bon-cadeau-steps { counter-reset: step-counter; }
.bon-cadeau-note {
  background: rgba(232, 101, 10, 0.06); border-radius: var(--radius); padding: 14px;
  border: 1px solid rgba(232, 101, 10, 0.12);
}
.bon-cadeau-note p { font-size: 0.83rem; color: var(--text-on-dark); margin: 0; }

/* ============ FOOTER ============ */
.footer {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent 5%, var(--primary) 35%, var(--primary-light) 65%, transparent 95%) 1;
  padding: 48px 0;
  background: rgba(0,0,0,0.2);
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.5px; margin-bottom: 8px;
}
.footer-inner > p { color: var(--text-on-dark); font-size: 0.88rem; margin-bottom: 20px; }
.footer-links { display: flex; gap: 28px; justify-content: center; margin-bottom: 24px; }
.footer-links a {
  color: var(--text-on-dark); text-decoration: none; font-size: 0.88rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--primary-bright); }
.footer-copy { font-size: 0.78rem; color: var(--text-on-dark); opacity: 0.45; }

/* ============ PLANNING (Google Sheet) ============ */
.section-dark-accent {
  background: linear-gradient(180deg, var(--bg-dark-end) 0%, var(--bg-dark) 100%);
}

.planning-spinner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 48px 0; color: var(--text-on-dark); font-size: 0.9rem;
}
.planning-spinner::before {
  content: ''; width: 24px; height: 24px;
  border: 3px solid rgba(232, 101, 10, 0.2);
  border-top-color: var(--primary-bright);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.planning-error {
  text-align: center; padding: 40px 24px;
  background: rgba(232, 101, 10, 0.05);
  border: 1px solid rgba(232, 101, 10, 0.12);
  border-radius: var(--radius-lg);
}
.planning-error p { color: var(--text-on-dark); font-size: 0.9rem; margin-bottom: 8px; }
.planning-error a {
  color: var(--primary-bright); font-weight: 600; text-decoration: none;
}
.planning-error a:hover { text-decoration: underline; }

.planning-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg); border: 1px solid var(--border-dark);
}
.planning-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
}
.planning-table thead {
  background: var(--primary-gradient);
}
.planning-table th {
  padding: 14px 18px; font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 700; color: var(--white);
  text-align: left; text-transform: uppercase; letter-spacing: 0.5px;
}
.planning-table td {
  padding: 14px 18px; font-size: 0.88rem; color: var(--text-on-dark);
  border-bottom: 1px solid var(--border-dark);
}
.planning-table tbody tr { transition: background 0.2s; }
.planning-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.planning-table tbody tr:hover { background: rgba(232, 101, 10, 0.06); }
.planning-table tbody tr:last-child td { border-bottom: none; }

.badge-activity {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px;
}
.badge-parapente { background: rgba(232, 101, 10, 0.15); color: var(--primary-bright); }
.badge-speedriding { background: rgba(66, 165, 245, 0.15); color: #42A5F5; }
.badge-minivoile { background: rgba(171, 71, 188, 0.15); color: #CE93D8; }
.badge-default { background: rgba(255,255,255,0.08); color: var(--text-on-dark); }

.badge-spots {
  display: inline-block; padding: 4px 10px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700;
}
.badge-spots-available { background: rgba(67, 160, 71, 0.15); color: #66BB6A; }
.badge-spots-limited { background: rgba(255, 183, 77, 0.15); color: var(--gold); }
.badge-spots-full { background: rgba(229, 57, 53, 0.15); color: #EF5350; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: rgba(232, 101, 10, 0.03);
  border: 2px dashed rgba(232, 101, 10, 0.15);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; font-size: 2rem; color: rgba(255,255,255,0.2);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.gallery-placeholder span { font-size: 0.78rem; }
.gallery-placeholder:hover {
  border-color: var(--primary-bright);
  background: rgba(232, 101, 10, 0.06);
  color: var(--primary-light);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(11, 29, 51, 0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(232, 101, 10, 0.1);
    padding: 24px 32px; gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-content { max-width: 100%; padding: 0 20px; }
  .hero h1 { text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
  .hero-sub { text-shadow: 0 1px 10px rgba(0,0,0,0.8); color: rgba(255,255,255,0.9); font-size: 0.88rem; }
  .hero-tag { text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(11, 29, 51, 0.6) 0%,
      rgba(11, 29, 51, 0.75) 40%,
      rgba(11, 29, 51, 0.5) 100%
    ) !important;
  }
  .grid-3, .grid-2, .stage-grid, .video-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 1; }
  .nav-dropdown-menu {
    position: static; background: none; border: none;
    box-shadow: none; backdrop-filter: none; padding: 0 0 0 16px; display: block;
  }
  .nav-arrow { display: none; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 120px; }

  .section { padding: 72px 0; }
  .section-title { font-size: 2rem; }
  .section-sub { margin-bottom: 40px; }

  .tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab { white-space: nowrap; padding: 12px 18px; }

  .planning-table-wrap { border-radius: var(--radius); }
  .planning-table th, .planning-table td { padding: 12px 14px; font-size: 0.82rem; }

  .container { padding: 0 20px; }
  
  /* Responsive BON CADEAU */
  .bon-cadeau-main { grid-template-columns: 1fr; gap: 32px; }
  .bon-cadeau-features { grid-template-columns: 1fr; }
  .bon-cadeau-actions { flex-direction: column; }
  .process-steps { gap: 16px; }
  
  .bon-cadeau-section { grid-template-columns: 1fr; gap: 24px; }
  .bon-cadeau-card .bon-cadeau-actions { flex-direction: column; }
  
  .stage-buttons { flex-direction: column; }
  .stage-buttons .btn { flex: none; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}

/* Alt Tab Studio promo banner */
.ats-promo {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-top: 1px solid rgba(255, 109, 0, 0.2);
  padding: 32px 0;
  text-align: center;
}
.ats-promo-inner {
  max-width: 600px;
  margin: 0 auto;
}
.ats-promo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.ats-promo-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.ats-promo-sub strong {
  color: var(--primary-bright);
}
.ats-promo-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ NAV LOGO BLOCK ============ */
.nav-logo-block {
  display: flex; flex-direction: column; align-items: center;
  margin: 8px;
}
.nav-logo-block .nav-logo img {
  height: 65px; width: auto;
}
.nav-contact-line {
  font-size: 0.7rem; color: rgba(255,255,255,0.6) !important;
  text-decoration: none; font-weight: 600; line-height: 1.4;
}
.nav-contact-line:hover { color: var(--primary) !important; }

/* ============ PRICE CARD IMAGE ============ */
.price-card-img {
  width: 100%; height: 140px; overflow: hidden; border-radius: 10px 10px 0 0;
  margin: -20px -20px 16px -20px; width: calc(100% + 40px);
}
.price-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============ STAGE CARD IMAGE ============ */
.stage-card-img {
  width: 100%; height: 140px; overflow: hidden; border-radius: 10px 10px 0 0;
  margin: -24px -24px 16px -24px; width: calc(100% + 48px);
}
.stage-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============ PARTENAIRES GRID ============ */
.partenaires-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px; justify-items: center;
}
.partner-card {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: var(--text-dark);
  padding: 20px 16px; border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white); transition: all 0.2s;
  width: 100%; text-align: center;
}
.partner-card:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,101,10,0.1);
}
.partner-card img {
  height: 48px; width: auto; object-fit: contain; margin-bottom: 8px;
}
.partner-card span { font-size: 0.82rem; font-weight: 600; }
.partner-placeholder {
  font-size: 2rem; margin-bottom: 8px; display: block;
}

/* ============ HERO SCROLL ============ */
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ BON CADEAU CTA BANNER ============ */
.bon-cadeau-cta-banner {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-dark); color: #fff;
  border-radius: 12px; padding: 24px 28px; margin-top: 40px;
}
.bon-cadeau-cta-icon { font-size: 2.4rem; flex-shrink: 0; }
.bon-cadeau-cta-banner h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.bon-cadeau-cta-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }
.bon-cadeau-cta-banner .btn { flex-shrink: 0; margin-left: auto; white-space: nowrap; }
@media (max-width: 700px) {
  .bon-cadeau-cta-banner { flex-direction: column; text-align: center; }
  .bon-cadeau-cta-banner .btn { margin-left: 0; }
}

/* ============ PLANNING ============ */
.planning-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 24px;
}
.planning-month {
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border-light);
}
.planning-month-header {
  background: var(--bg-dark); color: #fff; padding: 12px 16px;
  font-weight: 700; font-size: 1rem; text-align: center;
}
.planning-month table {
  width: 100%; border-collapse: collapse;
}
.planning-month th {
  padding: 6px 4px; font-size: 0.7rem; color: #999;
  text-align: center; border-bottom: 1px solid #eee;
}
.planning-month td {
  padding: 5px 4px; font-size: 0.78rem; text-align: center;
  border-bottom: 1px solid #f5f5f5;
}
.planning-month td.day-num { width: 30px; font-weight: 600; }
.planning-month td.day-name { width: 24px; color: #999; }
.planning-month td.day-type {
  border-radius: 4px; font-weight: 600; font-size: 0.72rem;
  color: #fff; letter-spacing: 0.3px;
}
.planning-month td.day-type.empty { background: none; }
.planning-month td.day-type.initiation { background: #FFC107; color: #333; }
.planning-month td.day-type.progression { background: #4CAF50; }
.planning-month td.day-type.perfectionnement { background: #2196F3; }
.planning-month td.day-type.init-mini-voile { background: #FF6D00; }
.planning-month tr.has-note td.day-type {
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 3px,
    rgba(255,255,255,0.25) 3px, rgba(255,255,255,0.25) 6px
  );
}
.planning-month td.day-note {
  font-size: 0.68rem; color: #4CAF50; font-weight: 600;
  text-align: left; padding-left: 8px;
}
.planning-month tr.weekend { background: #fafafa; }
.planning-month tr.weekend td.day-name { color: #ccc; }

.planning-legend {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-top: 24px;
}
.legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: #666;
}
.legend-color {
  width: 14px; height: 14px; border-radius: 3px; display: inline-block;
}
.planning-loading {
  text-align: center; color: #999; padding: 40px 0;
}
