/* =========================================================
   FLY TECH – Mobile CSS (iOS + Android) - CI #00A987
   File: style.mobile.css
   Scope: Loaded only when (max-width: 980px)
   Brand Color: #00A987 (Teal Green)
   Notes:
   - Override-only (append style). Does NOT change PC layout.
   - Enhanced iOS Safari support with viewport units
   - Better touch interactions and accessibility
   - Optimized animations and transitions
   - Enhanced responsive typography
   ========================================================= */

/* ---------- 0) CSS Variables + Base Setup with FLY TECH CI ---------- */
:root {
  /* FLY TECH Brand Colors - CI #00A987 */
  --brand-primary: #00A987;
  --brand-primary-light: #00C9A1;
  --brand-primary-dark: #008C73;
  --brand-primary-darker: #006E5A;
  
  /* Brand color variations */
  --brand-gradient: linear-gradient(135deg, #00C9A1 0%, #00A987 50%, #008C73 100%);
  --brand-glow: 0 4px 20px rgba(0, 169, 135, 0.4);
  --brand-glow-strong: 0 6px 30px rgba(0, 169, 135, 0.6);
  
  /* Opacity variants */
  --brand-05: rgba(0, 169, 135, 0.05);
  --brand-08: rgba(0, 169, 135, 0.08);
  --brand-10: rgba(0, 169, 135, 0.10);
  --brand-15: rgba(0, 169, 135, 0.15);
  --brand-20: rgba(0, 169, 135, 0.20);
  --brand-30: rgba(0, 169, 135, 0.30);
  --brand-40: rgba(0, 169, 135, 0.40);
  --brand-50: rgba(0, 169, 135, 0.50);
  
  /* Layout */
  --header-h: 64px;
  --mob-pad: 16px;
  --mob-gap: 14px;
  
  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  
  /* Border radius scale */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  
  /* Typography scale */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-index scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* Base HTML setup */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  padding-top: var(--header-h) !important;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height */
}

/* iOS safe area support */
@supports (padding: env(safe-area-inset-top)) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }
  
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Enhanced tap targets for better UX */
a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px; /* Apple HIG minimum */
}

/* Prevent text selection on interactive elements */
button, .btn, .menu-toggle {
  -webkit-user-select: none;
  user-select: none;
}

/* Images optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Smooth scrolling for iOS */
.scrollable {
  -webkit-overflow-scrolling: touch;
}


/* ---------- 1) HEADER: Enhanced Mobile Navigation with Brand Color ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(10, 20, 18, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--brand-20);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Hide header on scroll down, show on scroll up */
.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 40px var(--brand-10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--mob-pad) !important;
  gap: var(--space-sm);
  max-width: 100%;
  margin: 0 auto;
}

/* Logo area - improved touch target with brand accent */
.logo-box {
  width: 44px !important;
  height: 44px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-15), var(--brand-08));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 
              inset 0 1px 2px var(--brand-20),
              0 0 20px var(--brand-10);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid var(--brand-20);
}

.logo-box:active {
  transform: scale(0.95);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 0 15px var(--brand-20);
}

.logo-text span:first-child {
  font-size: 1.15rem !important;
  letter-spacing: 0.06em !important;
  font-weight: 700;
  color: var(--brand-primary-light);
}

.logo-text span:last-child {
  font-size: 0.82rem !important;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Button with Brand Color */
.phone-label {
  display: none !important;
}

.btn-phone {
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition-fast);
  background: var(--brand-gradient);
  color: white;
  border: 1px solid var(--brand-primary);
  box-shadow: var(--brand-glow);
}

.btn-phone:active {
  transform: scale(0.96);
  box-shadow: 0 2px 10px var(--brand-30);
  background: var(--brand-primary-dark);
}

/* Hamburger menu - enhanced with brand accent */
.menu-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-08);
  border: 1px solid var(--brand-20);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.menu-toggle:active {
  transform: scale(0.95);
  background: var(--brand-15);
  box-shadow: 0 0 20px var(--brand-20);
}

.menu-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--brand-20) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.menu-toggle:active::before {
  opacity: 1;
}

