/* ==========================================================================
   Craig Hosking & Hosking Aviation - Premium Styling Sheet (Pure Vanilla CSS)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Brand CSS Design Tokens --- */
:root {
  --bg-obsidian: #050608;
  --bg-charcoal: #0c0e12;
  --bg-glass: rgba(12, 14, 18, 0.65);
  --bg-glass-heavy: rgba(8, 10, 12, 0.9);
  
  --gold-primary: #ffd700;
  --gold-dark: #b8860b;
  --gold-warm: #d4af37;
  --amber-soft: #ffb700;
  --amber-glow: rgba(255, 183, 0, 0.3);
  
  --text-main: #f0f2f5;
  --text-muted: #9ea4b0;
  --text-light: #ffffff;
  
  --border-gold: rgba(212, 175, 55, 0.15);
  --border-gold-hover: rgba(255, 215, 0, 0.4);
  --border-glass: rgba(255, 255, 255, 0.04);
  
  --glow-subtle: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.15);
  --glow-gold-heavy: 0 0 35px rgba(255, 215, 0, 0.3);
  
  --font-sans: 'Outfit', 'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* --- Layout Elements & Globals --- */
section {
  padding: 8rem 2rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Typography System --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-light);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 4px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-title span {
  font-weight: 300;
  font-style: italic;
  color: var(--gold-warm);
}

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

/* --- Button Styling --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-primary) 100%);
  color: var(--bg-obsidian);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-heavy);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-light);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  color: var(--gold-primary);
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(15px);
  border-color: var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  padding: 1rem 2rem;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--text-light);
  text-transform: uppercase;
}

.logo-main span {
  font-weight: 700;
  color: var(--gold-primary);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
  box-shadow: var(--glow-gold);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
#home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background-color: #030406;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/homeHero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 25s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 8, 0.4) 0%,
    rgba(5, 6, 8, 0.85) 75%,
    var(--bg-obsidian) 100%
  ),
  linear-gradient(
    to right,
    rgba(5, 6, 8, 0.9) 0%,
    rgba(5, 6, 8, 0.2) 50%,
    rgba(5, 6, 8, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  margin-top: 4rem;
}

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 5.5rem;
  line-height: 1.05;
  color: var(--text-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1.2s ease forwards;
}

.hero-title span {
  font-weight: 800;
  color: var(--text-light);
  background: linear-gradient(180deg, #ffffff 40%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitles {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  animation: fadeInUp 1.4s ease forwards;
}

.hero-subtitles span:not(:last-child)::after {
  content: '|';
  margin-left: 1.5rem;
  color: var(--gold-dark);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1.6s ease forwards;
}

/* --- Services Section --- */
#services {
  background-color: var(--bg-obsidian);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-subtle);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  margin-bottom: 2rem;
  color: var(--gold-primary);
}

.service-icon-wrapper svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

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

/* --- Camera Fleet Section --- */
#fleet {
  background-color: var(--bg-charcoal);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fleet-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--glow-subtle);
}

.fleet-visual img,
.fleet-visual video {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.fleet-visual:hover img,
.fleet-visual:hover video {
  transform: scale(1.03);
}

.fleet-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 14, 18, 0.9) 0%, rgba(12, 14, 18, 0.1) 70%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.fleet-visual-info h4 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.fleet-visual-info p {
  color: var(--gold-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.fleet-content h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.fleet-content h3 span {
  font-style: italic;
  color: var(--gold-warm);
}

.fleet-content > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.spec-item svg {
  color: var(--gold-primary);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.spec-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

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

/* Toggle Fleet Platform Buttons */
.fleet-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 0.35rem;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.fleet-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.fleet-tab-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
}

.fleet-tab-btn:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
}

.fleet-tab-btn.active {
  color: var(--bg-obsidian);
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-primary) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25), var(--glow-gold);
}

/* --- "Double Take" Interactive Widget --- */
#double-take {
  background-color: var(--bg-obsidian);
}

