/* ==========================================================================
   EREKE EVACUATOR — FESTIVAL COMPONENTS
   Interactive 3D Cards, SOS Radar, Smart Calculator, Reviews, FAQ
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 3D HOLOGRAPHIC FLEET CARDS
   -------------------------------------------------------------------------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  perspective: 1200px;
}

.fleet-card {
  position: relative;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.fleet-card:hover {
  border-color: var(--border-active);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.2), 0 0 30px rgba(255, 107, 0, 0.08);
}

/* Holographic Specular Shine */
.fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}

.fleet-card:hover::before {
  opacity: 1;
}

.fleet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
}

.fleet-type-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan-accent);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fleet-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
}

.fleet-card-media {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  z-index: 3;
}

.fleet-card-media img {
  max-width: 90%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s var(--ease-out-expo);
  transform: translateZ(30px);
}

.fleet-card:hover .fleet-card-media img {
  transform: translateZ(50px) scale(1.06);
}

.fleet-card-body {
  position: relative;
  z-index: 3;
}

.fleet-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.fleet-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 42px;
}

.fleet-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.fleet-spec-label {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.fleet-spec-val {
  color: var(--text-primary);
  font-weight: 600;
}

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 3;
}

.fleet-price-box {
  display: flex;
  flex-direction: column;
}

.fleet-price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.fleet-price-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--amber-bright);
}

.btn-card-order {
  padding: 0.6rem 1.15rem;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid var(--border-active);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-card-order:hover {
  background: var(--amber-primary);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}


/* --------------------------------------------------------------------------
   2. ALMATY SOS DISTRICT DISPATCH RADAR
   -------------------------------------------------------------------------- */
.radar-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.radar-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.radar-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Radar Screen Simulation */
.radar-screen-box {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, #0f1522 0%, #080a0f 80%);
  border: 2px solid rgba(0, 240, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Concentric Radar Rings */
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 240, 255, 0.2);
  pointer-events: none;
}

.radar-ring:nth-child(1) { width: 30%; height: 30%; }
.radar-ring:nth-child(2) { width: 55%; height: 55%; }
.radar-ring:nth-child(3) { width: 80%; height: 80%; }
.radar-ring:nth-child(4) { width: 96%; height: 96%; border-style: solid; border-color: rgba(0, 240, 255, 0.4); }

/* Crosshairs */
.radar-crosshair-h {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 240, 255, 0.2);
  pointer-events: none;
}

.radar-crosshair-v {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(0, 240, 255, 0.2);
  pointer-events: none;
}

/* Rotating Sweep Beam */
.radar-sweep-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: top left;
  background: conic-gradient(from 0deg, rgba(0, 240, 255, 0.4) 0deg, rgba(0, 240, 255, 0) 60deg);
  animation: radarRotate 5s linear infinite;
  pointer-events: none;
}

@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Radar District Nodes */
.radar-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s;
}

.radar-node:hover {
  transform: scale(1.15);
}

.radar-node-blip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber-primary);
  box-shadow: 0 0 12px var(--amber-primary);
  position: relative;
}

.radar-node-blip::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--amber-bright);
  animation: blipPulse 1.8s infinite;
}

@keyframes blipPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.radar-node-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.radar-node.active .radar-node-blip {
  background: var(--cyan-accent);
  box-shadow: 0 0 15px var(--cyan-accent);
}

.radar-node.active .radar-node-name {
  border-color: var(--cyan-accent);
  color: var(--cyan-accent);
}

/* Radar Center Almaty Tag */
.radar-center-label {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  pointer-events: none;
}