/* Mobile navigation dropdown with brand styling */
.main-nav {
  position: fixed !important;
  top: calc(env(safe-area-inset-top, 0px) + var(--header-h));
  left: 0;
  right: 0;
  z-index: calc(var(--z-fixed) - 1);
  display: grid !important;
  gap: 2px !important;
  
  padding: var(--space-md) var(--mob-pad) var(--space-lg) !important;
  background: rgba(10, 20, 18, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  
  border-bottom: 1px solid var(--brand-20);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 60px var(--brand-10);
  
  /* Closed state */
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all var(--transition-base);
  
  /* Max height for scroll on small screens */
  max-height: calc(100vh - var(--header-h) - env(safe-area-inset-top, 0px));
  max-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Open state - multiple class support */
.main-nav.is-open,
.main-nav.open,
.main-nav.active,
.site-header.is-open .main-nav,
body.menu-open .main-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Menu backdrop blur for body */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-fixed) - 2);
  animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Navigation links with brand hover */
.main-nav a {
  display: flex;
  align-items: center;
  padding: 14px 16px !important;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-20), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.main-nav a:hover::before {
  opacity: 1;
}

.main-nav a:active {
  transform: scale(0.98);
  background: var(--brand-10);
  border-color: var(--brand-30);
  box-shadow: 0 0 15px var(--brand-15);
}

.main-nav a.active {
  background: var(--brand-15);
  border-color: var(--brand-40);
  font-weight: 600;
  box-shadow: 0 0 20px var(--brand-20);
}


/* ---------- 2) HERO SECTION: Enhanced Mobile Layout with Brand ---------- */
.ft-hero {
  padding: 32px 0 40px !important;
  position: relative;
  overflow: hidden;
}

.ft-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, var(--brand-05) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.ft-hero__inner {
  width: min(980px, 100%) !important;
  padding: 0 var(--mob-pad) !important;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: var(--space-lg) !important;
  align-items: start !important;
  position: relative;
  z-index: 1;
}

/* Badge with brand color */
.ft-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 14px;
  border-radius: 100px;
  background: var(--brand-10);
  border: 1px solid var(--brand-30);
  font-size: var(--text-sm);
  font-weight: 500;
  backdrop-filter: blur(10px);
  width: fit-content;
  box-shadow: 0 0 20px var(--brand-10);
  color: var(--brand-primary-light);
}

/* Title with brand gradient */
.ft-hero__title {
  font-size: clamp(28px, 8vw, 42px) !important;
  line-height: 1.15 !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 12px !important;
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-primary-light) 50%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px var(--brand-10);
}

.ft-hero__lead {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 var(--space-lg);
}

/* Action buttons with brand colors */
.ft-hero__actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  width: 100%;
}

.ft-btn {
  width: 100% !important;
  min-height: 52px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  border: none;
  cursor: pointer;
}

.ft-btn:active {
  transform: scale(0.98);
}

.ft-btn--primary {
  background: var(--brand-gradient);
  color: white;
  box-shadow: var(--brand-glow);
}

.ft-btn--primary:active {
  box-shadow: 0 2px 10px var(--brand-30);
  background: var(--brand-primary-dark);
}

.ft-btn--secondary {
  background: var(--brand-10);
  color: var(--brand-primary-light);
  border: 1px solid var(--brand-30);
  box-shadow: 0 0 20px var(--brand-10);
}

.ft-btn--secondary:active {
  background: var(--brand-15);
  border-color: var(--brand-40);
}

/* Stage/Demo area with brand glow */
.ft-stage {
  position: relative;
  min-height: 380px !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--brand-20);
  box-shadow: var(--shadow-xl), 0 0 60px var(--brand-10);
}

.ft-droneWrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 140px !important;
  animation: floatSmooth 6s ease-in-out infinite;
}

@keyframes floatSmooth {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.ft-drone {
  width: min(480px, 92%) !important;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 30px var(--brand-20));
  transition: transform var(--transition-slow);
}

/* Bottom info bar with brand accent */
.ft-stage__bar {
  position: absolute;
  left: 12px !important;
  right: 12px !important;
  bottom: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 18px !important;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 30px rgba(0, 169, 135, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ft-stage__meta {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100% !important;
}

.ft-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem !important;
  font-weight: 700;
  padding: 8px 14px !important;
  border-radius: 8px;
  background: #f0fdf9;
  color: #00a987;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid #00a987;
}

.ft-meta {
  display: block !important;
  line-height: 1.5 !important;
  font-size: 0.85rem !important;
  color: #475569;
  font-weight: 500;
  margin-top: 4px;
}

.ft-miniCta {
  flex-shrink: 0;
  padding: 12px 18px !important;
  font-size: 0.9rem !important;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, #00a987, #008c73);
  color: white;
  white-space: nowrap;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 169, 135, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.ft-miniCta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 6px rgba(0, 169, 135, 0.2);
}


/* ---------- 3) SECTIONS: Enhanced Spacing & Typography ---------- */
.section {
  padding: 3rem 0 !important;
  position: relative;
}

.section:first-of-type {
  padding-top: 2rem !important;
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2rem) !important;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  color: #1f2937 !important;
  text-align: center;
}

