/* =========================================== */
/* JFSN PORTFOLIO - CONTACT PAGE BUNDLE */
/* Generated: 2025-12-03T16:50:04.196Z */
/* Combines 1 CSS files into one optimized bundle */
/* =========================================== */


/* =========================================== */
/* assets/css/contact-page-styles.css */
/* =========================================== */

/* =========================================== */
/* CONTACT PAGE - COMPLETE STYLES */
/* Extracted from contact.html inline styles */
/* =========================================== */

/* Bold Typography */
:root {
  --bs-font-weight-bold: 800;
  --bs-heading-font-weight: 900;
}

h1, .h1 { font-weight: 900; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.04em; }
h2, .h2 { font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h3, .h3 { font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.5rem); letter-spacing: -0.02em; }

body { color: #1a202c; }
[data-bs-theme="dark"] body { color: #e5e7eb; }

/* =========================================== */
/* SIMPLIFIED NAVBAR */
/* =========================================== */

.editorial-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.7); /* Light background */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 70px;
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Google Material elevation */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  animation: navbarSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar slide-in animation on page load */
@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.editorial-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  height: 64px;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
}

[data-bs-theme="dark"] .editorial-navbar {
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .editorial-navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.editorial-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 100%;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-navbar.scrolled .editorial-navbar-content {
  padding: 0.875rem 2rem;
}

.editorial-navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  height: 100%;
}

.editorial-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a202c;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
}

/* Logo pulse animation on page load */
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.editorial-navbar-brand:hover {
  color: var(--bs-primary);
  transform: translateX(2px);
}

.editorial-navbar-brand img {
  filter: brightness(0);
  height: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoPulse 0.6s ease-out 0.3s;
}

.editorial-navbar-brand:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.editorial-navbar-brand:active {
  transform: translateX(2px) scale(0.98);
}

/* Ripple effect on brand click */
.editorial-navbar-brand::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-navbar-brand:active::after {
  width: 100px;
  height: 100px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

[data-bs-theme="dark"] .editorial-navbar-brand {
  color: #e2e8f0;
}

[data-bs-theme="dark"] .editorial-navbar-brand:hover {
  color: #ffffff;
}

[data-bs-theme="dark"] .editorial-navbar-brand img {
  filter: brightness(0) invert(1);
}

.editorial-navbar-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10001;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-navbar-toggle:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.05);
}

.editorial-navbar-toggle:active {
  transform: scale(0.95);
  background: rgba(99, 102, 241, 0.2);
}

/* Ripple effect on toggle */
.editorial-navbar-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-navbar-toggle:active::before {
  width: 60px;
  height: 60px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.editorial-navbar-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  position: relative;
  z-index: 1;
}

.editorial-navbar-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a202c;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  border-radius: 2px;
}

.editorial-navbar-toggle:hover .editorial-navbar-toggle-icon span {
  background: #6366f1;
  box-shadow: 0 0 4px rgba(99, 102, 241, 0.4);
}

[data-bs-theme="dark"] .editorial-navbar-toggle-icon span {
  background: #e2e8f0;
}

[data-bs-theme="dark"] .editorial-navbar-toggle:hover .editorial-navbar-toggle-icon span {
  background: #ffffff;
}

.editorial-navbar-toggle.active .editorial-navbar-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #6366f1;
}

.editorial-navbar-toggle.active .editorial-navbar-toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.editorial-navbar-toggle.active .editorial-navbar-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #6366f1;
}

[data-bs-theme="dark"] .editorial-navbar-toggle.active .editorial-navbar-toggle-icon span {
  background: #ffffff;
}

/* Overlay - Separate Div */
.editorial-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}

.editorial-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Overlay content slide-in animation */
@keyframes overlayContentSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editorial-nav-overlay-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  max-width: 100%;
  box-sizing: border-box;
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.editorial-nav-overlay:not(.active) .editorial-nav-overlay-content {
  animation: none;
}

/* Desktop: Center content with max-width */
@media (min-width: 1025px) {
  .editorial-nav-overlay-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
  }
  
  .editorial-nav-overlay-menu {
    max-width: 800px;
    margin: 0 auto;
  }
}

