/* ============================================================
   Eagle Paragliding Albania — Styles
   Color palette: Deep navy + warm sunset orange accent
   Typography: Bebas Neue (display) + Inter (body)
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --navy: #0B1120;
  --navy-light: #131B2E;
  --navy-mid: #1A2440;
  --slate: #94A3B8;
  --slate-light: #CBD5E1;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-light: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.25);
  --sky-deep: #0369A1;
  --sky-mid: #0EA5E9;
  --ionian: #06B6D4;
  --success: #10B981;
  --error: #EF4444;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; position: relative; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label.center { text-align: center; }
.section-label.light { color: var(--accent); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 2rem;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 92px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
.navbar.scrolled {
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  height: 84px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
}
.nav-logo-icon { width: 76px; height: 76px; margin-top: 6px; color: var(--accent); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.lang-toggle select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  color: var(--white);
  height: 100%;
  padding: 0 42px 0 16px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.lang-toggle select:hover {
  background: rgba(255,255,255,0.04);
}

.lang-toggle::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.lang-toggle select option {
  background: var(--navy);
  color: var(--white);
}

.nav-cta {
  display: inline-flex; padding: 8px 20px;
  background: var(--accent); color: var(--navy);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 6px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
          to bottom,
          rgba(11,17,32,0.55) 0%,
          rgba(11,17,32,0.38) 40%,
          rgba(11,17,32,0.72) 80%,
          rgba(11,17,32,0.97) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: var(--white);
  padding: 6rem 2rem 4rem; max-width: 800px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px; margin-bottom: 1.5rem;
  background: var(--accent-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
  letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95; letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--slate-light);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.btn-accent {
  background: var(--accent); color: var(--navy);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 1px;
  color: var(--white);
}
.hero-stat span {
  font-size: 0.75rem; color: var(--slate);
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.hero-stat-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,0.12);
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== ABOUT ===== */
.about { background: var(--off-white); padding: 7rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-text {
  font-size: 1.05rem; color: #475569;
  line-height: 1.85; margin-bottom: 2rem;
}
.about-features { display: flex; flex-direction: column; gap: 0.85rem; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
}

.about-right { position: relative; }
.about-photo-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-main img {
  width: 100%; height: 400px;
  object-fit: cover; object-position: center;
  display: block;
}

.about-photo-small {
  position: absolute; bottom: -30px; left: -30px;
  width: 200px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-photo-small img {
  width: 100%; height: 160px;
  object-fit: cover; object-position: center;
  display: block;
}
.about-experience {
  position: absolute; top: -20px; right: -20px;
  background: var(--accent);
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.exp-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; line-height: 1;
}
.exp-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--navy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
  transparent 0%, rgba(245,158,11,0.03) 50%, transparent 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
  position: relative;
}
.stat { position: relative; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--white);
  line-height: 1; display: inline;
}
.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--accent);
  display: inline;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--slate); text-transform: uppercase;
  letter-spacing: 2px; margin-top: 0.5rem;
}

/* ===== SERVICES ===== */
.services { padding: 7rem 0; background: var(--white); }
.packages-note {
  max-width: 760px;
  margin: -0.75rem auto 2rem;
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.7;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 1rem;
}
.service-card {
  position: relative;
  background: var(--off-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card.featured .service-icon { color: var(--accent); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: var(--slate); }
.service-card.featured .service-meta span { color: var(--accent); }
.service-card.featured:hover { border-color: var(--accent); }

.service-badge {
  position: absolute; top: -10px; right: 20px;
  background: var(--accent); color: var(--navy);
  font-size: 0.7rem; font-weight: 800;
  padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--sky-deep);
}
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 1px;
  color: var(--navy); margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.92rem; color: #64748B; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-meta {
  display: flex; gap: 1rem;
  padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.06);
}
.service-card.featured .service-meta { border-top-color: rgba(255,255,255,0.1); }
.service-meta span {
  font-size: 0.8rem; font-weight: 700; color: var(--sky-deep);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ===== SERVICE PRICING ===== */
.service-price {
  margin-bottom: 1.25rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.price-from {
  font-size: 0.75rem; font-weight: 600; color: var(--slate);
  text-transform: uppercase; letter-spacing: 1px;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 1px;
  color: var(--navy);
  margin: 0 4px;
}
.price-per {
  font-size: 0.8rem; font-weight: 500; color: var(--slate);
}
.service-card.featured .price-from { color: var(--slate); }
.service-card.featured .price-amount { color: var(--accent); }
.service-card.featured .price-per { color: var(--slate); }
.service-card.featured .service-price {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 7rem 0; background: var(--white); }
.steps-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin-top: 1rem;
}
.step {
  flex: 1; max-width: 240px;
  text-align: center; padding: 0 1rem;
  position: relative;
}
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; color: var(--accent);
  letter-spacing: 2px; margin-bottom: 0.75rem;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 1px;
  color: var(--navy); margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.88rem; color: #64748B; line-height: 1.65;
}
.step-connector {
  display: flex; align-items: center;
  padding-top: 2.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 7rem 0; background: var(--navy); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-label { color: var(--accent); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem; letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.95rem; color: var(--slate-light);
  line-height: 1.75; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.testimonial-author strong {
  display: block; color: var(--white);
  font-size: 0.9rem;
}
.testimonial-author span {
  font-size: 0.8rem; color: var(--slate);
}

/* ===== TEAM ===== */
.team {
  padding: 7rem 0;
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--off-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.team-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--navy);
}
.team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.team-meta {
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 0.35rem;
}
.team-desc {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #64748B;
}

/* ===== FAQ ===== */
.faq { padding: 7rem 0; background: var(--off-white); }
.faq-list {
  max-width: 720px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #E2E8F0;
}
.faq-item:first-child {
  border-top: 1px solid #E2E8F0;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  background: none; border: none;
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--slate);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem; color: #64748B;
  line-height: 1.75;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 7rem 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,0.85), transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ===== VIDEOS ===== */