.section-subtitle {
  font-size: 0.95rem !important;
  line-height: 1.6;
  color: #6b7280 !important;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 var(--mob-pad) !important;
  margin: 0 auto;
}


/* ---------- 4) PRODUCTS: Clean White Cards (Image 2 Style) ---------- */
#products .container {
  max-width: 100% !important;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  gap: 16px !important;
}

.product-card {
  padding: 20px !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  transition: all var(--transition-base);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  position: relative;
  overflow: visible;
}

.product-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-color: #d1d5db !important;
}

.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.product-head.product-head--right-logo {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: start;
  gap: 12px !important;
}

/* Category badge */
.product-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937 !important;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280 !important;
  margin-bottom: 0;
}

.product-dji-logo {
  width: 56px !important;
  height: 56px;
  border-radius: 12px !important;
  background: #000000;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.product-dji-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Gallery with transparent/white background */
.product-gallery {
  width: 100%;
  height: 240px !important;
  border-radius: 16px;
  overflow: visible;
  background: transparent !important;
  margin: 24px 0 !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transition: transform var(--transition-slow);
}

.product-card:active .product-gallery img {
  transform: scale(1.05);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 0;
  border-top: none;
  margin-top: var(--space-md);
}

/* Price styling */
.product-price-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary) !important;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-price-amount {
  font-size: 1.25rem;
}

.product-price-currency {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Additional info text */
.product-info-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* CTA Button - outlined style matching image 2 */
.product-cta {
  padding: 12px 24px !important;
  background: transparent !important;
  color: var(--brand-primary) !important;
  border: 2px solid var(--brand-primary) !important;
  border-radius: 50px !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  box-shadow: none !important;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.product-cta:active {
  transform: scale(0.97);
  background: var(--brand-primary) !important;
  color: white !important;
}


/* ---------- 5) CONTACT STRIP HERO: PROPER MOBILE LAYOUT ---------- */
.contact-strip {
  --cs-pad-y: 48px;
  padding: var(--cs-pad-y) 0;
  position: relative;
  overflow: hidden;
}

/* Main container */
.contact-strip-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--mob-pad);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* Left section */
.contact-strip-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* 1. Person image */
.contact-strip-person {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.contact-strip-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2. Copy section */
.contact-strip-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

/* Heading */
.contact-strip-head {
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 0;
}

/* Subtitle */
.contact-strip-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.contact-strip-sub strong {
  font-weight: 700;
  color: #ffffff;
}

/* 3. Buttons */
.contact-strip-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-strip-buttons .btn-contact {
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact-strip-buttons .btn-contact--primary {
  background: var(--brand-gradient);
  color: white;
  border: none;
  box-shadow: var(--brand-glow);
}

.contact-strip-buttons .btn-contact--primary:active {
  transform: scale(0.98);
  background: var(--brand-primary-dark);
}

.contact-strip-buttons .btn-contact:not(.btn-contact--primary) {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-strip-buttons .btn-contact:not(.btn-contact--primary):active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.2);
}

/* 4. QR Code */
.contact-strip-qr-link {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-strip.contact-strip--hero {
  --cs-qr-size: 220px;
}

.contact-strip-qr {
  width: var(--cs-qr-size, 220px);
  height: var(--cs-qr-size, 220px);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: white;
  box-shadow: var(--shadow-xl), var(--brand-glow-strong);
  border: 4px solid var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.contact-strip-qr:active {
  transform: scale(0.98);
}

.contact-strip-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* ---------- 6) SERVICES: 2-Column Grid with Brand Hover ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.service-card {
  padding: 16px 12px !important;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-10), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.service-card:active {
  transform: translateY(-2px);
  background: var(--brand-05);
  box-shadow: var(--shadow-md), 0 0 20px var(--brand-15);
  border-color: var(--brand-30);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-xs);
  filter: drop-shadow(0 4px 8px var(--brand-20));
}

.service-title {
  font-size: 0.9rem !important;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}


/* ---------- 7) PROMO SECTIONS: Enhanced with Brand Accents ---------- */
.promo-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: var(--space-xl) !important;
  padding: 32px var(--mob-pad) !important;
  align-items: center;
}

.promo-quote {
  font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Lock text - prevent scrolling/selection */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  touch-action: none;
  position: relative;
  z-index: 10;
}

.promo-art {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
}

.promo-art img {
  max-width: 100% !important;
  max-height: 300px !important;
  transform: translateY(0) !important;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px var(--brand-15));
}