.editorial-nav-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-10px);
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.editorial-nav-overlay.active .editorial-nav-overlay-header {
  opacity: 1;
  transform: translateY(0);
}

.editorial-nav-overlay-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
  position: relative;
}

.editorial-nav-overlay-brand:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.editorial-nav-overlay-brand:active {
  transform: translateX(4px) scale(0.98);
}

.editorial-nav-overlay-brand img {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-nav-overlay-brand:hover img {
  transform: scale(1.1) rotate(-5deg);
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.editorial-nav-overlay-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
}

.editorial-nav-overlay-close:hover {
  transform: rotate(90deg) scale(1.1);
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
}

.editorial-nav-overlay-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Ripple effect on close button */
.editorial-nav-overlay-close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-nav-overlay-close:active::before {
  width: 60px;
  height: 60px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.editorial-nav-overlay-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.editorial-nav-overlay.active .editorial-nav-overlay-menu {
  opacity: 1;
  transform: translateY(0);
}

.editorial-nav-overlay-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 3.5rem; /* Fixed size for desktop */
  font-weight: 700;
  padding: 1.25rem 0; /* Increased from 1rem */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid transparent;
  line-height: 1.2;
  letter-spacing: -0.02em; /* Tighter letter spacing for large text */
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: navLinkSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Staggered delay for each nav link */
.editorial-nav-link:nth-child(1) { animation-delay: 0.4s; }
.editorial-nav-link:nth-child(2) { animation-delay: 0.5s; }
.editorial-nav-link:nth-child(3) { animation-delay: 0.6s; }
.editorial-nav-link:nth-child(4) { animation-delay: 0.7s; }
.editorial-nav-link:nth-child(5) { animation-delay: 0.8s; }

@keyframes navLinkSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.editorial-nav-overlay:not(.active) .editorial-nav-link {
  animation: none;
  opacity: 0;
  transform: translateX(-30px);
}

/* Underline animation on hover */
.editorial-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

.editorial-nav-link:hover {
  color: transparent;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: #6366f1;
  transform: translateX(24px);
  padding-left: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.editorial-nav-link.active {
  color: transparent !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  border-bottom-color: #6366f1 !important;
  border-bottom-width: 3px !important;
  transform: translateX(24px);
  padding-left: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
}

/* Pulse animation for active link */
@keyframes activeLinkPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6)); }
  50% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.9)); }
}

.editorial-nav-link.active {
  animation: navLinkSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both, activeLinkPulse 2s ease-in-out infinite 1s;
}

/* Ensure active state is always visible, even when hovering other items */
.editorial-nav-link.active:hover {
  color: transparent !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  border-bottom-color: #6366f1 !important;
  border-bottom-width: 3px !important;
  filter: drop-shadow(0 0 16px rgba(99, 102, 241, 0.8));
}