/* Radar Control Telemetry Panel */
.radar-telemetry {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.radar-status-panel {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.telemetry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.telemetry-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.telemetry-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.telemetry-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.telemetry-value.highlight-cyan {
  color: var(--cyan-accent);
}

.telemetry-value.highlight-amber {
  color: var(--amber-bright);
}

/* District Quick Selector Buttons */
.district-btn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-district-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-district-pill:hover, .btn-district-pill.active {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--amber-primary);
  color: #fff;
}


/* --------------------------------------------------------------------------
   3. SMART INTERACTIVE COST CALCULATOR
   -------------------------------------------------------------------------- */
.calculator-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.calc-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.calc-step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: var(--amber-primary);
  color: #000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Vehicle Types Horizontal Select */
.calc-vehicle-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.vehicle-radio-label {
  position: relative;
  cursor: pointer;
}

.vehicle-radio-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vehicle-radio-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
}

.vehicle-radio-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
}

.vehicle-radio-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.vehicle-radio-label input:checked + .vehicle-radio-box {
  background: rgba(255, 107, 0, 0.12);
  border-color: var(--amber-primary);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.vehicle-radio-label input:checked + .vehicle-radio-box .vehicle-radio-icon {
  opacity: 1;
  transform: scale(1.1);
}

.vehicle-radio-label input:checked + .vehicle-radio-box .vehicle-radio-title {
  color: #fff;
}

/* Distance Slider */
.calc-slider-group {
  margin-bottom: 2.25rem;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.slider-value-badge {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan-accent);
}

.custom-range-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber-primary);
  cursor: pointer;
  box-shadow: 0 0 15px var(--amber-primary);
  border: 2px solid #fff;
  transition: transform 0.1s;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Extra Options Checkboxes */
.calc-extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.calc-checkbox-label input {
  accent-color: var(--amber-primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.calc-checkbox-label:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Calculator Total & Checkout Column */
.calc-summary-panel {
  background: linear-gradient(145deg, #131822, #0d1017);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.calc-total-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.calc-price-display {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0.5rem 0 1.5rem;
}

.calc-price-display span {
  color: var(--amber-bright);
}

.calc-breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.calc-breakdown-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.calc-breakdown-item span:last-child {
  font-family: var(--font-mono);
  color: #fff;
}

.calc-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-calc-whatsapp {
  background: #25d366;
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
}

.btn-calc-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.btn-calc-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.btn-calc-call:hover {
  background: rgba(255, 255, 255, 0.15);
}


/* --------------------------------------------------------------------------
   4. AUTHENTIC GALLERY & REAL WORK SHOWCASE
   -------------------------------------------------------------------------- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  group: true;
}

.gallery-card:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.gallery-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber-bright);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}


/* --------------------------------------------------------------------------
   5. REVIEWS & TESTIMONIALS
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.review-card:hover {
  border-color: rgba(255, 184, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.review-stars {
  color: var(--gold-accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--success-green);
  background: rgba(0, 255, 136, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-primary), #333);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.author-car {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}


/* --------------------------------------------------------------------------
   6. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item.active .faq-question {
  color: var(--amber-bright);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}


/* --------------------------------------------------------------------------
   7. FLOATING MOBILE SOS DISPATCH BAR
   -------------------------------------------------------------------------- */
.mobile-quick-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-subtle);
  z-index: 999;
}

.mobile-call-flex {
  display: flex;
  gap: 0.75rem;
}

.btn-mobile-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-mobile-call.phone {
  background: linear-gradient(135deg, var(--amber-primary), #ff3d00);
  color: #fff;
}

.btn-mobile-call.whatsapp {
  background: #25d366;
  color: #000;
}


/* --------------------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS FOR COMPONENTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .radar-layout {
    grid-template-columns: 1fr;
  }
  .radar-screen-box {
    max-width: 480px;
    margin: 0 auto;
  }
  .calculator-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card:nth-child(1) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .radar-wrapper {
    padding: 1.5rem;
  }
  .mobile-quick-call-bar {
    display: block;
  }
  body {
    padding-bottom: 75px;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  .gallery-card:nth-child(1) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .calc-extras-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   8. PREMIUM AESTHETIC PLAQUES & BENTO TRUST SYSTEM
   -------------------------------------------------------------------------- */
.premium-plaque {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 25, 36, 0.72) 0%, rgba(10, 13, 19, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.premium-plaque:hover {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(255, 107, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.plaque-micro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.plaque-micro-pill.amber {
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.28);
  color: var(--amber-bright);
}

.plaque-micro-pill.green {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.25);
  color: #7affc1;
}

.bento-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.bento-trust-card {
  position: relative;
  background: linear-gradient(145deg, rgba(17, 21, 30, 0.8), rgba(9, 12, 17, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.6rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease-out-expo);
}

.bento-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 107, 0, 0.15);
}

.bento-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-bright);
  margin-bottom: 1.25rem;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.bento-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Master Driver Profile Plaque */
.driver-bio-plaque {
  background: linear-gradient(135deg, rgba(22, 28, 40, 0.85) 0%, rgba(10, 13, 18, 0.95) 100%);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 107, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  margin-bottom: 5rem;
}

.driver-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.driver-quote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 1.75rem;
  border-left: 3px solid var(--amber-primary);
  padding-left: 1.25rem;
}