/* Light promo variant */
.promo-inner--light {
  grid-template-columns: 1fr !important;
  padding: 0 var(--mob-pad) !important;
  gap: var(--space-md) !important;
}

.promo-photo {
  width: 100%;
  border-radius: var(--radius-lg) !important;
  min-height: 220px !important;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid var(--brand-10);
}

.promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card {
  border-radius: var(--radius-lg) !important;
  padding: 24px 20px !important;
  background: var(--brand-05);
  border: 1px solid var(--brand-20);
  box-shadow: var(--shadow-md), 0 0 30px var(--brand-10);
  margin-top: 16px;
}

.promo-bullets {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  margin-top: var(--space-md);
}

.promo-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--brand-primary);
}


/* ---------- 8) FINANCE: 3-Column Horizontal Layout (Smaller Cards) ---------- */
.finance-offer {
  padding: 40px 0 48px !important;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

.finance-item {
  padding: 20px 12px !important;
  border-radius: var(--radius-md);
  background: var(--brand-05);
  border: 1px solid var(--brand-20);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm), 0 0 20px var(--brand-08);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.finance-item:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--brand-glow);
  border-color: var(--brand-40);
}

.finance-icon {
  width: 72px !important;
  height: 72px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-15), var(--brand-08));
  border: 2px solid var(--brand-20);
  flex-shrink: 0 !important;
}

.finance-icon-img {
  width: 48px !important;
  height: 48px !important;
  filter: drop-shadow(0 2px 4px var(--brand-20));
}

.finance-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  margin-bottom: 0;
  color: #1f2933;
  line-height: 1.3;
  letter-spacing: .01em;
}

.finance-text strong {
  display: block;
  font-size: 0.95rem !important;
  font-weight: 900;
  color: #1f2933;
  letter-spacing: .01em;
  line-height: 1.3;
}

.finance-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}


/* ---------- 9) CONTACT STRIP BANNER: Proper Mobile Layout ---------- */
.contact-strip--banner {
  padding: 48px 0 !important;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%) !important;
  position: relative;
  overflow: hidden;
}

.contact-strip--banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Main container */
.contact-strip--banner .contact-strip-inner--banner {
  width: 100%;
  max-width: 100%;
  padding: 0 var(--mob-pad) !important;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
  align-items: center !important;
  position: relative;
  z-index: 1;
}

/* Left section (title + buttons) */
.contact-strip--banner .contact-left {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  align-items: center !important;
}

/* Title */
.contact-strip--banner .contact-title {
  text-align: center;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.contact-strip--banner .contact-title strong {
  font-size: clamp(32px, 8vw, 48px) !important;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-strip--banner .contact-title span {
  font-size: 16px !important;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Action buttons - stack vertically and center */
.contact-strip--banner .contact-actions {
  width: 100% !important;
  max-width: 300px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin: 0 auto !important;
}

.contact-strip--banner .contact-pill,
.contact-strip--banner .btn-contact {
  width: 100% !important;
  max-width: 280px !important;
  min-height: 52px;
  padding: 12px 20px;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 16px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: none;
}

/* Phone button (white) */
.contact-strip--banner .contact-pill--phone {
  background: #ffffff !important;
  color: var(--brand-primary-dark) !important;
}

.contact-strip--banner .contact-pill--phone:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Other buttons (transparent) */
.contact-strip--banner .btn-contact {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(10px);
}

.contact-strip--banner .btn-contact:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.25) !important;
}

/* QR Code section */
.contact-strip--banner .contact-strip-qr-link {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 16px 0 !important;
}

.contact-strip--banner .contact-strip-qr {
  width: 240px !important;
  height: 240px !important;
  padding: 18px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.3) !important;
  transition: transform 0.2s ease;
}

.contact-strip--banner .contact-strip-qr:active {
  transform: scale(0.98);
}

.contact-strip--banner .contact-strip-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Person image - show on mobile and center */
.contact-strip--banner .contact-person {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  order: -1 !important;
  margin-bottom: 24px !important;
}