.editorial-nav-overlay-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .editorial-nav-link {
    font-size: 3rem;
  }
  
  .editorial-nav-overlay-content {
    padding: 2rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .editorial-navbar {
    height: 60px;
    /* Safe area insets for iOS devices */
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    /* Optimize backdrop-filter performance on mobile */
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
  }
  
  .editorial-navbar-content {
    padding: 0.75rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }
  
  .editorial-navbar-brand {
    font-size: 1rem;
    min-height: 44px; /* WCAG AAA touch target */
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .editorial-navbar-brand img {
    height: 24px;
  }
  
  .editorial-navbar-toggle {
    min-width: 44px; /* WCAG AAA touch target */
    min-height: 44px;
    padding: 0.5rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .editorial-nav-overlay {
    /* Safe area insets for overlay */
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    /* Optimize backdrop-filter performance */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .editorial-nav-overlay-content {
    padding: 1.5rem;
    padding-top: max(1.5rem, calc(1.5rem + env(safe-area-inset-top, 0)));
    padding-bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom, 0)));
    padding-left: max(1.5rem, calc(1.5rem + env(safe-area-inset-left, 0)));
    padding-right: max(1.5rem, calc(1.5rem + env(safe-area-inset-right, 0)));
  }
  
  .editorial-nav-overlay-close {
    min-width: 44px; /* WCAG AAA touch target */
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .editorial-nav-link {
    font-size: clamp(1.5rem, 8vw, 2.5rem); /* Only use vw on mobile */
    min-height: 60px; /* Larger touch target for links */
    padding: 1rem 0;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }
  
  body {
    padding-top: calc(70px + env(safe-area-inset-top, 0));
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .editorial-navbar {
    height: 56px;
  }
  
  .editorial-nav-overlay-content {
    padding: 1rem;
  }
  
  .editorial-nav-link {
    font-size: clamp(1.25rem, 6vw, 2rem);
    min-height: 52px;
    padding: 0.75rem 0;
  }
  
  body {
    padding-top: calc(56px + env(safe-area-inset-top, 0));
  }
}

/* High DPI displays - optimize rendering */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .editorial-navbar-toggle-icon span {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .editorial-navbar-toggle-icon span,
  .editorial-nav-link,
  .editorial-nav-overlay {
    transition: none !important;
  }
  
  .editorial-nav-link:hover {
    transform: none !important;
  }
}

/* Hero Section */
.contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  margin-top: 0;
}

/* Ensure scrolling works */
html {
  overflow-y: scroll;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  padding-top: 70px; /* Space for fixed navbar */
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../artworks/art1005.avif') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Hero title stays black */
.contact-hero-content h1 {
  color: #000 !important;
}

/* Hero subtitle/description is white */
.contact-hero-content p,
.contact-hero-content .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* =========================================== */
/* CONTACT PAGE DRONE ANIMATIONS - CONVERGENCE PATTERN */
/* =========================================== */
.contact-drone-squadron {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.contact-drone-squadron.loaded {
  opacity: 1;
  visibility: visible;
}

.contact-drone {
  position: absolute;
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.9));
  transition: transform 0.3s ease;
  pointer-events: all;
  will-change: transform;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .contact-drone-squadron,
  .contact-drone,
  .contact-drone-hub,
  .contact-drone-propeller,
  .contact-drone-trail {
    animation: none !important;
    transition: none !important;
  }
  .contact-drone-squadron {
    opacity: 0;
    visibility: hidden;
  }
}

.contact-drone:hover {
  transform: scale(1.3) rotate(15deg) !important;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
}

.contact-drone-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-drone-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.9),
              inset 0 0 10px rgba(255, 255, 255, 0.4);
  animation: contactDronePulse 2s ease-in-out infinite;
}

@keyframes contactDronePulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.9),
                inset 0 0 10px rgba(255, 255, 255, 0.4);
  }
  50% { 
    box-shadow: 0 0 40px rgba(59, 130, 246, 1),
                0 0 60px rgba(37, 99, 235, 0.7),
                inset 0 0 15px rgba(255, 255, 255, 0.6);
  }
}

.contact-drone-arm {
  position: absolute;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.7);
}

.contact-drone-arm-1 { top: 12px; left: 2px; transform: rotate(45deg); }
.contact-drone-arm-2 { top: 12px; right: 2px; transform: rotate(-45deg); }
.contact-drone-arm-3 { bottom: 12px; left: 2px; transform: rotate(-45deg); }
.contact-drone-arm-4 { bottom: 12px; right: 2px; transform: rotate(45deg); }

.contact-drone-propeller {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(59, 130, 246, 0) 100%);
  animation: contactSpinPropeller 0.25s linear infinite;
}

.contact-drone-propeller-1 { top: 4px; left: 4px; }
.contact-drone-propeller-2 { top: 4px; right: 4px; }
.contact-drone-propeller-3 { bottom: 4px; left: 4px; }
.contact-drone-propeller-4 { bottom: 4px; right: 4px; }

@keyframes contactSpinPropeller {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-drone-trail {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(59, 130, 246, 0) 0%,
    rgba(59, 130, 246, 0.9) 30%,
    rgba(37, 99, 235, 0.7) 50%,
    rgba(96, 165, 250, 0) 100%);
  opacity: 0.8;
  filter: blur(2px);
  transform-origin: left center;
  animation: contactTrailFade 1.2s ease-in-out infinite;
}

