/* ══════════════════════════════════════════════════════════════
   QUOTATION PROMOTIONS SECTION — quotation_promo.css
   Extends the Uvcon main.css design system.
   ══════════════════════════════════════════════════════════════ */

.qp-section {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  padding-top: 40px; 
}

.qp-bg-glow {
  position: absolute;
  width: 900px; height: 600px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(124, 58, 237, 0.08) 0%,
    rgba(59, 130, 246, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.qp-wrapper { position: relative; z-index: 1; }

/* ── HEADER ────────────────────────────────────────────────── */
.qp-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.qp-header .section-sub { margin-top: 20px; margin-bottom: 32px; }

/* ── STAT PILLS ────────────────────────────────────────────── */
.qp-pills {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px; margin-top: 28px;
}
.qp-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--muted); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px; letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.qp-pill i { color: var(--blue); font-size: 12px; }
.qp-pill:hover {
  background: rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.35);
  color: var(--text);
}

/* ── MAIN SPLIT ────────────────────────────────────────────── */
.qp-main {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center; margin-bottom: 72px;
}

/* ── FEATURE LIST (LEFT) ───────────────────────────────────── */
.qp-features { display: flex; flex-direction: column; gap: 24px; }

.qp-feat-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.qp-feat-item:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateX(4px);
  box-shadow: -4px 0 0 0 var(--blue), 0 8px 32px rgba(0,0,0,0.3);
}
.qp-feat-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.25);
}
.qp-feat-body h4 {
  font-size: 16px; color: var(--text); margin-bottom: 6px;
  font-weight: 700; letter-spacing: -0.015em;
}
.qp-feat-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

.qp-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; text-decoration: none;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: 0.01em; margin-top: 8px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 6px 24px rgba(59,130,246,0.3); align-self: flex-start;
}
.qp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(59,130,246,0.45);
  opacity: 0.95; color: #fff;
}

/* ── MOCKUP FRAME (RIGHT) ──────────────────────────────────── */
.qp-mockup-area { position: relative; }

.qp-device-frame {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.12),
    0 32px 80px rgba(0,0,0,0.5),
    0 0 80px rgba(59,130,246,0.08);
  position: relative;
}

.qp-device-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: rgba(10,14,26,0.8);
  border-bottom: 1px solid var(--border);
}
.qp-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.qp-dot--red   { background: #ff5f57; }
.qp-dot--amber { background: #febc2e; }
.qp-dot--green { background: #28c840; }
.qp-address-bar {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 5px 12px; font-family: 'Figtree', monospace;
  font-size: 12px; color: var(--faint); margin-left: 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Carousel */
.qp-carousel {
  position: relative; overflow: hidden;
  background: #f5f5f5; min-height: 460px;
}
.qp-slide {
  display: none; flex-direction: column; position: relative;
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.qp-slide--active { display: flex; opacity: 1; transform: translateX(0); }
.qp-slide img { width: 100%; height: auto; display: block; object-fit: contain; }
.qp-slide-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(6,9,15,0.88) 0%, transparent 100%);
  color: rgba(255,255,255,0.92); font-size: 13px; font-weight: 600;
  padding: 24px 16px 12px;
  display: flex; align-items: center; gap: 8px; letter-spacing: 0.01em;
}
.qp-slide-label i { color: var(--cyan); }

/* Carousel nav */
.qp-carousel-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  background: rgba(10,14,26,0.8); border-top: 1px solid var(--border);
}
.qp-nav-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--muted); font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.qp-nav-btn:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.4); color: var(--blue);
}
.qp-dots { display: flex; gap: 7px; align-items: center; }
.qp-dot-btn {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--surface); cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.qp-dot-btn--active { background: var(--blue); width: 22px; border-radius: 4px; }

/* Floating badges */
.qp-badge {
  position: absolute; display: flex; align-items: center; gap: 9px;
  background: var(--bg3); border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius-sm); padding: 10px 16px;
  font-size: 13px; color: var(--text); font-weight: 600;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4); white-space: nowrap;
  z-index: 10; animation: qp-float 3s ease-in-out infinite;
}
.qp-badge i { color: var(--blue); }
.qp-badge--top    { top: -18px; right: -22px; animation-delay: 0s; }
.qp-badge--bottom { bottom: 66px; left: -22px; animation-delay: 1.5s; }

@keyframes qp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── INDUSTRY STRIP ────────────────────────────────────────── */
.qp-industries {
  text-align: center; padding-top: 56px;
  border-top: 1px solid var(--border);
}
.qp-industries-label {
  font-size: 13px; font-weight: 600; color: var(--faint);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.qp-industry-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.qp-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 9px 18px; border-radius: 100px; cursor: default;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.qp-chip i { color: var(--blue); font-size: 13px; }
.qp-chip:hover {
  border-color: rgba(59,130,246,0.35);
  background: rgba(59,130,246,0.07); color: var(--text);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) { .qp-main { gap: 48px; } }

@media (max-width: 900px) {
  .qp-main { grid-template-columns: 1fr; gap: 56px; }
  .qp-mockup-area { order: -1; }
  .qp-badge--top    { top: -14px; right: 12px; }
  .qp-badge--bottom { bottom: 72px; left: 12px; }
  .qp-cta-btn { align-self: center; }
}

@media (max-width: 640px) {
  .qp-header { margin-bottom: 48px; }
  .qp-pill { font-size: 12px; padding: 6px 13px; }
  .qp-feat-item { padding: 18px; gap: 15px; }
  .qp-feat-icon { width: 40px; height: 40px; font-size: 16px; }
  .qp-carousel { min-height: 320px; }
  .qp-badge { font-size: 12px; padding: 8px 12px; }
  .qp-badge--top    { right: 8px; top: -12px; }
  .qp-badge--bottom { left: 8px; }
  .qp-cta-btn { width: 100%; justify-content: center; align-self: stretch; }
}