.contact-strip--banner .contact-person img {
  width: 280px !important;
  height: 280px !important;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}


/* ---------- 10) WHY DRONE: Single Column with Brand Borders ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

.why-item {
  display: grid;
  gap: var(--space-md);
}

.why-media {
  width: 100%;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md), 0 0 20px var(--brand-10);
  border: 1px solid var(--brand-15);
}

.why-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover;
}

.why-content {
  padding: var(--space-md);
}

.why-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--brand-primary-light);
}

.why-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}


/* ---------- 11) PARTNERS: PC-Style Layout (5 Full Logos Visible) ---------- */
.partner-head {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 14px;
}

.partner-kicker {
  max-width: 920px;
  margin: 0 auto 18px;
  color: var(--brand-primary);
  font-weight: 900;
  font-size: clamp(1.05rem, 1.2vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.partner-divider {
  width: min(860px, 92%);
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-primary),
    transparent
  );
  border-radius: 999px;
}

.partner-band {
  margin-top: 40px !important;
  padding: 18px 0 10px;
  background: transparent;
  overflow: hidden;
}

.partner-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.partner-title {
  text-align: center;
  font-weight: 900;
  font-size: 1.35rem;
  margin: 0 0 14px;
  color: #1f2937;
}

/* Full-width container with fade edges */
.partner-viewport {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  --fade: 50px;
  --edge-pad: calc(var(--fade) + 15px);
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding-inline: var(--edge-pad) !important;
  
  /* Fade mask for smooth edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--fade),
    #000 calc(100% - var(--fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--fade),
    #000 calc(100% - var(--fade)),
    transparent 100%
  );
}

/* Gradient overlays for fade effect */
.partner-viewport::before,
.partner-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--fade);
  pointer-events: none;
  z-index: 2;
}

.partner-viewport::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.partner-viewport::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

/* Auto-scrolling track with smooth animation */
.partner-track {
  display: flex;
  align-items: center;
  gap: 30px !important;
  will-change: transform;
  
  /* Continuous auto-scroll */
  animation: scrollPartners 35s linear infinite;
  animation-play-state: running;
}

@keyframes scrollPartners {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(-50%); 
  }
}

/* Pause on interaction */
.partner-track:hover,
.partner-track:active {
  animation-play-state: paused;
}

/* Touch device pause */
@media (hover: none) and (pointer: coarse) {
  .partner-viewport:active .partner-track {
    animation-play-state: paused;
  }
}

/* 5 FULL logos visible - PC desktop style */
.partner-track img {
  /* Calculate to show exactly 5 logos */
  flex: 0 0 calc((100vw - var(--edge-pad) * 2 - 30px * 4) / 5) !important;
  min-width: 150px;
  max-width: 220px;
  height: 140px !important;
  width: auto;
  object-fit: contain;
  display: block;
  /* Remove grayscale - show full colors */
  filter: none;
  opacity: 1;
  transition: all var(--transition-base);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
  
  /* Ensure crisp rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Hover effect - just scale up */
.partner-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Smooth animation preference */
@media (prefers-reduced-motion: no-preference) {
  .partner-track {
    animation-play-state: running !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none !important;
  }
}

/* Partner video section */
.partner-video {
  width: 100% !important;
  max-width: var(--max-width, 1200px);
  padding: 0 var(--mob-pad) !important;
  margin: var(--space-xl) auto 0;
}

.partner-video video,
.partner-video iframe {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft, #e5e7eb);
}

/* Ensure logos are centered vertically */
.partner-viewport {
  display: flex;
  align-items: center;
  min-height: 160px;
}


/* ---------- 12) ABOUT & CTA: Mobile Single Column with QR at Bottom ---------- */
.about-card {
  border-radius: 24px;
  padding: 3rem 2.5rem !important;
  
  /* PC-style dark gradient with brand color */
  background: linear-gradient(
    120deg,
    rgba(0, 169, 135, 0.08),
    rgba(8, 47, 35, 0.9)
  ),
  #020617;
  
  color: #e5e7eb;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
  align-items: start;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12) !important;
}

.about-content {
  width: 100%;
}

.about-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.about-quote {
  margin-top: 1.5rem;
  padding: 1.2rem;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: #bbf7d0;
  background: rgba(187, 247, 208, 0.08);
  border-left: 4px solid var(--brand-primary);
  border-radius: 8px;
  line-height: 1.6;
}