@keyframes contactTrailFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* Convergence Pattern - Drones converge toward center */
@keyframes contactConverge1 {
  0% { 
    transform: translate(-10vw, -10vh) rotate(45deg) scale(0.8); 
    opacity: 0; 
  }
  5% { opacity: 1; }
  50% { transform: translate(50vw, 50vh) rotate(225deg) scale(1.2); }
  95% { opacity: 1; }
  100% { 
    transform: translate(50vw, 50vh) rotate(405deg) scale(0.6); 
    opacity: 0;
  }
}

@keyframes contactConverge2 {
  0% { 
    transform: translate(110vw, -10vh) rotate(135deg) scale(0.8); 
    opacity: 0; 
  }
  5% { opacity: 1; }
  50% { transform: translate(50vw, 50vh) rotate(315deg) scale(1.2); }
  95% { opacity: 1; }
  100% { 
    transform: translate(50vw, 50vh) rotate(495deg) scale(0.6); 
    opacity: 0;
  }
}

@keyframes contactConverge3 {
  0% { 
    transform: translate(-10vw, 110vh) rotate(-45deg) scale(0.8); 
    opacity: 0; 
  }
  5% { opacity: 1; }
  50% { transform: translate(50vw, 50vh) rotate(135deg) scale(1.2); }
  95% { opacity: 1; }
  100% { 
    transform: translate(50vw, 50vh) rotate(315deg) scale(0.6); 
    opacity: 0;
  }
}

@keyframes contactConverge4 {
  0% { 
    transform: translate(110vw, 110vh) rotate(-135deg) scale(0.8); 
    opacity: 0; 
  }
  5% { opacity: 1; }
  50% { transform: translate(50vw, 50vh) rotate(45deg) scale(1.2); }
  95% { opacity: 1; }
  100% { 
    transform: translate(50vw, 50vh) rotate(225deg) scale(0.6); 
    opacity: 0;
  }
}

.contact-drone-1 { 
  animation: none;
  animation-delay: 0s;
}
.contact-drone-2 { 
  animation: none;
  animation-delay: 2s;
}
.contact-drone-3 { 
  animation: none;
  animation-delay: 4s;
}
.contact-drone-4 { 
  animation: none;
  animation-delay: 6s;
}

.contact-drone-squadron.loaded .contact-drone-1 { 
  animation: contactConverge1 20s ease-in-out infinite; 
}
.contact-drone-squadron.loaded .contact-drone-2 { 
  animation: contactConverge2 22s ease-in-out infinite; 
}
.contact-drone-squadron.loaded .contact-drone-3 { 
  animation: contactConverge3 18s ease-in-out infinite; 
}
.contact-drone-squadron.loaded .contact-drone-4 { 
  animation: contactConverge4 24s ease-in-out infinite; 
}

.contact-drone-1 .contact-drone-hub { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.contact-drone-2 .contact-drone-hub { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.contact-drone-3 .contact-drone-hub { background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%); }
.contact-drone-4 .contact-drone-hub { background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%); }

@media (max-width: 768px) {
  .contact-drone {
    width: 40px;
    height: 40px;
  }
  .contact-drone-hub {
    width: 16px;
    height: 16px;
  }
  .contact-drone-arm {
    width: 25px;
  }
}

