/* Main Theme CSS - Pereezd Vsem Clean Modern Style */

/* Top Bar */
.top-bar {
  background: var(--slate-950);
  color: #94A3B8;
  font-size: 12px;
  border-bottom: 1px solid #1E293B;
  padding: 6px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar__left, .top-bar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.status-live {
  color: #34D399;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.messenger-link {
  color: #E2E8F0;
  font-weight: 500;
}
.messenger-link:hover { color: #FFF; }
.btn-callback-top {
  background: transparent;
  border: none;
  color: var(--amber-500);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #1e293b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.site-logo__text-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.site-logo__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.4);
}
.site-logo__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.site-logo__title {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-logo__title span {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-pro-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 2px;
  -webkit-text-fill-color: #0f172a !important;
}
.site-logo__subtitle {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
}
.site-nav a {
  text-decoration: none;
  color: #cbd5e1;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s;
}
.site-nav a:hover {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  text-align: right;
}
.phone-link {
  font-size: 17px;
  font-weight: 900;
  color: var(--slate-900);
  display: block;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.phone-sub {
  font-size: 11px;
  color: var(--emerald-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 2px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
  animation: pulse 2s infinite;
}
.btn-header-order {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #EA580C 100%);
  color: #0F172A;
  font-weight: 900;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.5);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-header-order:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
}
.btn-flame-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #B45309;
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--slate-900);
}
.mobile-menu {
  display: none;
  background: #FFF;
  padding: 16px;
  border-top: 1px solid var(--slate-200);
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--slate-100);
  text-decoration: none;
  color: var(--slate-800);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0F172A 100%);
  color: #FFF;
  padding: 55px 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(147, 197, 253, 0.3);
  color: #93C5FD;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero__badge-percent {
  background: #F59E0B;
  color: #0F172A;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.hero__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.hero__title .highlight { color: var(--amber-500); }
.hero__subtitle {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 26px;
}
.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.85);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(51, 65, 85, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrap--amber {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FBBF24;
}
.feature-icon-wrap--emerald {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
}
.feature-icon-wrap--blue {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60A5FA;
}
.feature-text strong {
  display: block;
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 700;
}
.feature-text small {
  color: #94A3B8;
  font-size: 11px;
}

/* Hero Form Card */
.hero__form-card {
  background: #FFF;
  color: var(--slate-900);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}
.form-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.form-card__header h3 { margin: 0; font-size: 20px; font-weight: 800; }
.badge-quick {
  background: #DCFCE7;
  color: #166534;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--slate-50);
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-600);
  background: #FFF;
}
.form-disclaimer {
  font-size: 11px;
  color: var(--slate-500);
  text-align: center;
  margin-top: 10px;
}

/* Official Documents & Guarantees Section */
.section-docs-bar {
  background: #0f172a;
  color: #fff;
  padding: 40px 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  position: relative;
}
.docs-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.docs-box__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}
@media (min-width: 992px) {
  .docs-box__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.docs-box__info {
  max-width: 600px;
}
.docs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.docs-badge__icon {
  display: inline-flex;
  align-items: center;
}
.docs-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .docs-title { font-size: 26px; }
}
.docs-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.docs-box__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
@media (min-width: 640px) {
  .docs-box__actions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .docs-box__actions {
    width: auto;
    flex-shrink: 0;
  }
}
.doc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 270px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.doc-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.doc-btn--contract {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: 1px solid rgba(96, 165, 250, 0.4);
}
.doc-btn--contract:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 12px 20px -3px rgba(37, 99, 235, 0.4);
  color: #ffffff;
}
.doc-btn--price {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #020617;
  border: 1px solid rgba(252, 211, 77, 0.4);
}
.doc-btn--price:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 12px 20px -3px rgba(245, 158, 11, 0.4);
  color: #020617;
}
.doc-btn__icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-btn--price .doc-btn__icon-wrap {
  background: rgba(2, 6, 23, 0.15);
}
.doc-btn__icon {
  display: inline-flex;
  align-items: center;
}
.doc-btn--contract .doc-btn__icon { color: #dbeafe; }
.doc-btn--price .doc-btn__icon { color: #0f172a; }
.doc-btn__content {
  flex: 1;
  text-align: left;
}
.doc-btn__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
}
.doc-btn__title {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  margin: 2px 0;
}
.doc-btn__meta {
  display: block;
  font-size: 11px;
  opacity: 0.75;
}
.doc-btn__action {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.doc-btn--price .doc-btn__action {
  background: rgba(2, 6, 23, 0.2);
  color: #020617;
}
.doc-btn:hover .doc-btn__action {
  background: #ffffff;
}
.doc-btn--contract:hover .doc-btn__action {
  color: #2563eb;
}
.doc-btn--price:hover .doc-btn__action {
  background: #020617;
  color: #fbbf24;
}
.docs-box__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  font-size: 12px;
  color: #94a3b8;
}
.docs-pay-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
}
.docs-pay-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-tag {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid #334155;
  color: #cbd5e1;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

/* Common Section */
.section { padding: 70px 0; }
.section-heading { margin-bottom: 40px; }
.section-tag {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--slate-900);
  margin: 0 0 8px;
}
.section-subtitle {
  color: var(--slate-600);
  font-size: 15px;
  margin: 0;
}
.text-center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; }

