@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
  /* Color Palette - Derived from IndyVids.com Wix branding */
  --bg-primary: #060e1a;       /* Deep Obsidian Navy */
  --bg-secondary: #0a1a32;     /* Dark Slate Blue */
  --bg-tertiary: #040912;      /* Midnight Black */
  
  --primary: #437fda;          /* Vibrant Cornflower Blue */
  --secondary: #316783;        /* Slate / Steel Blue */
  --accent: #f9b414;           /* Warm Cinema Gold */
  --accent-glow: rgba(249, 180, 20, 0.15);
  --primary-glow: rgba(67, 127, 218, 0.25);
  
  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #8fa5c2;
  --text-dim: #546b8c;
  
  /* Borders and Cards */
  --border-glass: rgba(67, 127, 218, 0.12);
  --border-glass-active: rgba(249, 180, 20, 0.3);
  --bg-glass: rgba(10, 26, 50, 0.45);
  --bg-glass-heavy: rgba(6, 14, 26, 0.85);
  
  /* Fonts */
  --font-cinematic: 'Syne', sans-serif;
  --font-tech: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Timing */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --container-width: 1280px;
}

/* ==========================================================================
   Resets & Globals
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

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

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

/* Custom Selection */
::selection {
  background: var(--primary-glow);
  color: var(--text-main);
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cinematic);
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 70%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
  border: 1px solid rgba(249, 180, 20, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  background: var(--accent-glow);
}

/* ==========================================================================
   Custom Custom Cursor (Only on Desktop)
   ========================================================================== */
.custom-cursor-dot,
.custom-cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
}

body.cursor-active .custom-cursor-dot,
body.cursor-active .custom-cursor-outline {
  opacity: 1;
}

body.cursor-hovering .custom-cursor-outline {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: var(--accent);
  background-color: rgba(249, 180, 20, 0.05);
}

body.cursor-hovering .custom-cursor-dot {
  transform: translate(-50%, -50%) scale(0.5);
}

/* Hide on mobile devices */
@media (max-width: 1024px) {
  .custom-cursor-dot,
  .custom-cursor-outline {
    display: none !important;
  }
}

/* ==========================================================================
   Interactive Layout Elements (Glassmorphism)
   ========================================================================== */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-glass-active);
  box-shadow: 0 10px 30px -10px rgba(4, 9, 18, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-main);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 15px rgba(67, 127, 218, 0.2);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(249, 180, 20, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--bg-primary);
  border: 1px solid var(--accent);
  box-shadow: 0 4px 15px rgba(249, 180, 20, 0.2);
}

.btn-accent:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(249, 180, 20, 0.1);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navigation Header
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.8rem 2rem;
  background: rgba(6, 14, 26, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-cinematic);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

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

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

.nav-link {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

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

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

.badge-107 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--accent);
  border: 1px solid rgba(249, 180, 20, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background: var(--accent-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section with Cinematic Background
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Load Vimeo background and hide control bar */
.hero-video-container iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.22; /* Dark ambient loop */
  filter: saturate(0.6) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 14, 26, 0.4) 0%, var(--bg-primary) 85%);
  z-index: 2;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.emmy-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--accent);
  background: rgba(249, 180, 20, 0.08);
  border: 1px solid rgba(249, 180, 20, 0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(249, 180, 20, 0.1);
    border-color: rgba(249, 180, 20, 0.25);
  }
  100% {
    box-shadow: 0 0 15px rgba(249, 180, 20, 0.3);
    border-color: rgba(249, 180, 20, 0.6);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--accent);
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
section.py-section {
  padding: 7rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0 auto;
}

/* ==========================================================================
   Interactive Portfolio
   ========================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  background: rgba(10, 26, 50, 0.3);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--text-main);
  background: rgba(67, 127, 218, 0.05);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(67, 127, 218, 0.25);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: var(--transition-smooth);
}

.portfolio-thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Overlay color filter */
.portfolio-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 14, 26, 0.9) 0%, rgba(10, 26, 50, 0.2) 60%, rgba(6, 14, 26, 0) 100%);
  transition: var(--transition-smooth);
}

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

.portfolio-details h3 {
  font-size: 1.3rem;
  font-family: var(--font-tech);
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-tag {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.play-action {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--text-main);
}

.play-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  box-shadow: 0 0 10px rgba(249, 180, 20, 0.4);
  transition: var(--transition-fast);
}

/* Hover Mechanics */
.portfolio-item:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(4, 9, 18, 0.6);
  transform: translateY(-4px);
}

.portfolio-item:hover .portfolio-thumbnail {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-details {
  transform: translateY(-5px);
}

.portfolio-item:hover .portfolio-meta {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-item:hover .play-icon-circle {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(249, 180, 20, 0.7);
}

/* Grid Filter Animation classes */
.portfolio-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.85);
}