.about-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-meta-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-primary-light);
  margin-bottom: 0.5rem;
}

.about-meta-address {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.6;
}

/* Map section - moved to bottom */
.about-map {
  width: 100%;
  min-height: 280px !important;
  border-radius: 20px !important;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px !important;
  border: 0;
  display: block;
  border-radius: inherit;
}

/* ========== CTA BAND - MOBILE SINGLE COLUMN ========== */
.cta-band {
  margin-top: 1rem;
  border-radius: 0 !important; /* Remove rounded corners */
  padding: 2rem 1.5rem !important;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  
  /* FORCE single column */
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  align-items: stretch !important;
}

/* Left section - full width */
.cta-left {
  width: 100% !important;
  order: 1;
}

.cta-title {
  font-size: 1.25rem !important;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-align: center;
}

.cta-subtitle {
  font-size: 0.95rem !important;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.25rem;
  text-align: center;
}

/* Action buttons - stack vertically on mobile */
.cta-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin: 1rem 0 1.5rem 0;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
  width: 100% !important;
  min-height: 52px;
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--brand-primary-dark);
  border: none;
}

.cta-actions .btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.cta-actions .btn-secondary:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.25);
}

/* Social icons */
.cta-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 0.5rem;
}

.cta-social-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cta-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.social-icon::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-facebook::before {
  background-image: url("/images/social/icon-facebook.png");
}

.social-youtube::before {
  background-image: url("/images/social/icon-youtube.png");
}

.social-tiktok::before {
  background-image: url("/images/social/icon-tiktok.png");
}