/* Tariffs */
.section-tariffs { background: var(--slate-100); }
.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tariff-card {
  background: #FFF;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tariff-card.popular {
  border: 2px solid var(--blue-600);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}
.tariff-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--slate-800);
  color: #FFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.tariff-badge.highlight { background: var(--blue-600); }
.tariff-card h3 { font-size: 18px; font-weight: 800; margin: 8px 0 2px; }
.tariff-time { font-size: 12px; color: var(--slate-500); margin-bottom: 14px; }
.tariff-price { margin-bottom: 18px; }
.old-price { font-size: 13px; color: #94A3B8; text-decoration: line-through; margin-right: 6px; }
.price-val { font-size: 24px; font-weight: 900; color: var(--slate-900); }
.tariff-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 12px;
  color: var(--slate-700);
  line-height: 1.8;
}
.tariff-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Fleet */
.section-fleet { background: #FFF; }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fleet-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fleet-card.popular-vehicle {
  border-color: #93C5FD;
}
.fleet-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.fleet-vol {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.fleet-body { padding: 18px; }
.fleet-body h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; }
.fleet-dims { font-size: 11px; color: var(--slate-500); margin: 0 0 12px; }
.fleet-rate { margin-bottom: 10px; }
.fleet-rate strong { font-size: 18px; font-weight: 900; display: block; }
.fleet-rate small { font-size: 11px; color: var(--slate-500); }
.fleet-desc { font-size: 12px; color: var(--slate-600); margin-bottom: 16px; background: #FFF; padding: 8px; border-radius: 8px; border: 1px solid var(--slate-100); }

/* Services */
.section-services { background: #FFF; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.service-head h3 { font-size: 17px; font-weight: 800; margin: 0; }
.service-price { color: var(--blue-600); font-weight: 900; font-size: 14px; }
.service-card p { font-size: 13px; color: var(--slate-600); line-height: 1.6; margin-bottom: 18px; }
.service-link { background: none; border: none; padding: 0; color: var(--blue-600); font-weight: 800; font-size: 13px; cursor: pointer; text-align: left; }

/* Movers */
.section-movers { background: var(--slate-950); color: #FFF; }
.movers-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.movers-desc { font-size: 15px; color: #CBD5E1; line-height: 1.7; margin-bottom: 20px; }
.movers-list { list-style: none; padding: 0; margin: 0 0 24px; font-size: 14px; color: #E2E8F0; line-height: 2; }
.movers-image-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.movers-img { width: 100%; height: 350px; object-fit: cover; }
.movers-overlay-card {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.95), transparent);
  padding: 20px;
  font-size: 12px;
}
.movers-overlay-card strong { font-size: 14px; color: #FFF; display: block; }

/* Steps */
.section-steps { background: var(--slate-50); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
  background: #FFF;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 24px;
}
.step-num { font-size: 32px; font-weight: 900; color: rgba(37, 99, 235, 0.25); margin-bottom: 8px; }
.step-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 8px; }
.step-card p { font-size: 12px; color: var(--slate-600); line-height: 1.6; margin: 0; }

/* Reviews Carousel */
.section-reviews { background: #FFF; overflow: hidden; }
.reviews-badge-line { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.reviews-count-badge { font-size: 11px; font-weight: 700; color: var(--slate-500); background: var(--slate-100); padding: 2px 8px; border-radius: 9999px; }
.reviews-header-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rating-badge { background: #FEF3C7; color: #92400E; font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 12px; display: inline-flex; align-items: center; gap: 6px; }
.reviews-nav-controls { display: flex; align-items: center; gap: 6px; background: var(--slate-100); padding: 4px 6px; border-radius: 12px; border: 1px solid var(--slate-200); }
.reviews-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FFF;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.reviews-nav-btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #FFF;
}
.reviews-nav-btn:active {
  transform: scale(0.94);
}
.reviews-counter {
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
  font-family: monospace;
  color: var(--slate-700);
  user-select: none;
}
.reviews-counter span {
  color: var(--blue-600);
  font-weight: 900;
}
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -10px;
  padding: 12px 0;
  touch-action: pan-y;
  user-select: none;
}
.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc(33.3333% - 20px);
  margin: 0 10px;
  box-sizing: border-box;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.08);
  border-color: #BFDBFE;
}
.review-head { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.review-head strong { color: var(--slate-900); }
.review-head small { color: var(--slate-500); }
.review-route { font-size: 11px; font-weight: 700; color: var(--blue-700); background: #DBEAFE; display: inline-block; padding: 3px 8px; border-radius: 6px; margin-bottom: 12px; }
.review-text { font-size: 13px; color: var(--slate-700); line-height: 1.6; font-style: italic; margin-bottom: 16px; flex-grow: 1; }
.review-foot { display: flex; justify-content: space-between; font-size: 12px; border-top: 1px solid var(--slate-200); padding-top: 10px; }
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.reviews-dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: var(--slate-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.reviews-dot:hover {
  background: var(--slate-400);
}
.reviews-dot.active {
  width: 28px;
  background: var(--blue-600);
}

@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 16px);
    margin: 0 8px;
  }
  .reviews-carousel {
    margin: 0 -8px;
  }
}

@media (max-width: 640px) {
  .review-card {
    flex: 0 0 calc(100% - 16px);
    margin: 0 8px;
  }
  .reviews-carousel {
    margin: 0 -8px;
  }
  .reviews-header-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* FAQ */
.section-faq { background: #F8FAFC; border-top: 1px solid #E2E8F0; padding: 70px 0; }
.container-sm { max-width: 840px; }
.section-subtitle { font-size: 16px; color: #64748B; margin: 8px 0 0; font-weight: 400; }
.faq-list {
  background: #FFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.faq-item {
  border-bottom: 1px solid #F1F5F9;
  transition: background-color 0.2s ease;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item.open {
  background: rgba(255, 247, 237, 0.4);
}
.faq-btn {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.faq-question {
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.4;
}
.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFF7ED;
  color: #EA580C;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item.open .faq-icon {
  background: #EA580C;
  color: #FFF;
}
.faq-body {
  padding: 0 24px 22px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-body {
  display: block;
}

/* Contact CTA */
.section-contact { background: #141F47; color: #FFF; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.contact-title { font-size: 34px; font-weight: 900; margin: 12px 0; }
.contact-desc { font-size: 15px; color: #E2E8F0; line-height: 1.6; margin-bottom: 24px; }
.contact-details { font-size: 14px; line-height: 1.8; color: #F1F5F9; }
.contact-form-card {
  background: #FFF;
  color: var(--slate-900);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}
.contact-form-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 16px; }

/* Footer */
.site-footer { background: var(--slate-950); color: #94A3B8; font-size: 13px; padding: 50px 0 20px; border-top: 1px solid #1E293B; }
.site-footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; gap: 30px; margin-bottom: 40px; }
.footer-logo { font-size: 20px; font-weight: 900; color: #FFF; margin-bottom: 8px; }
.footer-logo span { color: var(--blue-600); }
.footer-desc { font-size: 12px; line-height: 1.6; margin-bottom: 12px; }
.footer-reg { font-size: 11px; color: #64748B; }
.footer-col h4 { color: #FFF; font-size: 13px; font-weight: 800; text-transform: uppercase; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; line-height: 2; }
.footer-col a:hover { color: #FFF; }
.footer-phone { font-size: 16px; font-weight: 800; color: #FFF; display: block; margin-bottom: 6px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid #1E293B; padding-top: 20px; font-size: 12px; color: #64748B; }

/* Modal */
.pvz-modal { display: none; position: fixed; inset: 0; z-index: 100; align-items: center; justify-content: center; }
.pvz-modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.75); backdrop-filter: blur(4px); }
.modal-dialog { position: relative; background: #FFF; border-radius: 20px; padding: 32px; max-width: 440px; width: 90%; z-index: 101; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.modal-close { position: absolute; top: 16px; right: 16px; font-size: 24px; background: none; border: none; cursor: pointer; color: #94A3B8; }
.modal-dialog h3 { font-size: 22px; font-weight: 900; margin: 0 0 6px; }
.modal-sub { font-size: 13px; color: var(--slate-600); margin: 0 0 20px; }

/* Responsive Media Queries & Mobile Optimizations */
@media (max-width: 1024px) {
  .hero__inner, .movers-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .tariffs-grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-grid, .steps-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .site-footer__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .site-nav { display: none; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 28px; }
  .hero__title { font-size: 34px; }
}

/* Mobile Sticky Action Bar with Iridescent Glowing CTA */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(245, 158, 11, 0.35);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  z-index: 99;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.75);
  align-items: center;
  gap: 8px;
}

@media (max-width: 1024px) {
  .mobile-sticky-bar {
    display: flex;
  }
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  touch-action: manipulation;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.mobile-bar-btn:active {
  transform: scale(0.96);
}

.mobile-bar-btn.phone {
  background: #1e293b;
  border: 1px solid #334155;
  color: #fbbf24;
  flex-direction: column;
  padding: 6px 14px;
  flex-shrink: 0;
  min-width: 64px;
}
.mobile-bar-btn.phone .bar-text { font-size: 10px; color: #f8fafc; font-weight: 700; margin-top: 2px; }

/* Dynamic Alluring & Iridescent Order Button */
@keyframes pvzIridescentShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pvzBeamSweep {
  0% { transform: translateX(-150%) skewX(-25deg); }
  25%, 100% { transform: translateX(250%) skewX(-25deg); }
}

@keyframes pvzAlluringPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.6), 0 0 25px rgba(234, 88, 12, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.9), 0 0 40px rgba(234, 88, 12, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    transform: translateY(-1px) scale(1.015);
  }
}

.mobile-bar-btn.order {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fbbf24, #fef08a, #f59e0b, #f97316, #e11d48, #f59e0b, #fbbf24);
  background-size: 250% 250%;
  animation: pvzIridescentShift 3s ease infinite, pvzAlluringPulse 2.2s ease-in-out infinite;
  color: #020617;
  border: 1px solid rgba(254, 240, 138, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px;
  min-height: 48px;
}

.order-beam-sweep {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  pointer-events: none;
  animation: pvzBeamSweep 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.order-left {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.order-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  flex-shrink: 0;
}

.order-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.order-main-text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #020617;
  text-transform: uppercase;
}

.order-sub-text {
  font-size: 10px;
  font-weight: 700;
  color: rgba(2, 6, 23, 0.85);
}

.order-badge-pill {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #020617;
  color: #fde047;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .top-bar__inner { justify-content: center; text-align: center; }
  .top-bar__left { justify-content: center; }
  .top-bar__city { display: none; }
  .docs-bar__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .flex-between { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rating-badge { width: 100%; justify-content: space-between; }
  .modal-dialog { padding: 24px 18px; width: 95%; max-height: 90vh; overflow-y: auto; }
}

@media (max-width: 640px) {
  body { padding-bottom: 74px !important; }
  .container { padding-left: 10px !important; padding-right: 10px !important; }
  .mobile-sticky-bar { display: flex; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px)); }
  .site-header {
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
  }
  .site-header__inner {
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
  }
  .site-logo {
    gap: 7px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }
  .site-logo__icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px;
    border-radius: 9px;
    flex-shrink: 0;
  }
  .site-logo__text-wrap {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }
  .site-logo__title {
    font-size: 15px !important;
    line-height: 1.1;
    white-space: nowrap;
  }
  .logo-pro-badge {
    font-size: 8px !important;
    padding: 1px 3px !important;
  }
  .site-logo__subtitle {
    font-size: 9px !important;
    line-height: 1.15;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
    color: #94a3b8;
  }
  .site-header__actions {
    gap: 5px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .site-header__actions .header-phone { display: none !important; }
  .btn-header-order {
    padding: 6px 10px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    height: 32px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35) !important;
  }
  .btn-header-order .btn-flame-wrap {
    display: inline-flex !important;
    padding: 0 !important;
    background: transparent !important;
  }
  .btn-header-order .btn-flame-wrap svg {
    width: 13px !important;
    height: 13px !important;
  }
  .mobile-toggle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    padding: 5px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    cursor: pointer;
  }
  .mobile-toggle svg {
    width: 18px !important;
    height: 18px !important;
  }
  .section { padding: 40px 0; }
  .hero { padding: 36px 0; }
  .hero__title { font-size: 26px; line-height: 1.2; }
  .hero__subtitle { font-size: 14px; }
  .hero__features { grid-template-columns: 1fr; gap: 10px; }
  .tariffs-grid, .fleet-grid, .services-grid, .steps-grid, .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .form-control { font-size: 16px; } /* Prevents iOS auto-zoom on input focus */
  .hero__form-card { padding: 20px 16px; }
  .contact-form-card { padding: 22px 16px; }
  .contact-title { font-size: 24px; }
  .faq-btn { padding: 16px 18px; }
  .faq-question { font-size: 14px; }
  .faq-body { padding: 0 18px 18px; font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 380px) {
  .site-logo__subtitle { display: none !important; }
  .site-logo__title { font-size: 14px !important; }
  .btn-header-order { padding: 5px 8px !important; font-size: 10.5px !important; }
  .hero__title { font-size: 22px; }
  .section-title { font-size: 22px; }
  .mobile-bar-btn { font-size: 10px; gap: 4px; padding: 8px 4px; }
}