/* Bold Buttons */
.btn {
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.form-control {
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Contact Card */
.contact-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}

/* Button Hover Styles */
.btn-primary:hover {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #7c3aed 100%);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4), 0 4px 8px rgba(99, 102, 241, 0.3);
  color: white !important; /* Ensure white text is readable on purple background */
}

.btn-primary:hover i {
  color: white !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: white !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

/* CRITICAL FIX: Contact card buttons - use purple text on white cards */
.contact-card .btn-outline-primary:hover,
.contact-card .btn-outline-primary:focus,
.contact-card .btn-outline-primary:active {
  color: #6366f1 !important; /* Purple text - always readable on white */
  background: transparent !important; /* Keep transparent so gradient can show */
  border-color: #6366f1 !important;
}

.contact-card .btn-outline-primary:hover *,
.contact-card .btn-outline-primary:focus *,
.contact-card .btn-outline-primary:active * {
  color: #6366f1 !important;
}

/* Hide gradient for contact card buttons - use solid purple instead */
.contact-card .btn-outline-primary:hover::before,
.contact-card .btn-outline-primary:focus::before,
.contact-card .btn-outline-primary:active::before {
  display: none !important;
}

.btn-outline-primary:hover i,
.btn-outline-primary:focus i,
.btn-outline-primary:active i {
  color: white !important;
}

/* CRITICAL FIX: Override for buttons that should stay white on hover */
.btn-outline-primary.stay-white-on-hover:hover,
.btn-outline-primary.stay-white-on-hover:focus,
.btn-outline-primary.stay-white-on-hover:active,
.btn-outline-primary[data-stay-white]:hover {
  color: #0f172a !important; /* Dark text on white background */
  background: #ffffff !important; /* Keep white background */
}

.btn-outline-primary.stay-white-on-hover:hover::before,
.btn-outline-primary[data-stay-white]:hover::before {
  display: none !important; /* Hide gradient */
}

.btn-outline-primary.stay-white-on-hover:hover *,
.btn-outline-primary.stay-white-on-hover:focus *,
.btn-outline-primary.stay-white-on-hover:active *,
.btn-outline-primary[data-stay-white]:hover * {
  color: #0f172a !important; /* Dark text for all child elements */
}

/* Override outline-primary hover when button has white background */
.btn-outline-primary.bg-white:hover,
.bg-white.btn-outline-primary:hover,
button.bg-white.btn-outline-primary:hover,
.bg-white button.btn-outline-primary:hover {
  color: #0f172a !important; /* Dark text on white background */
  background: #ffffff !important; /* Keep white background */
}

.btn-outline-primary.bg-white:hover *,
.bg-white.btn-outline-primary:hover *,
button.bg-white.btn-outline-primary:hover *,
.bg-white button.btn-outline-primary:hover * {
  color: #0f172a !important; /* Dark text for all child elements */
}

/* Override outline-secondary hover when button has white background */
.btn-outline-secondary.bg-white:hover,
.bg-white.btn-outline-secondary:hover,
button.bg-white.btn-outline-secondary:hover,
.bg-white button.btn-outline-secondary:hover {
  color: #0f172a !important; /* Dark text on white background */
  background: #ffffff !important; /* Keep white background */
}

.btn-outline-secondary.bg-white:hover *,
.bg-white.btn-outline-secondary:hover *,
button.bg-white.btn-outline-secondary:hover *,
.bg-white button.btn-outline-secondary:hover * {
  color: #0f172a !important; /* Dark text for all child elements */
}

.btn-outline-primary:active {
  transform: translateY(-1px) scale(1);
}

/* Navbar Brand - Butterfly Logo */
.navbar-brand {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  text-decoration: none;
}

.navbar-brand img {
  height: 32px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.navbar-brand:hover img {
  transform: scale(1.1) rotate(5deg);
}

.navbar-brand span {
  display: inline-block;
}

/* Skip Link - Visually Hidden, Screen Reader Accessible */
.skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  z-index: 10000;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  background: #6366f1;
  color: white;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  z-index: 10001;
}

/* Intersection Observer Animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-in-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== UX/UI ENHANCEMENTS ===== */

/* Enhanced Focus Indicators */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #6366f1 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3) !important;
  border-radius: 4px;
}

/* Button Loading State */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
  color: transparent !important;
}

.btn.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Enhanced Tooltip System */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 0.875rem;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  margin-bottom: 4px;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== TIMELINE COMPONENT ===== */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 3rem;
  border-left: 3px solid #6366f1;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6366f1;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #6366f1;
}

.timeline-item:last-child {
  border-left: none;
}

[data-bs-theme="dark"] .timeline-item::before {
  border-color: #1a202c;
}

/* ===== HIGHLIGHTED SECTION ===== */
.highlighted-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  margin: 3rem 0;
  border: 2px solid rgba(99, 102, 241, 0.1);
}

[data-bs-theme="dark"] .highlighted-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-color: rgba(99, 102, 241, 0.2);
}

/* Empty/Error/Success States */
.empty-state, .error-state, .success-state {
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
}

.empty-state {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
}

.error-state {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #fca5a5;
}