.double-take-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.flight-panel {
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--glow-subtle);
  position: relative;
  overflow: hidden;
}

.flight-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border-glass) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
  pointer-events: none;
}

/* The Plane Visual Box */
.plane-viewport {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.plane-container {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 190;
  position: relative;
  transition: var(--transition-bounce);
  transform-style: preserve-3d;
}

.plane-blueprint {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-bounce);
}

/* Inversion active class */
.plane-viewport.is-inverted .plane-container {
  transform: rotate(180deg);
}

.plane-viewport.is-inverted .plane-blueprint {
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.25));
}

.flight-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-dial {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 1.25rem 0.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-dial:hover {
  background: rgba(212, 175, 55, 0.02);
  border-color: var(--border-gold);
}

.dial-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.dial-value {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  transition: var(--transition-smooth);
}

/* Telemetry warning lights */
.telemetry-lights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.light-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.light-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2e3035;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.light-indicator.active .light-dot.green {
  background-color: #00ff66;
  box-shadow: 0 0 10px #00ff66;
}

.light-indicator.active .light-dot.amber {
  background-color: #ff9900;
  box-shadow: 0 0 10px #ff9900;
}

/* Master Toggle Button */
.flight-control-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.flight-toggle-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-dark);
  color: var(--gold-primary);
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-gold);
}

.flight-toggle-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-obsidian);
  box-shadow: var(--glow-gold-heavy);
  transform: scale(1.05);
}

.flight-toggle-btn.inverted-active {
  background: #ff3300;
  border-color: #ff3300;
  color: white;
  box-shadow: 0 0 25px rgba(255, 51, 0, 0.4);
}

.flight-toggle-btn.inverted-active:hover {
  filter: brightness(1.1);
}

/* Blueprint text description */
.double-take-details h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.double-take-details h3 span {
  font-style: italic;
  color: var(--gold-warm);
}

.double-take-details .description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.award-badge {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2rem;
  align-items: center;
}

.award-icon svg {
  color: var(--gold-primary);
  width: 50px;
  height: 50px;
}

.award-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.award-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Filmography Grid Section --- */
#portfolio {
  background-color: var(--bg-charcoal);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-card {
  background-color: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  height: 380px;
  box-shadow: var(--glow-subtle);
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}

/* Dynamic backdrop generator overlay */
.portfolio-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) brightness(55%);
  transition: var(--transition-smooth);
  z-index: 1;
}

.portfolio-card:hover .portfolio-backdrop {
  filter: grayscale(0%) brightness(40%);
  transform: scale(1.05);
}

.portfolio-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.4) 60%, transparent 100%);
  z-index: 2;
}

.portfolio-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 3;
  transition: var(--transition-smooth);
}

.movie-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.movie-credit {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: block;
}

.movie-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 1;
  margin-top: 0.5rem;
  transition: var(--transition-smooth);
}

/* --- Biography & Awards Section --- */
#bio {
  background-color: var(--bg-obsidian);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.bio-portrait {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--glow-subtle);
  background: var(--bg-glass-heavy);
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.bio-portrait:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.bio-img-frame {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
}

.bio-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.bio-portrait:hover .bio-profile-img {
  transform: scale(1.03);
}

.bio-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bio-text p.lead-paragraph {
  font-size: 1.2rem;
  color: var(--text-light);
  font-family: var(--font-serif);
  line-height: 1.6;
}

.bio-text p.lead-paragraph span {
  color: var(--gold-primary);
}

.bio-achievements {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.accolade-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.accolade-card:hover {
  transform: translateX(5px);
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.accolade-icon svg {
  color: var(--gold-primary);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.accolade-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

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

/* --- Contact & Booking Section --- */
#contact {
  background-color: var(--bg-charcoal);
  border-top: 1px solid var(--border-glass);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-info h3 span {
  font-style: italic;
  color: var(--gold-warm);
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.contact-text h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 1rem;
  color: var(--text-light);
}

.contact-text a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-text a:hover {
  color: var(--gold-primary);
}

/* Glassmorphic Inquiry Form */
.contact-form-container {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: var(--glow-subtle);
  position: relative;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50px;
  right: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  pointer-events: none;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 2px;
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
}

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

.form-submit-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-primary) 100%);
  color: var(--bg-obsidian);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-heavy);
  filter: brightness(1.1);
}

