/* ═══════════════════════════════════════════
   AIRVOX LOGISTICS — MASTER STYLESHEET
   Imports all modular section stylesheets
   ═══════════════════════════════════════════ */

@import url('base.css');
@import url('loader.css');
@import url('navbar.css?v=10');
@import url('hero.css');
@import url('about.css');
@import url('stats.css');
@import url('contact.css');
@import url('footer.css');
@import url('quote-modal.css');
@import url('responsive.css');

/* ═══════════════════════════════════════════
   FLOATING CONTACT BUTTONS
   ═══════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F8FAFC;
  text-decoration: none;
  background: rgba(8, 23, 47, 0.92);
  border: 1px solid rgba(255, 107, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}
.float-btn:hover {
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5),
              0 0 20px rgba(255,107,0,0.12);
  transform: translateX(4px);
}
.float-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  border-radius: 2px;
  background: #FF6B00;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.float-btn:hover::before { opacity: 1; }
.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.float-btn:hover .float-icon {
  transform: scale(1.1) rotate(-5deg);
}
.float-call .float-icon {
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
}
.float-call:hover .float-icon {
  background: rgba(255, 107, 0, 0.22);
}
.float-whatsapp .float-icon {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
}
.float-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5),
              0 0 20px rgba(37,211,102,0.1);
}
.float-whatsapp:hover .float-icon {
  background: rgba(37, 211, 102, 0.18);
}
.float-whatsapp:hover::before {
  background: #25D366;
}
@media (max-width: 480px) {
  .float-btn span { display: none; }
  .float-btn {
    padding: 10px;
    width: 48px;
    height: 48px;
    justify-content: center;
    border-radius: 50%;
  }
}

#about {
  position: relative;
  background: var(--navy-deepest);
  overflow: hidden;
  padding: 120px 8%;
}

.about-bg { position: absolute; inset: 0;
  pointer-events: none; z-index: 0; }

.about-glow-tr {
  position: absolute;
  top: -150px; right: 5%;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,107,0,0.05) 0%, transparent 65%);
}
.about-diagonal {
  position: absolute;
  top: 0; right: 22%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,107,0,0.07) 40%,
    rgba(255,107,0,0.07) 60%,
    transparent 100%);
}
.about-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.025) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255,107,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.about-marquee-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.marquee-row {
  overflow: hidden;
  padding: 8px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marqueeLeft 35s linear infinite;
}
.marquee-track.marquee-reverse {
  animation: marqueeRight 35s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: rgba(248,250,252,0.03);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.marquee-track .dot {
  color: rgba(255,107,0,0.06);
  font-size: 2rem;
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .marquee-track.marquee-reverse {
    animation: none;
  }
}

.about-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 80px;
  align-items: start;
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: var(--white-primary);
  line-height: 1;
  margin: 12px 0 16px;
}
.about-heading .orange { color: var(--orange-primary); }

.about-subhead {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 480px;
}
.about-divider {
  height: 1px;
  background: rgba(255,107,0,0.12);
  margin: 28px 0;
}
.about-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 32px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.about-feat:hover { transform: translateX(4px); }

.feat-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.12);
  display: flex; align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s cubic-bezier(0.16,1,0.3,1);
}
.about-feat:hover .feat-icon-wrap {
  background: rgba(255,107,0,0.15);
}
.about-feat h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--white-primary);
  margin: 0 0 4px;
}
.about-feat p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white-dim);
  margin: 0;
}

#about .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
#about .section-label::before { content: none; }
#about .label-line {
  display: block;
  width: 30px; height: 2px;
  background: var(--orange-primary);
  flex-shrink: 0;
}

#about .reveal-delay-1 { transition-delay: 0.08s; }
#about .reveal-delay-2 { transition-delay: 0.16s; }
#about .reveal-delay-3 { transition-delay: 0.24s; }
#about .reveal-delay-4 { transition-delay: 0.32s; }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,107,0,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: var(--navy-dark);
}
.about-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.about-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15) translateY(0);
  transition: transform 0.1s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,11,24,0.65) 0%, transparent 55%);
}

.about-img-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(5,11,24,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,107,0,0.12);
}
.caption-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.caption-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange-primary);
  box-shadow: 0 0 6px var(--orange-primary);
  animation: captionPulse 2s ease-in-out infinite;
}
@keyframes captionPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
.caption-text {
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
}
.caption-arrows { display: flex; gap: 8px; }
.cap-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,0,0.12);
  background: transparent;
  color: var(--orange-primary);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center;
  justify-content: center;
  transition: background 0.25s cubic-bezier(0.16,1,0.3,1);
  line-height: 1;
}
.cap-arrow:hover {
  background: rgba(255,107,0,0.1);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-stat {
  background: rgba(8,23,47,0.85);
  border: 1px solid rgba(255,107,0,0.12);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4),
              0 0 15px rgba(255,107,0,0.08);
}
.stat-accent-line {
  width: 24px; height: 2px;
  background: var(--orange-primary);
  margin: 0 auto 12px;
  border-radius: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-wrap { height: 260px; }
  .marquee-track span {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
}
@media (max-width: 480px) {
  #about { padding: 80px 5%; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { gap: 8px; }
  .stat-num { font-size: 1.6rem; }
}