/* ==========================================================================
   Drone Section (Part 107 Certified)
   ========================================================================== */
.drone-section-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.drone-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.drone-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.drone-title span {
  color: var(--accent);
}

.drone-desc {
  margin-bottom: 2rem;
}

.drone-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.drone-feat-card {
  padding: 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
}

.drone-feat-card h4 {
  font-family: var(--font-tech);
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drone-feat-card h4 svg {
  color: var(--accent);
}

.drone-feat-card p {
  font-size: 0.85rem;
}

/* Interactive FAA Certification Graphics */
.drone-graphics {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.cert-badge-large {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--bg-glass-heavy);
  border: 2px dashed var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 0 40px var(--accent-glow);
  animation: rotate-dashed 40s linear infinite;
}

.cert-badge-content {
  /* Counter-rotate badge content so text stays upright */
  animation: rotate-content 40s linear infinite reverse;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cert-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  animation: float-drone 4s ease-in-out infinite;
}

.cert-badge-large h3 {
  font-family: var(--font-tech);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.cert-badge-large p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}

.sonar-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(67, 127, 218, 0.15);
  animation: sonar-pulse 6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 0;
  z-index: 1;
}

.sonar-circle-1 { width: 340px; height: 340px; animation-delay: 0s; }
.sonar-circle-2 { width: 440px; height: 440px; animation-delay: 2s; }
.sonar-circle-3 { width: 540px; height: 540px; animation-delay: 4s; }

@keyframes rotate-dashed {
  100% { transform: rotate(360deg); }
}

@keyframes rotate-content {
  100% { transform: rotate(360deg); }
}

@keyframes float-drone {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes sonar-pulse {
  0% { transform: scale(0.6); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* ==========================================================================
   Services & Pricing Section
   ========================================================================== */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.service-card.featured {
  border-color: rgba(249, 180, 20, 0.25);
  background: radial-gradient(circle at top right, rgba(249, 180, 20, 0.03), transparent), var(--bg-glass);
}

.popular-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--bg-primary);
  background-color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-family: var(--font-cinematic);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-price span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

.service-features-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-features-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-features-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.service-card.featured .service-features-list li svg {
  color: var(--accent);
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ==========================================================================
   Founder Credentials & Stats Section
   ========================================================================== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.about-img-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 60%);
}

.about-credentials-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 1.5rem;
  max-width: 250px;
}

.about-credentials-box h4 {
  font-family: var(--font-tech);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-credentials-box p {
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 500;
}

.about-info h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-info h2 span {
  color: var(--primary);
}

.about-bio {
  margin-bottom: 2.5rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-cinematic);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Interactive Intake Portal (Contact Form)
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

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

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  font-size: 1.1rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-badge-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.inquiry-form-panel {
  padding: 3rem 2.5rem;
}

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

.form-full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary);
  background-color: rgba(67, 127, 218, 0.03);
  box-shadow: 0 0 10px rgba(67, 127, 218, 0.1);
}

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

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fa5c2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  cursor: pointer;
}

.form-submit-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-status {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.form-status.success {
  opacity: 1;
  color: #10b981;
}

.form-status.error {
  opacity: 1;
  color: #ef4444;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  border-top: 1px solid var(--border-glass);
  background: var(--bg-tertiary);
  padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links-col h4 {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  background-color: var(--accent-glow);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-tech);
}

.footer-bottom a {
  color: var(--text-dim);
  text-decoration: none;
}

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

/* ==========================================================================
   Full Screen Lightbox Modal (Video Playback)
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(4, 9, 18, 0.95);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

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

.lightbox-container {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.lightbox-modal.active .lightbox-container {
  transform: scale(1);
}

.lightbox-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1.2rem;
}

.lightbox-close:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: rotate(90deg);
}

/* ==========================================================================
   Widescreen Showreel & Widescreen Cinema styles
   ========================================================================== */
.showreel-cinema-frame {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
  transform-style: preserve-3d;
}

.showreel-cinema-frame:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 25px 60px -15px rgba(249, 180, 20, 0.2) !important;
}

.showreel-cinema-frame:hover .showreel-thumbnail {
  transform: scale(1.05);
}

.showreel-cinema-frame:hover .showreel-play-btn {
  transform: scale(1.15) !important;
  box-shadow: 0 0 50px var(--accent) !important;
  background-color: #ffffff !important;
  color: var(--bg-primary) !important;
}

/* ==========================================================================
   CSS iPhone Mockup styles
   ========================================================================== */
.iphone-container {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
  transform-style: preserve-3d;
  background-color: #040912;
}

.iphone-screen iframe {
  border: none;
  pointer-events: none; /* Let clicks pass through, click to reveal lightbox */
}