/* Spinner element */
.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--bg-obsidian);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Status Notifications */
.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-status.success {
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid rgba(0, 255, 102, 0.3);
  color: #00ff66;
  display: block;
}

.form-status.error {
  background: rgba(255, 51, 0, 0.08);
  border: 1px solid rgba(255, 51, 0, 0.3);
  color: #ff3300;
  display: block;
}

/* --- Footer Section --- */
footer {
  background-color: var(--bg-obsidian);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 2rem 3rem 2rem;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto 4rem auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

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

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-primary);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-link {
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.legal-link:hover {
  color: var(--gold-primary);
}

/* --- Animations Keyframes --- */
@keyframes slowZoom {
  0% { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.08) translateY(-1%); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Volcanic Survival Feature Card */
.volcano-survival-card {
  margin-top: 5rem;
  background: var(--bg-glass-heavy);
  border: 1px solid rgba(255, 69, 0, 0.15);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Fleet Logistics Card */
.logistics-callout-card {
  margin-top: 5rem;
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--glow-subtle);
  transition: var(--transition-smooth);
}

.logistics-callout-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: var(--glow-gold);
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.logistics-visual {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  border-right: 1px solid var(--border-glass);
}

.logistics-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.logistics-callout-card:hover .logistics-img {
  transform: scale(1.03);
}

.logistics-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold-primary);
  color: var(--bg-obsidian);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.logistics-text {
  padding: 3.5rem;
}

.logistics-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.logistics-text h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.logistics-text h3 span {
  font-style: italic;
  color: var(--gold-warm);
}

.logistics-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.logistics-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
}

.log-feat-item {
  display: flex;
  flex-direction: column;
}

