/* ═══════════════════════════════════════════════
   Oludeniz International Air Games — Sky & Sunset Design System
   ═══════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────── */

:root {
  /* Primary: Deep Sky Blue */
  --sky: #0a5e9c;
  --sky-light: #1a8cd8;
  --sky-dark: #063d66;

  /* Accent: Sunset Orange (CTA, adrenaline) */
  --sunset: #f26522;
  --sunset-light: #ff8c4c;
  --sunset-dark: #c04e15;

  /* Background: Light atmospheric */
  --cloud: #f0f5fa;
  --cloud-dark: #dde6ef;

  /* Neutrals */
  --text: #1a1a2e;
  --text-muted: #5a6577;
  --white: #ffffff;

  /* Semantic */
  --mountain: #2c3e50;
  --babadag: #4a6741;
  --danger: #e74c3c;
  --success: #27ae60;

  /* Layout */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --container-max: 1200px;
  --section-pad: clamp(48px, 8vw, 96px);
}

/* ── Reset & Base ─────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sky);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--sky-light);
}

/* ── Typography ───────────────────────────────── */

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* ── Layout ───────────────────────────────────── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--white);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* ── Buttons ──────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--sunset);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sunset-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.3);
}

.btn-secondary {
  background: var(--sky);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--sky-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 94, 156, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--sky-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--sky);
  border: 2px solid var(--sky);
}
.btn-outline-dark:hover {
  background: var(--sky);
  color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── Header / Navigation ─────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo span {
  color: var(--sunset);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  cursor: pointer;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}

.lang-current:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
  min-width: 120px;
  z-index: 100;
}

.lang-dropdown.show {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 0.85rem;
}

.lang-dropdown a:hover {
  background: var(--cloud);
  color: var(--sky);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mountain);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav a {
    font-size: 1.1rem;
    padding: 12px 16px;
  }
  .hamburger {
    display: block;
  }
}

/* ── Hero ─────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 61, 102, 0.7) 0%,
    rgba(26, 26, 46, 0.6) 60%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(242, 101, 34, 0.15);
  border: 1px solid rgba(242, 101, 34, 0.4);
  color: var(--sunset-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 40px 0 0;
}

.countdown-item {
  text-align: center;
}

.countdown-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 4px;
}

/* ── Stats Bar ────────────────────────────────── */

.stats-bar {
  background: var(--sky-dark);
  color: var(--white);
  padding: 32px 0;
}

.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Cards ────────────────────────────────────── */

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* ── Operator Card ────────────────────────────── */

.operator-card {
  display: flex;
  flex-direction: column;
}

.operator-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.operator-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.operator-rating {
  color: #f5a623;
  font-weight: 600;
}

.operator-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sky-dark);
  margin-top: auto;
  padding-top: 12px;
}

.operator-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── Schedule ─────────────────────────────────── */

.schedule-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.schedule-tab {
  padding: 10px 24px;
  border: 2px solid var(--cloud-dark);
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.schedule-tab:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.schedule-tab.active {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cloud-dark);
}

.timeline-item {
  position: relative;
  padding: 16px 0 32px 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--sky-light);
}

.timeline-item.highlight::before {
  background: var(--sunset);
  box-shadow: 0 0 0 3px var(--sunset-light);
}

.timeline-time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sky);
  margin-bottom: 4px;
}

.timeline-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.timeline-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
  background: rgba(10, 94, 156, 0.1);
  color: var(--sky);
}

/* ── Gallery ──────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  font-size: 0.85rem;
}

/* ── Lightbox ─────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* ── Forms ────────────────────────────────────── */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cloud-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sky);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-inline {
  display: flex;
  gap: 12px;
}

.form-inline .form-input {
  flex: 1;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 12px;
}

.form-message.success {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success);
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* ── Newsletter Section ───────────────────────── */

.newsletter-section {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-section p {
  opacity: 0.85;
  margin-bottom: 24px;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

/* ── FAQ / Accordion ──────────────────────────── */

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--cloud);
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ── Footer ───────────────────────────────────── */

.footer {
  background: var(--mountain);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--sunset-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--sunset);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--sunset-light);
}

.lycianway-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(74, 103, 65, 0.2);
  color: #8ec077;
  font-size: 0.8rem;
  font-weight: 500;
}

.lycianway-cross:hover {
  background: rgba(74, 103, 65, 0.3);
  color: #a5d494;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Cross-Promo Banner ───────────────────────── */

.cross-promo {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.cross-promo h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.cross-promo p {
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 20px;
}

/* ── Page Header ──────────────────────────────── */

.page-header {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--mountain) 100%);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Info Cards / Feature List ────────────────── */

.info-card {
  padding: 32px;
  text-align: center;
}

.info-card .card-icon {
  font-size: 2.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--cloud-dark);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Sponsor Logos ────────────────────────────── */

.sponsor-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 24px 0;
}

.sponsor-row img {
  height: 48px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.sponsor-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── Scroll Reveal ────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utilities ────────────────────────────────── */

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-1 {
  gap: 8px;
}
.gap-2 {
  gap: 16px;
}
.gap-3 {
  gap: 24px;
}

.hidden {
  display: none !important;
}

/* ── Loading ──────────────────────────────────── */

.loading {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--cloud-dark);
  border-top-color: var(--sky);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Empty State ──────────────────────────────── */

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

/* ── Operator Filters ────────────────────────── */

.operator-filters {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  padding: 10px 14px;
  border: 2px solid var(--cloud-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 160px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--sky);
}

.filter-results {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: auto;
  align-self: flex-end;
  padding-bottom: 10px;
}

/* ── Operator Card Extras ────────────────────── */

.operator-langs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.operator-company {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.review-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Gallery Extras ──────────────────────────── */

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  pointer-events: none;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-play {
  background: var(--sunset);
}

.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ── Lightbox Extras ─────────────────────────── */

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
  max-width: 600px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Accordion (About FAQ) ───────────────────── */

.accordion-trigger {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover {
  background: var(--cloud);
}

.accordion-trigger .accordion-icon {
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-content {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content a {
  color: var(--sky);
  font-weight: 500;
}

/* ── Contact Form ────────────────────────────── */

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cloud-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .operator-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-results {
    margin-left: 0;
  }
}

/* ── Legal Content (Privacy, Terms) ──────────── */

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--sky-dark);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 12px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content a {
  color: var(--sky);
  font-weight: 500;
}