.videos {
  padding: 7rem 0;
  background: var(--white);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #000;
}
.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  max-height: 360px;
}

/* ===== BOOKING ===== */
.booking {
  position: relative; overflow: hidden;
  padding: 7rem 0;
  background: var(--navy);
}
.booking-bg {
  position: absolute; inset: 0; z-index: 0;
}
.booking-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.booking-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
  rgba(11,17,32,0.92),
  rgba(11,17,32,0.85)
  );
}
.booking-container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.booking-desc {
  color: var(--slate); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 2rem;
}
.booking-info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--slate-light);
}

.booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600; margin-bottom: 6px;
  font-size: 0.85rem; color: var(--slate-light);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), background var(--transition);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate); }
.form-group select option { background: var(--navy); color: var(--white); }

.form-submit {
  width: 100%;
  padding: 16px;
  border: none; border-radius: 8px;
  background: var(--accent); color: var(--navy);
  font-weight: 800; font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 1px;
}
.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.form-submit:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}

.form-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
  padding: 12px 16px; border-radius: 8px;
  margin-bottom: 1rem; font-size: 0.88rem;
  display: none;
}
.form-error.visible { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.form-success.visible { display: flex; }
.success-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 42px;
  height: 42px;
  display: block;
  stroke: var(--accent);
}
.form-success p {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact { padding: 7rem 0; background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: var(--off-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.contact-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.contact-icon.instagram { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.contact-icon.facebook { background: rgba(24, 119, 242, 0.12); color: #1877F2; }
.contact-icon.location { background: var(--accent-light); color: var(--accent); }
.contact-icon.hours { background: rgba(14, 165, 233, 0.1); color: var(--sky-mid); }

.contact-card h3 {
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.4rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.contact-card p {
  font-size: 0.92rem; color: #475569; font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 3px;
  margin-bottom: 0.75rem;
}
.footer-logo-icon { width: 22px; height: 22px; color: var(--accent); }
.footer-desc {
  font-size: 0.88rem; color: var(--slate); line-height: 1.7;
}
.footer-nav {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.88rem; color: var(--slate); font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }
.footer-contact {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--slate); font-weight: 500;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--accent); }
.footer-hours p {
  font-size: 0.88rem; color: var(--slate);
}
.footer-hours-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 1px;
  color: var(--white); margin: 0.25rem 0;
}
.footer-season {
  font-size: 0.8rem; color: var(--accent);
  font-weight: 600; margin-top: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: whatsappPulse 3s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { max-width: 480px; margin: 0 auto; }
  .booking-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .steps-grid { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .step-connector { display: none; }
  .step { max-width: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }

  .navbar { padding: 0 1.25rem; height: 84px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 84px; left: 0; right: 0;
    background: rgba(11,17,32,0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 5rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-stats { flex-direction: row; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .hero-stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 1rem auto 0; }
  .videos-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

  .booking-container { grid-template-columns: 1fr; }
  .booking-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-nav { align-items: center; }
  .footer-contact { align-items: center; }
  .footer-contact a { justify-content: center; }

  .about-photo-small { display: none; }
  .about-experience { top: auto; bottom: -20px; right: 10px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 0.8rem; }
  .hero-stat strong { font-size: 1.4rem; }
  .stat-number { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}