.feat-num {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.feat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Behind the Scenes Section --- */
#bts {
  background-color: var(--bg-obsidian);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.bts-gallery-wrapper {
  position: relative;
  width: 100%;
}

.bts-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bts-card {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  background: var(--bg-charcoal);
  box-shadow: var(--glow-subtle);
  transition: var(--transition-smooth);
}

.bts-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

.bts-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.bts-card:hover .bts-img {
  transform: scale(1.05);
}

.bts-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.4) 50%, rgba(5, 6, 8, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.bts-card:hover .bts-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.bts-card-tag {
  font-size: 0.65rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bts-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.bts-card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hide navigation arrows on desktop grid layout */
.bts-nav-arrows {
  display: none;
}

/* --- Fullscreen Lightbox Modal --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 6, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--text-muted);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-gold-hover);
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

#lightbox-main-img {
  max-width: 100%;
  max-height: 65vh;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--glow-gold-heavy);
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  width: 100%;
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--glow-subtle);
}

.lightbox-tag {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.lightbox-title {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.lightbox-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
  position: absolute;
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 2rem;
}

.lightbox-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(12, 14, 18, 0.75);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  pointer-events: auto;
}

.lightbox-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.lightbox-arrow:hover {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.05);
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.lightbox-arrow.prev {
  transform: translateX(-10px);
}
.lightbox-arrow.next {
  transform: translateX(10px);
}
.lightbox-arrow.prev:hover {
  transform: translateX(-15px) scale(1.05);
}
.lightbox-arrow.next:hover {
  transform: translateX(15px) scale(1.05);
}

/* --- Responsive Adaptations (Media Queries) --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 1.5rem 2rem 1.5rem;
    margin: 0 -1.5rem;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
  }
  .services-grid::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
  }
  .service-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    padding: 2.5rem 2rem;
  }
  .volcano-survival-card {
    padding: 2.5rem;
  }
  .fleet-grid, .double-take-wrapper, .bio-grid, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .volcano-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .volcano-stats-panel {
    border-left: none !important;
    border-top: 2px solid #ff3300 !important;
    border-radius: 0 0 8px 8px !important;
  }
  .fleet-content, .double-take-details, .contact-info {
    order: -1;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Double Take Telemetry Tablet Optimizations */
  .flight-panel {
    padding: 2rem;
  }
  .flight-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Logistics Advantage Tablet Optimizations */
  .logistics-grid {
    grid-template-columns: 1fr;
  }
  .logistics-visual {
    min-height: 280px;
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }
  .logistics-text {
    padding: 2.5rem;
  }
  .logistics-features {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Behind the Scenes Tablet Carousel Overrides */
  .bts-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 1.5rem 2rem 1.5rem;
    margin: 0 -1.5rem;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
  }
  .bts-carousel::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
  }
  .bts-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    background: var(--bg-glass-heavy);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
  }
  .bts-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  .bts-card-overlay {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    background: transparent;
    padding: 1.25rem;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  /* Show navigation arrows for swipe help */
  .bts-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .bts-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }
  .bts-arrow-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
  }
  .bts-arrow-btn:hover {
    color: var(--gold-primary);
    border-color: var(--border-gold-hover);
    background: rgba(255, 255, 255, 0.05);
  }
  
  .lightbox-nav {
    padding: 0 1rem;
    width: 100%;
  }
  .lightbox-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }
  
  /* Mobile Navigation Menu Drawer */
  .nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
    padding: 5rem 2rem 1.5rem 2rem;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-main);
    letter-spacing: 3px;
    padding: 0.35rem 1rem;
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-link::after {
    display: none; /* Hide bottom line on mobile links to keep it minimal and elegant */
  }

  .nav-link.active, .nav-link:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
  }

  /* Hamburger Interactive Animation States */
  .nav-toggle {
    display: flex;
    z-index: 1001; /* Keep above the drawer background */
    position: relative;
  }

  #site-logo {
    z-index: 1001;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitles {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-subtitles span:not(:last-child)::after {
    display: none;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Double Take Telemetry Mobile-First Optimizations */
  .flight-panel {
    padding: 1.25rem;
  }
  .plane-viewport {
    height: 220px;
    margin-bottom: 1.5rem;
  }
  .plane-container {
    max-width: 220px;
  }
  .flight-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .stat-dial {
    padding: 1rem 0.25rem;
  }
  .dial-value {
    font-size: 1.2rem;
  }
  .telemetry-lights {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
  }
  .flight-control-wrapper {
    flex-direction: column;
    gap: 0.75rem;
  }
  .flight-toggle-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-align: center;
  }

  /* Mobile Stunt Services Swipe Carousel */
  .service-card {
    flex: 0 0 85%;
    padding: 2.25rem 1.5rem;
  }
  .volcano-survival-card {
    padding: 1.5rem;
  }

  /* Logistics Advantage Mobile Optimizations */
  .logistics-text {
    padding: 1.5rem;
  }
  .logistics-text h3 {
    font-size: 1.8rem;
  }
  .logistics-features {
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Behind the Scenes Mobile Swiper Overrides */
  .bts-card {
    flex: 0 0 85%;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 1.8rem;
  }
  .lightbox-arrow {
    display: none; /* Hide arrows on mobile screens to rely purely on swipe/gestures */
  }
  .lightbox-title {
    font-size: 1.2rem;
  }
  .lightbox-desc {
    font-size: 0.8rem;
  }
}

/* Custom Interactive Link Hover States */
.text-link-hover {
  position: relative;
  transition: var(--transition-smooth);
}

.text-link-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: var(--transition-smooth);
}

.text-link-hover:hover::after {
  width: 100%;
}

.text-link-hover:hover {
  filter: brightness(1.2) drop-shadow(0 0 4px currentColor);
}