.social-icon:hover,
.social-icon:active {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Right section - QR CODE AT BOTTOM */
.cta-right {
  width: 100% !important;
  order: 2;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Line card - redesigned for mobile - CENTERED */
.line-card {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 400px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.25rem !important;
  box-shadow: none !important;
}

/* QR Code - centered and prominent */
.line-card > a {
  order: 1;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  text-decoration: none;
}

.line-card-qr {
  width: 240px !important;
  height: 240px !important;
  border-radius: 20px !important;
  background: #ffffff;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  padding: 16px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease;
  margin: 0 auto !important;
}

.line-card-qr:active {
  transform: scale(0.98);
}

.line-card-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Text section - CENTERED BELOW QR */
.line-card-text {
  width: 100% !important;
  text-align: center !important;
  order: 2;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.line-kicker {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.line-id {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.line-id span {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.line-benefits {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
}

.line-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.line-benefits li::before {
  content: "•";
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  line-height: 1;
}


/* ---------- 13) FOOTER: PC-Style Horizontal Layout ---------- */
.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.6rem 0 2rem 0 !important;
  margin-top: 3rem;
  font-size: 0.82rem;
}

.footer-inner {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--mob-pad) !important;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem !important;
  align-items: center !important;
  flex-direction: row !important;
}

.footer-company {
  max-width: 420px;
}

.footer-logo {
  margin-bottom: var(--space-sm);
  filter: none;
}

.footer-contact {
  text-align: right !important;
}

.footer-contact p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: var(--space-xs);
}

.footer-contact a {
  color: #e5e7eb;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-contact a:active,
.footer-contact a:hover {
  color: var(--brand-primary-light);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  justify-content: flex-end;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.footer-social a:active,
.footer-social a:hover {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px var(--brand-20);
}

.footer-links {
  display: flex;
  gap: 2rem;
  width: auto;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #e5e7eb;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: var(--space-xs);
}

.footer-col a {
  font-size: 0.82rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col a:active,
.footer-col a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: #9ca3af;
  width: 100%;
}


/* ---------- 14) FLOATING ACTION BUTTONS: Enhanced with Brand ---------- */
:root {
  --ft-size-item: 52px;
  --ft-size-main: 58px;
  --ft-right: 16px;
  --ft-bottom: 16px;
  
  --ft-top-size: 52px;
  --ft-top-left: 16px;
  --ft-top-bottom: 16px;
}

.floating-buttons {
  position: fixed;
  right: var(--ft-right);
  bottom: var(--ft-bottom);
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: var(--ft-size-item);
  height: var(--ft-size-item);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: white;
  box-shadow: var(--brand-glow-strong);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.fab:active {
  transform: scale(0.9);
  box-shadow: 0 2px 15px var(--brand-30);
}

.fab--main {
  width: var(--ft-size-main);
  height: var(--ft-size-main);
  box-shadow: 0 6px 30px var(--brand-40);
}

.fab--phone {
  background: linear-gradient(135deg, #2196F3, #1565C0);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

.fab--line {
  background: linear-gradient(135deg, #00B900, #009900);
  box-shadow: 0 4px 20px rgba(0, 185, 0, 0.4);
}

/* Tooltip with brand styling */
.ft-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px !important;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  font-size: 13px !important;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md), 0 0 15px var(--brand-10);
  border: 1px solid var(--brand-20);
}

.fab:hover .ft-tip {
  opacity: 1;
}

/* Back to top button with brand accent */
.back-to-top {
  position: fixed;
  left: var(--ft-top-left);
  bottom: var(--ft-top-bottom);
  width: var(--ft-top-size);
  height: var(--ft-top-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-10);
  backdrop-filter: blur(10px);
  border: 1px solid var(--brand-30);
  color: var(--brand-primary-light);
  cursor: pointer;
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md), 0 0 20px var(--brand-10);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:active {
  transform: scale(0.9);
  background: var(--brand-15);
}


/* ---------- 15) UTILITIES ---------- */

/* Hide on mobile */
.hide-mobile {
  display: none !important;
}

/* Show only on mobile */
.show-mobile {
  display: block !important;
}

.show-mobile-flex {
  display: flex !important;
}

.show-mobile-grid {
  display: grid !important;
}

/* Text alignment */
.text-center-mobile {
  text-align: center !important;
}

.text-left-mobile {
  text-align: left !important;
}

/* Spacing utilities */
.mt-mobile-sm { margin-top: var(--space-sm) !important; }
.mt-mobile-md { margin-top: var(--space-md) !important; }
.mt-mobile-lg { margin-top: var(--space-lg) !important; }

.mb-mobile-sm { margin-bottom: var(--space-sm) !important; }
.mb-mobile-md { margin-bottom: var(--space-md) !important; }
.mb-mobile-lg { margin-bottom: var(--space-lg) !important; }

.p-mobile-sm { padding: var(--space-sm) !important; }
.p-mobile-md { padding: var(--space-md) !important; }
.p-mobile-lg { padding: var(--space-lg) !important; }

/* Full width on mobile */
.full-width-mobile {
  width: 100% !important;
  max-width: 100% !important;
}


/* ---------- 16) ANIMATIONS ---------- */

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Slide up animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

/* Pulse animation with brand glow */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 20px var(--brand-20);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--brand-40);
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}


/* ---------- 17) LOADING STATES with Brand ---------- */

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    var(--brand-10) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.loading {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
}


/* ---------- 18) ACCESSIBILITY ---------- */

/* Focus visible for keyboard navigation with brand */
*:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--brand-10);
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: var(--mob-pad);
  z-index: var(--z-tooltip);
  padding: 12px 16px;
  background: white;
  color: var(--brand-primary-dark);
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  transition: top var(--transition-fast);
  border: 2px solid var(--brand-primary);
}

.skip-to-content:focus {
  top: var(--space-md);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ---------- 19) PERFORMANCE OPTIMIZATIONS ---------- */

/* Will-change for animated elements */
.ft-droneWrap,
.partner-track,
.fab {
  will-change: transform;
}

/* Contain layout for isolated components */
.product-card,
.service-card,
.finance-item {
  contain: layout style paint;
}

/* GPU acceleration for smooth animations */
.main-nav,
.fab,
.back-to-top {
  transform: translateZ(0);
  backface-visibility: hidden;
}


/* ---------- 20) REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .ft-droneWrap,
  .partner-track,
  .animate-fade-in,
  .animate-slide-up,
  .animate-pulse {
    animation: none !important;
  }
}


/* ---------- 21) DARK MODE SUPPORT (if implemented) ---------- */

/* Removed empty color-scheme block for performance */


/* ---------- 22) PRINT STYLES ---------- */

@media print {
  .site-header,
  .floating-buttons,
  .back-to-top,
  .menu-toggle {
    display: none !important;
  }
  
  body {
    padding-top: 0 !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
}


/* ========================================================= 
   END OF FLY TECH MOBILE CSS - Brand Color: #00A987
   ========================================================= */

   /* === FIX: Center all 4 contact elements to same axis as section-title === */

/* container หลัก */
.contact-strip-inner,
.contact-strip-left,
.contact-strip-copy,
.contact-strip-buttons,
.contact-strip-qr-link {
  align-items: center !important;
  text-align: center !important;
}

/* บังคับความกว้างเท่ากัน */
.contact-strip-copy,
.contact-strip-buttons {
  max-width: 420px;
  width: 100%;
}

/* ปุ่มทุกปุ่ม */
.contact-strip-buttons a,
.contact-strip--banner .contact-actions a {
  justify-content: center !important;
  text-align: center !important;
}

/* QR ให้อยู่แกนเดียวกันจริง */
.contact-strip-qr-link {
  display: flex !important;
  justify-content: center !important;
}

.contact-strip-person {
  margin-left: auto !important;
  margin-right: auto !important;
}

.center-axis {
  max-width: 420px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* ================================
   FORCE CENTER AXIS (Mobile)
   Align contact strip with .container (Services title)
   ================================ */

/* 1) ทำให้ contact strip ใช้แกนกลางเดียวกับ .container */
@media (max-width: 980px){
  .contact-strip.contact-strip--hero .contact-strip-inner,
  .contact-strip.contact-strip--banner .contact-strip-inner,
  .contact-strip .contact-strip-inner,
  .contact-strip .contact-strip-inner--banner{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--mob-pad) !important;
    padding-right: var(--mob-pad) !important;
    align-items: center !important;
  }

  /* 2) ล็อกแกนกลางของ “กลุ่มซ้าย” ให้ตรง */
  .contact-strip.contact-strip--hero .contact-strip-left,
  .contact-strip.contact-strip--banner .contact-left,
  .contact-strip .contact-strip-left,
  .contact-strip .contact-left{
    width: 100% !important;
    max-width: 420px !important;   /* ให้ฐานเดียวกับข้อความหัวข้อ */
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* 3) บังคับรูปคน/ข้อความ/ปุ่ม/QR ให้ “อยู่แกนเดียวกัน” */
  .contact-strip .contact-strip-person{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contact-strip .contact-strip-copy,
  .contact-strip .contact-strip-buttons,
  .contact-strip .contact-actions,
  .contact-strip .contact-strip-qr-link{
    width: 100% !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 4) ปุ่มทุกปุ่มกึ่งกลางแน่ ๆ */
  .contact-strip .contact-strip-buttons a,
  .contact-strip--banner .contact-actions a{
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 980px){
  /* ฐานแกนกลางให้เหมือน section .container */
  .contact-strip .contact-strip-inner,
  .contact-strip .contact-strip-inner--banner{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-left: var(--mob-pad) !important;
    padding-right: var(--mob-pad) !important;
  }

  /* ให้ทุกชิ้น “มีแกนกลางเดียวกัน” ด้วย max-width เดียว */
  .contact-strip .contact-strip-left,
  .contact-strip .contact-left,
  .contact-strip .contact-strip-copy,
  .contact-strip .contact-strip-buttons,
  .contact-strip .contact-actions,
  .contact-strip .contact-strip-qr-link{
    width: 100% !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* ปุ่ม */
  .contact-strip .contact-strip-buttons a,
  .contact-strip .contact-actions a{
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* วงกลมรูปคน */
  .contact-strip .contact-strip-person{
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ================================
   Mobile: Smaller centered buttons (Contact strip)
   ================================ */
@media (max-width: 980px){

  /* กล่องรวมปุ่ม: ให้จัดกลาง */
  .contact-strip-buttons,
  .contact-strip--banner .contact-actions{
    align-items: center !important;
  }

  /* ปุ่มทั้งหมด: ไม่เต็มจอ, อยู่กลาง, เล็กลง */
  .contact-strip-buttons .btn-contact,
  .contact-strip--banner .contact-pill,
  .contact-strip--banner .btn-contact{
    width: auto !important;                 /* ไม่ full-width */
    max-width: 320px !important;            /* ปรับได้: 280-360 */
    min-width: 240px !important;            /* กันเล็กเกิน */
    margin-left: auto !important;
    margin-right: auto !important;

    min-height: 46px !important;            /* เล็กลงจากเดิม */
    padding: 10px 16px !important;          /* เล็กลง */
    font-size: 15px !important;             /* อ่านง่าย */
    border-radius: 14px !important;
  }

  /* ถ้าข้อความยาว ให้ตัดบรรทัด/ไม่ดันกว้าง */
  .contact-strip-buttons .btn-contact,
  .contact-strip--banner .contact-pill,
  .contact-strip--banner .btn-contact{
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap;                    /* ถ้าอยากให้ขึ้นบรรทัด ลบนี้ */
  }
}