/* Responsive overrides for showcases */
@media (max-width: 1024px) {
  .vertical-showcase-container {
    grid-template-columns: 1fr !important;
    gap: 3.5rem !important;
    text-align: center;
  }
  
  .iphone-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .iphone-text-side div {
    text-align: left;
  }
}

/* ==========================================================================
   Scroll-Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers for animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  section.py-section {
    padding: 5rem 1.5rem;
  }
  
  .drone-section-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  header {
    padding: 1.2rem 1.5rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile behavior */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-glass);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .nav-right {
    display: none; /* Hide badges/CTAs on smaller headers */
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Mobile spacing & sizing fixes to eliminate giant empty padding and margins */
  section.py-section {
    padding: 2.25rem 1.25rem !important; /* Shrunk from 3rem to achieve highly compact mobile spacing */
  }

  .section-header {
    margin-bottom: 1.5rem !important; /* Shrunk from 2rem to keep headers tight to content */
  }

  .portfolio-filters {
    margin-bottom: 1.5rem !important; /* Forces the category filters closer to the grid, eliminating large gaps */
  }

  .glass-panel, .inquiry-form-panel {
    padding: 1.75rem 1.25rem !important; /* Stops card contents from feeling squeezed horizontally */
  }

  .vertical-showcase-container, .contact-section-container, .contact-container, .about-container {
    gap: 2rem !important; /* Tightens grid gaps between items */
  }

  /* Force brand centerpiece widescreen to play taller (16:9) on mobile, avoiding content overflow */
  .showreel-cinema-frame {
    aspect-ratio: 16 / 9 !important;
  }

  .showreel-play-btn {
    width: 68px !important;
    height: 68px !important;
    margin-bottom: 0.75rem !important;
  }

  .showreel-play-overlay h3 {
    font-size: 1.15rem !important;
  }

  .showreel-play-overlay span {
    font-size: 0.75rem !important;
  }

  /* Bypasses scroll reveal animation fades/hides strictly on mobile to avoid layout loading delays and blank spaces */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hero Section Responsiveness */
  .hero {
    height: auto !important;
    min-height: auto !important;
    padding: 7rem 1.25rem 4rem 1.25rem !important; /* Gracefully clears the sticky header menu */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: center;
    width: 100%;
  }

  /* Mobile Typography Scale */
  h1, .hero h1 {
    font-size: clamp(2rem, 7vw, 2.5rem) !important;
    line-height: 1.15 !important;
  }

  h2, .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 1.85rem) !important;
    line-height: 1.2 !important;
  }

  h3 {
    font-size: clamp(1.15rem, 4vw, 1.35rem) !important;
  }

  /* Additional section layouts */
  .drone-section-container {
    gap: 2rem !important;
  }

  /* Weddings page inner layout adjustments */
  .wedding-philosophy div, .contact-section-container {
    grid-template-columns: 1fr !important;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .inquiry-form-panel {
    padding: 2rem 1.5rem;
  }
  
  .form-submit-row {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
  
  .form-submit-row .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Wedding Videography Packages & Add-ons (Premium Layouts)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-width);
  margin: 3rem auto 0 auto;
  padding: 0 2rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  border-color: rgba(67, 127, 218, 0.35);
  box-shadow: 0 15px 45px rgba(67, 127, 218, 0.08);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(249, 180, 20, 0.1);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  box-shadow: 0 0 50px rgba(249, 180, 20, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(249, 180, 20, 0.3);
}

.pricing-card-header h3 {
  font-family: var(--font-cinematic);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin: 1.5rem 0;
}

.price-container .price-start {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}

.price-container .currency {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-right: 0.15rem;
}

.price-container .price-value {
  font-family: var(--font-tech);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pricing-features li strong {
  color: var(--text-main);
}

.pricing-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.pricing-action {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Add-ons styling */
.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.add-on-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
  gap: 1.5rem;
}

.add-on-card:hover {
  border-color: rgba(67, 127, 218, 0.25);
  transform: translateY(-3px);
}

.add-on-card h4 {
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.add-on-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.add-on-price {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.add-on-price span {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 400;
}

/* Responsive Pricing Breakpoints */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    gap: 2.5rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .add-ons-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    gap: 1.25rem;
  }
}

/* Gondola Header Badge */
.gondola-header-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: auto;
  padding: 0 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 0.75rem;
  transition: var(--transition-smooth);
}

.gondola-header-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(249, 180, 20, 0.25);
  transform: translateY(-2px);
}

.gondola-logo-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Adjust nav-right in mobile */
@media (max-width: 768px) {
  .gondola-header-badge {
    height: 32px;
    padding: 0 0.5rem;
    margin-right: 0.5rem;
  }
  .gondola-logo-img {
    height: 16px;
  }
}