.success-state {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #86efac;
}

[data-bs-theme="dark"] .empty-state {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-color: #475569;
}

[data-bs-theme="dark"] .error-state {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  border-color: #dc2626;
}

[data-bs-theme="dark"] .success-state {
  background: linear-gradient(135deg, #14532d 0%, #166534 100%);
  border-color: #22c55e;
}

/* Page Transition */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  animation: pageFadeIn 0.4s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* =========================================== */
/* SOCIAL BUTTON SPACING OVERRIDES */
/* =========================================== */

/* Force social button spacing - footer uses 0.75rem */
.editorial-nav-overlay-menu div[role="group"][aria-label="Social media links"] {
  gap: 1rem !important;
}
.editorial-nav-overlay-menu ul li.d-flex .social-btn:not(:first-child) {
  margin-left: 1rem !important;
}
/* Force round icons in navbar - override ALL button styles */
.editorial-nav-overlay-menu .social-btn,
.editorial-nav-overlay-menu .btn.rounded-circle,
.editorial-nav-overlay-menu a.btn.rounded-circle,
.editorial-nav-overlay-menu .btn-outline-light.rounded-circle {
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  aspect-ratio: 1 / 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* =========================================== */
/* TOAST NOTIFICATION STYLES */
/* =========================================== */

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.toast-notification {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateX(400px);
  animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  min-width: 300px;
}

@keyframes toastSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastSlideOut {
  to {
    opacity: 0;
    transform: translateX(400px);
  }
}

.toast-notification.success {
  border-left: 4px solid #10b981;
}

.toast-notification.error {
  border-left: 4px solid #ef4444;
}

.toast-notification.info {
  border-left: 4px solid #6366f1;
}

.toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  font-weight: 500;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1a202c;
}

[data-bs-theme="dark"] .toast-notification {
  background: #1e293b;
  color: #e2e8f0;
}

[data-bs-theme="dark"] .toast-close {
  color: #94a3b8;
}

[data-bs-theme="dark"] .toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* =========================================== */
/* FOOTER ENHANCEMENTS */
/* =========================================== */

/* Footer Layout Improvements - Exclude dynamic footer component */
footer:not(.footer-enhanced) {
  padding: 4rem 0 2.5rem !important;
}

.letter-spacing-1 {
  letter-spacing: 0.1em;
}

/* Footer Link Hover Effects - Exclude dynamic footer component */
.footer-link:not(.footer-enhanced .footer-link) {
  transition: all 0.3s ease;
}

.footer-link:not(.footer-enhanced .footer-link):hover {
  color: var(--bs-primary) !important;
  transform: translateX(6px);
}

.footer-link:not(.footer-enhanced .footer-link) i {
  transition: transform 0.3s ease;
}

.footer-link:not(.footer-enhanced .footer-link):hover i {
  transform: translateX(2px);
}

/* Accordion Button Styling */
.accordion-button {
  border: none;
  padding-left: 0;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

/* Section Titles */
footer h4 {
  position: relative;
  padding-bottom: 0.75rem;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--bs-primary);
}

/* Better Spacing */
footer .row {
  margin-bottom: 0;
}

/* =========================================== */
/* UTILITY CLASSES FOR INLINE STYLES */
/* =========================================== */

/* Position utilities */
.position-relative { position: relative !important; }
.z-index-10 { z-index: 10 !important; }

/* Padding utilities */
.padding-top-0 { padding-top: 0 !important; }

/* Margin utilities */
.margin-top-0 { margin-top: 0 !important; }
.margin-top-025 { margin-top: 0.25rem !important; }
.margin-top-05 { margin-top: 0.5rem !important; }

/* Flex utilities */
.flex-align-center { display: flex !important; align-items: center !important; }
.flex-gap-075 { gap: 0.75rem !important; }

/* Brand overlay utilities */
.brand-overlay-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}
.brand-overlay-logo {
  position: relative;
  z-index: 10;
}
.brand-overlay-info {
  margin-top: 0.5rem;
}
.brand-overlay-description {
  margin-top: 0.25rem;
}

/* Social links gap */
.social-links-container {
  gap: 1rem;
}