.driver-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.cred-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.cred-val span {
  color: var(--amber-primary);
}

.cred-lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.driver-cta-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.driver-avatar-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--amber-primary);
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
  padding: 3px;
  margin-bottom: 1rem;
}

.driver-avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .bento-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .driver-bio-plaque {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .bento-trust-grid {
    grid-template-columns: 1fr;
  }
  .driver-credentials {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --------------------------------------------------------------------------
   9. SCROLL-LINKED WINCH SYSTEM (ЛЕБЕДКА ЕРЕКЕ)
   Interactive metallic winch cable and hook that travel down the page
   -------------------------------------------------------------------------- */
.winch-spine-wrapper {
  position: fixed;
  right: 1.5rem;
  top: 18%;
  bottom: 18%;
  width: 48px;
  z-index: 900;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.winch-rail-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

/* Steel Wire Rope */
.winch-cable-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(180deg, #94a3b8 0%, #475569 50%, #1e293b 100%);
  box-shadow: 0 0 6px rgba(255, 107, 0, 0.4);
  border-radius: 2px;
  height: 0;
  z-index: 1;
}

.winch-cable-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.6) 0%, rgba(0, 240, 255, 0.4) 100%);
  filter: blur(4px);
  height: 0;
  z-index: 0;
}

/* Traveling Steel Winch Hook */
.winch-hook-tracker {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 54px;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
  transition: filter 0.2s;
}

.winch-hook-tracker:hover {
  filter: drop-shadow(0 0 16px var(--amber-primary));
}

.hook-svg {
  width: 100%;
  height: 100%;
}

/* Hook Telemetry Floating Tag */
.winch-telemetry-tag {
  position: absolute;
  right: 52px;
  top: 10px;
  background: rgba(10, 14, 22, 0.92);
  border: 1px solid rgba(255, 107, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.winch-telemetry-tag span.highlight {
  color: var(--amber-bright);
  font-weight: 700;
}

/* Waypoints along the rail */
.winch-waypoints-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: auto;
  z-index: 2;
}

.winch-waypoint {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
}

.waypoint-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.6);
  transition: all 0.25s;
}

.winch-waypoint:hover .waypoint-dot,
.winch-waypoint.active .waypoint-dot {
  background: var(--amber-primary);
  box-shadow: 0 0 10px var(--amber-primary);
  transform: scale(1.5);
}

.waypoint-label {
  position: absolute;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.7);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-xs);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s;
  pointer-events: none;
  white-space: nowrap;
}

.winch-waypoint:hover .waypoint-label,
.winch-waypoint.active .waypoint-label {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

/* Hide winch rail on small mobile screens to prevent clutter */
@media (max-width: 900px) {
  .winch-spine-wrapper {
    display: none;
  }
}


