/* ========== ENOBUS SUPER APP ========== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --royal: #0f4c81;
  --green: #00b050;
  --gold: #ffcc00;
  --bg: #f5f6f8;
  --white: #ffffff;
  --text: #1a1a2e;
  --text2: #555;
  --muted: #6b7280;
  --border: #e5e5e5;
}

html { font-size: 16px; }
body {
  font-family: 'Vazirmatn', sans-serif;
  background: #000;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.app-container {
  width: 100%;
  max-width: 430px;
  height: 100vh;
  max-height: 932px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* ========== STATUS BAR ========== */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px 4px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}
.status-icons { display: flex; gap: 6px; }

/* ========== HOME HEADER ========== */
.home-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 12px;
  background: var(--white);
  z-index: 10;
}
.home-header .icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
}
.msg-btn::after {
  content: '';
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.search-box {
  flex: 1;
  height: 40px;
  background: var(--bg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}
.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.search-box input::placeholder { color: var(--muted); }

/* ========== SCROLL ========== */

.scroll-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 90px;
}
.scroll-content::-webkit-scrollbar { display: none; }

/* ========== HERO BANNER ========== */
.hero-banner {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a5fa8 0%, #0f4c81 40%, #0d3d68 100%);
  border-radius: 16px;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 14px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-text h2 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 4px;
}
.hero-text p {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
}
.hero-vehicle {
  font-size: 52px;
  line-height: 1;
  opacity: 0.95;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.hero-cta-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-cta-btn:hover {
  background: rgba(255,255,255,0.35);
}

/* ========== PARTS (NO SCROLL) ========== */
.parts-scroll {
  display: flex;
  justify-content: center;
  gap: 16px;
  overflow-x: visible;
  padding-bottom: 4px;
}
.part-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.part-emoji {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.part-circle span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}



.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s;
}
.dot.active { background: #fff; }

/* ========== SERVICE CIRCLES (5) ========== */
.services-grid-5 {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 16px;
}
.svc-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 1;
}
.ring-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}
.svc-ring:hover .ring-icon { transform: scale(1.08); }
.svc-ring span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

/* ========== GREEN INSTALLMENT BANNER ========== */
.insta-banner {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100px;
  box-shadow: 0 8px 24px rgba(0,176,80,0.12);
}
.insta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), #009940, #007a33);
  border-radius: 16px;
}
.insta-body {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insta-text h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.insta-text h3 em { font-style: normal; }
.insta-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 4px;
}
.insta-graphic {
  font-size: 40px;
  line-height: 1;
}

/* ========== PRODUCTS SECTION ========== */
.products-section { padding: 0 16px 16px; }
.section-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-title-row h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.products-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.product-img {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.product-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.cart-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.cart-btn:hover { transform: scale(1.1); }

.see-all-products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  background: var(--bg);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--royal);
  text-decoration: none;
  transition: background 0.2s;
}
.see-all-products:hover { background: #e8ecf1; }

/* ========== PAY BENEFITS (Blue) ========== */
.pay-benefits {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
}
.pay-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
  border-radius: 16px;
}
.pay-body {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pay-text h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.pay-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pay-text li {
  font-size: 12px;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pay-graphic { font-size: 40px; line-height: 1; }

/* ========== SALES BANNER (Yellow) ========== */
.sales-banner {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
}
.sales-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), #f5b800, #e6a800);
  border-radius: 16px;
}
.sales-body {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sales-text h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.sales-btn {
  align-self: flex-start;
  padding: 10px 20px;
  background: #fff;
  color: var(--text);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sales-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* ========== BOTTOM NAV (5 items) ========== */
.bottom-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 100;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s;
  padding: 4px 10px;
  flex: 1;
}
.nav-item svg, .nav-item i { color: currentColor; }
.nav-item.active {
  color: var(--royal);
}
.home-page .nav-item.active { color: #0f4c81; }
.shuttle-page-v2 .nav-item.active { color: #0056A0; }
.shop-page .nav-item.active { color: #F97316; }
.pay-page-v2 .nav-item.active { color: #14B8A6; }
.service-page-v2 .nav-item.active { color: #EA580C; }
.studio-page .nav-item.active { color: #E11D48; }


/* ========== SHUTTLE HEADER ========== */
.shuttle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  z-index: 10;
}
.shuttle-header .header-center { flex: 1; text-align: center; }
.shuttle-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}

/* ---------- Green Banner ---------- */
.green-banner {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
}
.green-banner .banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00b050, #009940, #007a33);
  border-radius: 16px;
}
.green-banner .banner-glow {
  position: absolute;
  top: -40%; left: -20%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
}
.green-banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  color: #fff;
}
.green-banner .welcome-text h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.green-banner .welcome-text p {
  font-size: 13px;
  opacity: 0.85;
}
.green-banner .quick-stats {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.green-banner .stat-card {
  flex: 1;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.green-banner .stat-label { font-size: 11px; opacity: 0.8; }
.green-banner .stat-value { font-size: 16px; font-weight: 700; }

/* ---------- Shuttle Options ---------- */
.shuttle-services { padding: 0 16px 16px; }
.shuttle-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shuttle-option {
  display: block;
  padding: 14px;
  border-radius: 14px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.shuttle-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.shuttle-option.primary { border-right: 3px solid var(--green); }
.shuttle-option.secondary { border-right: 3px solid var(--royal); }
.option-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.option-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  flex-shrink: 0;
}
.option-text { flex: 1; }
.option-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.option-text p { font-size: 11px; color: var(--muted); }
.option-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
}

/* ========== ACTIVITY ========== */
.activity-section { padding: 0 16px 16px; }
.activity-list { display: flex; flex-direction: column; gap: 10px; }
.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.activity-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.bg-green { background: linear-gradient(135deg, #00b050, #00d060); }
.bg-blue  { background: linear-gradient(135deg, #0f4c81, #2563eb); }
.bg-purple{ background: linear-gradient(135deg, #7B5CDB, #9B7AEA); }
.bg-orange{ background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.bg-red   { background: linear-gradient(135deg, #EF4444, #F87171); }
.activity-info { flex: 1; }
.activity-info h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.activity-info p { font-size: 11px; color: var(--muted); }
.activity-amount { font-size: 13px; font-weight: 700; }
.activity-amount.negative { color: #e74c3c; }
.activity-amount.positive { color: var(--green); }

.bottom-spacer { height: 16px; }

/* ========== FORMS ========== */
.form-section { padding: 0 16px 16px; }
.form-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.form-subtitle { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 5px; }
.form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(15,76,129,0.1);
}
.form-input::placeholder { color: var(--muted); }
.form-select {
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
  color: var(--text);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}
.form-select:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(15,76,129,0.1);
}
.form-row { display: flex; gap: 10px; }
.form-row .form-group { flex: 1; }
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--green), #009940);
  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,176,80,0.25);
}
.submit-btn.purple {
  background: linear-gradient(135deg, var(--royal), #1a5fa8);
}
.submit-btn.purple:hover {
  box-shadow: 0 8px 20px rgba(15,76,129,0.25);
}

/* ---------- Info Cards ---------- */
.info-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ---------- Trip Type ---------- */
.trip-type-selector { display: flex; gap: 8px; margin-bottom: 14px; }
.trip-type-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.trip-type-btn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ---------- Location Input ---------- */
.location-input-wrapper { position: relative; }
.location-input-wrapper .form-input { padding-right: 40px; }
.location-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

/* ---------- Price Estimate ---------- */
.price-estimate {
  background: linear-gradient(135deg, var(--green), #009940);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  margin-bottom: 14px;
}
.price-estimate h4 { font-size: 13px; font-weight: 600; opacity: 0.9; margin-bottom: 6px; }
.price-estimate .price { font-size: 24px; font-weight: 800; }
.price-estimate .price-unit { font-size: 13px; font-weight: 500; }

/* ---------- Vehicle Selector ---------- */
.vehicle-selector { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 14px; scrollbar-width: none; }
.vehicle-selector::-webkit-scrollbar { display: none; }
.vehicle-option {
  flex-shrink: 0;
  width: 90px;
  padding: 14px 10px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.vehicle-option.active { border-color: var(--green); background: rgba(0,176,80,0.04); }
.vehicle-option svg { color: var(--text2); }
.vehicle-option.active svg { color: var(--green); }
.vehicle-option .vehicle-name { font-size: 12px; font-weight: 600; color: var(--text); }
.vehicle-option .vehicle-price { font-size: 11px; color: var(--muted); }

/* ---------- Passenger Counter ---------- */
.passenger-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.counter-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.counter-btn:hover { background: var(--green); color: #fff; }
.counter-value { font-size: 16px; font-weight: 700; color: var(--text); min-width: 20px; text-align: center; }

/* ---------- Upload Box ---------- */
.upload-box {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  border: 2px dashed var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}
.upload-box:hover { border-color: var(--royal); background: rgba(15,76,129,0.02); }
.upload-box svg { color: var(--muted); }
.upload-box span { font-size: 12px; color: var(--text2); }

/* ========== HOME v2 ========== */
.home-header-v2 {
  padding: 8px 16px 12px;
  background: var(--white);
  z-index: 10;
}
.search-box-v2 {
  width: 100%;
  height: 44px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--border);
}
.search-box-v2 input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.search-box-v2 input::placeholder { color: var(--muted); }

/* Hero Banner v2 (Purple/Blue) */
.hero-banner-v2 {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1, #4f46e5, #4338ca, #3730a3);
  border-radius: 20px;
}
.hero-v2-content {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  color: #fff;
}
.hero-v2-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.hero-v2-people {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-v2-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero-v2-img {
  font-size: 80px;
  text-align: center;
  line-height: 1;
  margin: 8px 0;
}
.hero-v2-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  color: #3730a3;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.hero-v2-btn:hover { transform: translateY(-2px); }

/* Grid Menu (6 items) */
.grid-menu-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 16px 16px;
}
.grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px;
  background: var(--white);
  border-radius: 20px;
  text-decoration: none;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.grid-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.06),
    0 12px 24px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.06);
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.grid-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}
.grid-card:hover .grid-icon {
  transform: scale(1.08);
}
.grid-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

/* Credit Banner (Mid-page) */
.credit-banner {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
}
.credit-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
  border-radius: 16px;
}
.credit-body {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.credit-text h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.credit-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.2s;
}
.credit-btn:hover { transform: translateY(-1px); }
.credit-graphic { font-size: 40px; line-height: 1; }
.credit-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 12px;
}

/* Parts Section */
.parts-section { padding: 0 16px 16px; }
.parts-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.parts-square {
  width: 14px; height: 14px;
  background: #f59e0b;
  border-radius: 4px;
}
.parts-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.parts-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  justify-content: space-around;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.parts-scroll::-webkit-scrollbar { display: none; }
.part-circle {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.part-emoji {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 16px rgba(0,0,0,0.06),
    inset 0 -2px 4px rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.part-circle:hover .part-emoji {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.06),
    0 16px 32px rgba(0,0,0,0.08),
    inset 0 -2px 4px rgba(255,255,255,0.5);
}
.part-circle span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* Home Active Nav (Green) */
.home-page .nav-item.active { color: var(--green); }

/* Home page sections consistent spacing */
.home-page section { margin-bottom: 16px; }
.home-page .scroll-content {
  background: #f8f9fa;
}


/* ========== SERVICE CARDS (Pay / Driver / Studio) ========== */
.service-card { padding: 0 16px 16px; }
.service-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.service-square {
  width: 12px; height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.blue-square { background: #2563eb; }
.blue-light-square { background: #60a5fa; }
.teal-square { background: #14b8a6; }
.service-header h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.service-box {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.service-top {
  padding: 18px 20px 14px;
  color: #fff;
  position: relative;
  min-height: 120px;
}
.navy-gradient { background: linear-gradient(135deg, #1e3a5f, #0f4c81, #1a365d); }
.sky-gradient { background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb); }
.teal-gradient { background: linear-gradient(135deg, #2dd4bf, #14b8a6, #0d9488); }
.service-top h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.service-top h4 strong { color: var(--green); }
.service-graphic {
  font-size: 44px;
  position: absolute;
  bottom: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.9;
}
.service-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  gap: 10px;
}
.service-btn-outline {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--green);
  background: #fff;
  color: var(--green);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.service-btn-outline:hover {
  background: var(--green);
  color: #fff;
}
.service-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.service-info span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
  line-height: 1.4;
}
.service-icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.blue-circle {
  background: #dbeafe;
  border: 2px solid #3b82f6;
}
.service-icon-square {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.teal-bg {
  background: #ccfbf1;
  border: 2px solid #14b8a6;
}

/* ========== HORIZONTAL SERVICES ROW ========== */
.services-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 16px;
  scrollbar-width: none;
}
.services-row::-webkit-scrollbar { display: none; }
.svc-circle {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 72px;
}
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-circle:hover .svc-icon {
  transform: scale(1.12);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}
.school-bg { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.factory-bg { background: linear-gradient(135deg, #10b981, #059669); }
.office-bg { background: linear-gradient(135deg, #f59e0b, #d97706); }
.university-bg { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.travel-bg { background: linear-gradient(135deg, #ec4899, #db2777); }
.svc-circle span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}



/* ========== PRODUCTS HORIZONTAL SCROLL ========== */
.products-h-section { padding: 0 16px 16px; }
.products-h-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.products-h-scroll::-webkit-scrollbar { display: none; }
.product-h-card {
  flex-shrink: 0;
  width: 140px;
  background: var(--white);
  border-radius: 18px;
  padding: 12px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-h-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.06),
    0 12px 24px rgba(0,0,0,0.08);
}
.product-h-img {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 8px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-h-card:hover .product-h-img {
  transform: scale(1.08);
}
.product-h-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-h-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.product-h-card .cart-btn {
  margin: 0 auto;
}

/* ========== PAY PAGE ========== */
.pay-page .nav-item.active { color: #2563eb; }

.pay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  z-index: 10;
}
.pay-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #2563eb;
}
.pay-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

/* Pay Balance Card */
.pay-balance-card {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
}
.balance-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f, #2563eb, #1d4ed8);
  border-radius: 16px;
}
.balance-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.balance-label { font-size: 12px; opacity: 0.85; margin-bottom: 6px; }
.balance-amount { font-size: 24px; font-weight: 800; }
.balance-amount span { font-size: 14px; font-weight: 500; }
.balance-sublabel { font-size: 11px; opacity: 0.7; margin-top: 4px; }
.balance-graphic { font-size: 48px; }

/* Pay Actions Grid */
.pay-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 16px 16px;
}
.pay-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 6px;
  background: var(--white);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.pay-action-card:hover { transform: translateY(-2px); }
.pay-action-icon {
  font-size: 28px;
  line-height: 1;
}
.pay-action-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

/* Pay Promo */
.pay-promo {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
}
.promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 16px;
}
.promo-body {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
}
.promo-body h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.promo-body p { font-size: 12px; opacity: 0.9; margin-bottom: 10px; }
.promo-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: #d97706;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
}

/* Installments */
.installment-section { padding: 0 16px 16px; }
.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.installment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.inst-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.inst-info { flex: 1; }
.inst-info h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.inst-info p { font-size: 11px; color: var(--muted); }
.inst-amount { font-size: 13px; font-weight: 700; color: var(--green); }

/* Pay Nav Icon */
.pay-nav-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  background: currentColor;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}
.nav-item.active .pay-nav-icon {
  background: #2563eb;
  color: #fff;
}

/* Page Header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  z-index: 10;
}
.page-header h1 {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
}
.placeholder { width: 36px; }

/* Benefits List */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefits-list li {
  font-size: 13px;
  color: var(--text2);
}

/* ========== SHUTTLE PROMO BANNER ========== */
.shuttle-promo-banner {
  position: relative;
  margin: 0 16px 16px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 90px;
}
.shuttle-promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f4c81, #2563eb, #1e3a5f);
  border-radius: 16px;
}
.shuttle-promo-body {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.shuttle-promo-text h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 3px;
}
.shuttle-promo-text p {
  font-size: 11px;
  opacity: 0.85;
}
.shuttle-promo-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.shuttle-promo-btn:hover { transform: translateY(-1px); }

/* ========== PAY V2 (Teal Theme) ========== */
.pay-page-v2 { background: #f5f6f8; }
.pay-page-v2 .scroll-content { background: #f5f6f8; }

.pay-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
.pay-v2-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wing-icon {
  color: #0d9488;
  width: 28px; height: 28px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-en {
  font-size: 13px;
  font-weight: 700;
  color: #0d9488;
  letter-spacing: 1px;
}
.logo-pay {
  font-size: 15px;
  font-weight: 900;
  color: #0d9488;
  letter-spacing: 2px;
}
.pay-v2-slogan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.pay-v2-slogan span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
}
.slogan-line {
  width: 80px;
  height: auto;
}

/* Pay V2 Cards */
.pay-v2-card {
  background: #fff;
  border-radius: 24px;
  margin: 0 16px 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e5e5;
}
.pay-v2-card-body {
  display: flex;
  padding: 28px 24px;
  gap: 20px;
}
.pay-v2-card-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.visual-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.teal-bg-soft {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  border: 2px solid #5eead4;
}
.visual-emoji {
  font-size: 48px;
  line-height: 1;
}
.visual-badge {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(13,148,136,0.4);
}
.hand-badge {
  font-size: 16px;
  background: #f59e0b;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.pay-v2-card-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.pay-v2-card-text h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0d9488;
  margin-bottom: 10px;
  line-height: 1.4;
}
.pay-v2-card-text p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
}

/* Pay V2 Card Actions */
.pay-v2-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}
.pay-v2-features {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.feature-item svg { flex-shrink: 0; }
.feature-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
}
.feature-divider {
  width: 1px;
  height: 20px;
  background: #ddd;
}
.pay-v2-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: #0d9488;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.pay-v2-btn:hover {
  background: #0f766e;
  transform: translateY(-1px);
}
.pay-v2-btn svg {
  stroke: #fff;
}

/* Pay Nav Icon (Teal) */
.pay-nav-icon-teal {
  width: 20px; height: 20px;
  border-radius: 5px;
  background: #0d9488;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* Pay V2 active nav */
.pay-page-v2 .nav-item.active {
  color: #0d9488;
}

/* ========== SHUTTLE V2 (Multi-Color Cards) ========== */
.shuttle-page-v2 { background: #fff; }
.shuttle-page-v2 .scroll-content { background: #fff; }

.shuttle-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #fff;
  z-index: 10;
}
.shuttle-v2-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bus-icon {
  color: #8b5cf6;
  width: 28px; height: 28px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-in {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
}
.logo-shuttle {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: #8b5cf6;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 2px;
}
.shuttle-v2-slogan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.shuttle-v2-slogan span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
}

/* Shuttle V2 Cards */
.shuttle-v2-card {
  border-radius: 24px;
  margin: 0 16px 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e5e5;
}
.purple-theme { background: linear-gradient(180deg, #f5f3ff, #ede9fe); border-color: #ddd6fe; }
.teal-theme { background: linear-gradient(180deg, #f0fdfa, #ccfbf1); border-color: #99f6e4; }
.yellow-theme { background: linear-gradient(180deg, #fefce8, #fef9c3); border-color: #fde047; }

.shuttle-v2-card-body {
  display: flex;
  padding: 24px;
  gap: 16px;
}
.shuttle-v2-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Circle backgrounds for each theme */
.purple-soft {
  background: linear-gradient(135deg, #e9d5ff, #c4b5fd);
  border: 2px solid #a78bfa;
}
.teal-soft-bg {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  border: 2px solid #5eead4;
}
.yellow-soft {
  background: linear-gradient(135deg, #fef08a, #fde047);
  border: 2px solid #facc15;
}

/* Badges for each theme */
.purple-badge {
  background: #8b5cf6;
  box-shadow: 0 2px 8px rgba(139,92,246,0.4);
}
.teal-badge {
  background: #0d9488;
  box-shadow: 0 2px 8px rgba(13,148,136,0.4);
}
.yellow-badge {
  font-size: 14px;
  background: #d97706;
  box-shadow: 0 2px 8px rgba(217,119,6,0.4);
}

.shuttle-v2-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.shuttle-v2-text h2 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.4;
}
.purple-theme .shuttle-v2-text h2 { color: #7c3aed; }
.teal-theme .shuttle-v2-text h2 { color: #0d9488; }
.yellow-theme .shuttle-v2-text h2 { color: #b45309; }

.shuttle-v2-text p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

.shuttle-v2-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.shuttle-v2-features {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons for each theme */
.shuttle-v2-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.shuttle-v2-btn:hover {
  transform: translateY(-1px);
}
.purple-btn { background: #7c3aed; box-shadow: 0 4px 12px rgba(124,58,237,0.25); }
.purple-btn:hover { background: #6d28d9; }
.teal-btn { background: #0d9488; box-shadow: 0 4px 12px rgba(13,148,136,0.25); }
.teal-btn:hover { background: #0f766e; }
.yellow-btn { background: #d97706; box-shadow: 0 4px 12px rgba(217,119,6,0.25); }
.yellow-btn:hover { background: #b45309; }

/* Shuttle Nav Icon (Purple) */
.shuttle-nav-icon-purple {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Shuttle active nav */
.shuttle-page-v2 .nav-item.active {
  color: #8b5cf6;
}

/* ========== PAY CUSTOMER REQUEST (Sub-Screen) ========== */
.pay-customer-page { background: #fff; }
.pay-customer-page .scroll-content { background: #fff; }

/* Header */
.pay-customer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid #f0f0f0;
}
.pay-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  text-decoration: none;
  transition: all 0.2s;
}
.pay-back-btn:hover {
  background: #0d9488;
  color: #fff;
}
.pay-customer-header h1 {
  font-size: 16px;
  font-weight: 800;
  color: #0d9488;
}
.pay-header-spacer {
  width: 36px;
}

/* Hero */
.pay-customer-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  gap: 16px;
}
.pay-customer-hero-text { flex: 1; }
.pay-customer-hero-text h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0d9488;
  line-height: 1.5;
  margin-bottom: 8px;
}
.pay-customer-hero-text p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.pay-customer-hero-visual {
  flex-shrink: 0;
}
.hero-cart-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  border: 2px solid #5eead4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-cart-emoji {
  font-size: 44px;
  line-height: 1;
}
.hero-cart-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(13,148,136,0.3);
}

/* Benefits Section Title */
.benefits-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px 16px;
}
.benefits-section-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.title-dot {
  color: #0d9488;
  font-size: 18px;
  font-weight: 800;
}

/* Benefits List */
.pay-benefits-list {
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pay-benefit-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s;
}
.pay-benefit-card:hover {
  transform: translateY(-2px);
}
.benefit-icon-circle {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teal-soft {
  background: #f0fdfa;
  border: 1.5px solid #99f6e4;
}
.benefit-content { flex: 1; }
.benefit-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.benefit-content p {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.7;
}

/* Sticky Bottom Button */
.pay-customer-sticky-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 100;
}
.pay-customer-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #0d9488;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(13,148,136,0.25);
}
.pay-customer-cta:hover {
  background: #0f766e;
  transform: translateY(-2px);
}
.pay-customer-cta svg {
  stroke: #fff;
}

/* ========== SHUTTLE REQUEST SUB-SCREENS ========== */
.shuttle-request-page { background: #fff; }
.shuttle-request-page .scroll-content { background: #fff; }

.shuttle-request-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid #f0f0f0;
}
.shuttle-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4338ca;
  text-decoration: none;
  transition: all 0.2s;
}
.shuttle-back-btn:hover {
  background: #4338ca;
  color: #fff;
}
.shuttle-request-header h1 {
  font-size: 16px;
  font-weight: 800;
  color: #1e3a8a;
}
.shuttle-header-spacer {
  width: 36px;
}

/* Request Hero */
.shuttle-request-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  gap: 16px;
}
.shuttle-request-hero-text { flex: 1; }
.shuttle-request-hero-text h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.5;
  margin-bottom: 8px;
}
.shuttle-request-hero-text p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.shuttle-request-hero-visual { flex-shrink: 0; }
.hero-car-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border: 2px solid #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-car-emoji { font-size: 44px; line-height: 1; }
.hero-car-pin {
  position: absolute;
  top: -8px;
  left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37,99,235,0.4);
}

/* Benefits Title */
.shuttle-benefits-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px 16px;
}
.shuttle-benefits-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.shuttle-title-dot {
  color: #2563eb;
  font-size: 18px;
  font-weight: 800;
}

/* Request Cards */
.shuttle-request-benefits {
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shuttle-request-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s;
}
.shuttle-request-card:hover { transform: translateY(-2px); }
.shuttle-card-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blue-soft {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
}
.shuttle-card-content { flex: 1; }
.shuttle-card-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.shuttle-card-content p {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.7;
}

/* Sticky Button */
.shuttle-sticky-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 100;
}
.shuttle-request-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(30,58,138,0.25);
}
.shuttle-request-cta:hover {
  background: #172554;
  transform: translateY(-2px);
}

/* ========== GREEN THEME (Shuttle Group Service) ========== */
.green-header { border-color: #bbf7d0; }
.green-header h1 { color: var(--green) !important; }
.green-back-btn {
  border-color: var(--green) !important;
  color: var(--green) !important;
}
.green-back-btn:hover {
  background: var(--green) !important;
  color: #fff !important;
}
.green-text { color: var(--green); }
.green-title .shuttle-title-dot { color: var(--green); }
.green-car-circle {
  background: linear-gradient(135deg, #bbf7d0, #86efac) !important;
  border-color: #22c55e !important;
}
.green-pin {
  background: var(--green) !important;
  box-shadow: 0 2px 8px rgba(0,176,80,0.4) !important;
}
.green-benefits { display: flex; flex-direction: column; gap: 12px; padding: 0 16px 24px; }
.green-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}
.green-soft {
  background: #f0fdf4 !important;
  border-color: #bbf7d0 !important;
}
.green-cta {
  background: var(--green) !important;
  box-shadow: 0 4px 16px rgba(0,176,80,0.25) !important;
}
.green-cta:hover {
  background: #009940 !important;
}

/* ========== DRIVER REGISTER GRID CARDS ========== */
.driver-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px 20px;
}
.driver-grid-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.driver-grid-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.driver-grid-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.driver-grid-card p {
  font-size: 10px;
  color: var(--text2);
  line-height: 1.6;
}

/* Driver Docs Row */
.driver-docs-row {
  display: flex;
  gap: 12px;
  padding: 0 16px 24px;
}
.driver-doc-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 20px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.driver-doc-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.driver-doc-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.driver-doc-card p {
  font-size: 10px;
  color: var(--text2);
  line-height: 1.6;
}
.docs-title { margin-top: 8px; }

/* ========== SHOP PRODUCTS PAGE ========== */
.shop-products-page { background: #fff; }
.shop-products-page .scroll-content { background: #fff; }

/* Header */
.shop-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid #fde68a;
}
.shop-products-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  text-decoration: none;
  transition: all 0.2s;
}
.shop-products-back-btn:hover {
  background: #f59e0b;
  color: #fff;
}
.shop-products-header h1 {
  font-size: 16px;
  font-weight: 800;
  color: #f59e0b;
}
.shop-products-spacer { width: 36px; }

/* Hero */
.shop-products-hero {
  padding: 24px 16px;
  display: flex;
  justify-content: center;
}
.shop-products-hero-visual {
  width: 100%;
  max-width: 320px;
}
.shop-store-scene {
  position: relative;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}
.shop-store-front {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shop-store-roof {
  width: 120px; height: 20px;
  background: #fb923c;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.shop-store-roof::after {
  content: '';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 14px solid #f59e0b;
}
.shop-store-body {
  width: 120px;
  background: #fde68a;
  border-radius: 0 0 8px 8px;
  padding: 10px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 2px solid #f59e0b;
  border-top: none;
}
.shop-store-name {
  font-size: 11px;
  font-weight: 800;
  color: #92400e;
  letter-spacing: 0.5px;
}
.shop-window {
  width: 36px; height: 28px;
  background: #fff;
  border: 2px solid #d97706;
  border-radius: 4px;
  display: inline-block;
}
.shop-cart-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-cart-card {
  width: 70px; height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(245,158,11,0.25);
}
.shop-cart-emoji { font-size: 34px; line-height: 1; }
.shop-bag-badge {
  position: absolute;
  top: -8px; right: -8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(239,68,68,0.4);
}
.shop-floor-items {
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
}

/* Benefits Title */
.shop-product-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px 16px;
}
.shop-product-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.shop-dot {
  color: #f59e0b;
  font-size: 18px;
  font-weight: 800;
}

/* Benefits List */
.shop-products-benefits {
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-benefit-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(245,158,11,0.08);
  border: 1px solid #fde68a;
  transition: transform 0.2s;
}
.shop-benefit-card:hover {
  transform: translateY(-2px);
}
.shop-benefit-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orange-light {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
}
.shop-benefit-content { flex: 1; }
.shop-benefit-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.shop-benefit-content p {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.7;
}

/* Sticky Bottom Button */
.shop-products-sticky-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #fde68a;
  z-index: 100;
}
.shop-products-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.25);
}
.shop-products-cta:hover {
  background: #d97706;
  transform: translateY(-2px);
}
.shop-products-cta svg { stroke: #fff; }

/* ========== SHOP PAGE (Orange/Gold Theme) ========== */
.shop-page { background: #fff; }
.shop-page .scroll-content { background: #fff; }

/* Header */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #fff;
  z-index: 10;
}
.shop-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-logo-icon {
  color: #f59e0b;
  width: 28px; height: 28px;
}
.shop-logo-text {
  font-size: 14px;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: 1px;
}
.shop-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.shop-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.shop-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
}
.shop-title-line {
  margin-top: 2px;
}

/* Shop Cards */
.shop-card {
  background: linear-gradient(180deg, #fffbf0, #fff8e7);
  border-radius: 24px;
  margin: 0 16px 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #fde68a;
}
.shop-card-body {
  display: flex;
  padding: 24px 20px 16px;
  gap: 16px;
}
.shop-card-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.shop-visual-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cart-circle {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
}
.store-circle {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 2px solid #fb923c;
}
.shop-visual-emoji {
  font-size: 44px;
  line-height: 1;
}
.shop-visual-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge {
  background: #f59e0b;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.store-badge {
  background: #fb923c;
  box-shadow: 0 2px 8px rgba(251,146,60,0.4);
}

.shop-card-text { flex: 1; }
.shop-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 8px;
  line-height: 1.4;
}
.shop-card-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
}

/* Card Footer */
.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(0,0,0,0.05);
  gap: 10px;
}
.shop-features {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}
.shop-feature {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
}
.shop-divider {
  width: 1px;
  height: 16px;
  background: #ddd;
}
.shop-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #f59e0b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.shop-action-btn:hover {
  background: #d97706;
  transform: translateY(-1px);
}

/* Floating Buttons */
.shop-floating-btns {
  position: absolute;
  bottom: 72px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 95;
  pointer-events: none;
}
.shop-floating-btns > * {
  pointer-events: auto;
}
.shop-float-edit {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f3f4f6;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  color: var(--text);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.shop-float-edit:hover {
  background: #e5e7eb;
}
.shop-float-up {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.shop-float-up:hover {
  background: #e5e7eb;
}

/* Shop Nav Icon */
.shop-nav-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shop Active Nav */
.shop-page .nav-item.active {
  color: #f59e0b;
}

/* ========== SHOP CREATE STORE PAGE ========== */
.shop-create-page { background: #fff; }
.shop-create-page .scroll-content { background: #fff; }

/* Header */
.shop-create-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid #fde68a;
}
.shop-create-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  text-decoration: none;
  transition: all 0.2s;
}
.shop-create-back-btn:hover {
  background: #f59e0b;
  color: #fff;
}
.shop-create-header h1 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.shop-create-spacer { width: 36px; }

/* Hero */
.shop-create-hero {
  padding: 24px 16px;
  display: flex;
  justify-content: center;
}
.shop-create-hero-visual {
  width: 100%;
  max-width: 320px;
}
.shop-create-scene {
  position: relative;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}
.shop-create-store-front {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shop-create-store-roof {
  width: 120px; height: 20px;
  background: #fb923c;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.shop-create-store-roof::after {
  content: '';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 14px solid #f59e0b;
}
.shop-create-store-body {
  width: 120px;
  background: #fde68a;
  border-radius: 0 0 8px 8px;
  padding: 10px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 2px solid #f59e0b;
  border-top: none;
}
.shop-create-store-name {
  font-size: 11px;
  font-weight: 800;
  color: #92400e;
  letter-spacing: 0.5px;
}
.shop-create-window {
  width: 36px; height: 28px;
  background: #fff;
  border: 2px solid #d97706;
  border-radius: 4px;
  display: inline-block;
}
.shop-create-cart-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-create-cart-card {
  width: 70px; height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(245,158,11,0.25);
}
.shop-create-cart-emoji { font-size: 34px; line-height: 1; }
.shop-create-bag-badge {
  position: absolute;
  top: -8px; right: -8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(239,68,68,0.4);
}
.shop-create-floor-items {
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
}

/* Benefits Title */
.shop-create-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px 16px;
}
.shop-create-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.shop-create-dot {
  color: #f59e0b;
  font-size: 18px;
  font-weight: 800;
}

/* Benefits List */
.shop-create-benefits {
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-create-benefit-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(245,158,11,0.08);
  border: 1px solid #fde68a;
  transition: transform 0.2s;
}
.shop-create-benefit-card:hover {
  transform: translateY(-2px);
}
.shop-create-benefit-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-create-benefit-content { flex: 1; }
.shop-create-benefit-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.shop-create-benefit-content p {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.7;
}

/* Sticky Bottom Button */
.shop-create-sticky-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #fde68a;
  z-index: 100;
}
.shop-create-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.25);
}
.shop-create-cta:hover {
  background: #d97706;
  transform: translateY(-2px);
}
.shop-create-cta svg { stroke: #fff; }

/* ========== SERVICE V2 (Orange Theme) ========== */
.service-page-v2 { background: #fff; }
.service-page-v2 .scroll-content { background: #fff; }

/* Header */
.service-v2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  z-index: 10;
}
.service-v2-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wrench-icon {
  width: 28px; height: 28px;
  color: #f97316;
}
.logo-en {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 1px;
  display: block;
}
.logo-service {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: #f97316;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 2px;
}
.service-v2-slogan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.service-v2-slogan span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
}

/* Service V2 Cards */
.service-v2-card {
  border-radius: 24px;
  margin: 0 16px 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e5e5;
}
.orange-theme { background: linear-gradient(180deg, #fff7ed, #ffedd5); border-color: #fed7aa; }
.orange-theme-light { background: linear-gradient(180deg, #fff7ed, #fff0e0); border-color: #fed7aa; }

.service-v2-card-body {
  display: flex;
  padding: 24px;
  gap: 16px;
}
.service-v2-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Circle backgrounds */
.orange-soft-bg {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  border: 2px solid #fb923c;
}
.orange-soft-bg-light {
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
  border: 2px solid #f97316;
}

/* Visual circle scoped */
.service-v2-visual .visual-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-v2-visual .visual-emoji {
  font-size: 44px;
  line-height: 1;
}

.service-v2-visual .visual-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orange-badge {
  background: #f97316;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}

.service-v2-text { flex: 1; }
.service-v2-text h2 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.4;
}
.service-v2-text h2 em {
  color: #f97316;
  font-style: normal;
}
.service-v2-text p {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}

.service-v2-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.service-v2-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
  border: none;
}

.orange-btn {
  background: #f97316;
  color: #fff;
  box-shadow: 0 4px 12px rgba(249,115,22,0.25);
}
.orange-btn:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.service-v2-features {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}

/* Service Nav Icon */
.service-nav-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service active nav */
.service-page-v2 .nav-item.active {
  color: #f97316;
}

/* ========== SERVICE CENTER REGISTER (Sub-Screen) ========== */
.service-center-page { background: #fff; }
.service-center-page .scroll-content { background: #fff; }

.service-center-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid #fed7aa;
}
.service-center-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  text-decoration: none;
  transition: all 0.2s;
}
.service-center-back-btn:hover {
  background: #f97316;
  color: #fff;
}
.service-center-header h1 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.service-center-spacer { width: 36px; }

/* Hero */
.service-center-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  gap: 16px;
}
.service-center-hero-text { flex: 1; }
.service-center-hero-text h2 {
  font-size: 20px;
  font-weight: 800;
  color: #ea580c;
  line-height: 1.5;
  margin-bottom: 8px;
}
.service-center-hero-text h2 strong { color: #c2410c; }
.service-center-hero-text p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.service-center-hero-visual { flex-shrink: 0; }
.center-visual-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  border: 2px solid #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.center-visual-emoji {
  font-size: 44px;
  line-height: 1;
}
.center-visual-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}

/* Title */
.service-center-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px 16px;
}
.service-center-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.service-center-dot {
  color: #f97316;
  font-size: 18px;
  font-weight: 800;
}

/* Form */
.service-center-form .required { color: #ef4444; margin-right: 2px; }
.service-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}
.service-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.service-checkbox:hover {
  border-color: #f97316;
  background: #ffedd5;
}
.service-checkbox input {
  accent-color: #f97316;
  width: 16px; height: 16px;
}

/* Sticky Button */
.service-center-sticky-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #fed7aa;
  z-index: 100;
}
.service-center-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}
.service-center-cta:hover {
  background: #ea580c;
  transform: translateY(-2px);
}
.service-center-cta svg { stroke: #fff; }

/* ========== SERVICE APPOINTMENT (Sub-Screen) ========== */
.service-appointment-page { background: #fff; }
.service-appointment-page .scroll-content { background: #fff; }

.service-appointment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid #fed7aa;
}
.service-appointment-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  text-decoration: none;
  transition: all 0.2s;
}
.service-appointment-back-btn:hover {
  background: #f97316;
  color: #fff;
}
.service-appointment-header h1 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.service-appointment-spacer { width: 36px; }

/* Appointment Hero */
.service-appointment-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  gap: 16px;
}
.service-appointment-hero-text { flex: 1; }
.service-appointment-hero-text h2 {
  font-size: 20px;
  font-weight: 800;
  color: #ea580c;
  line-height: 1.5;
  margin-bottom: 8px;
}
.service-appointment-hero-text p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.service-appointment-hero-visual { flex-shrink: 0; }
.appt-visual-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
  border: 2px solid #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.appt-visual-emoji {
  font-size: 44px;
  line-height: 1;
}
.appt-visual-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}

/* Title */
.service-appointment-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px 16px;
}
.service-appointment-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.service-appointment-dot {
  color: #f97316;
  font-size: 18px;
  font-weight: 800;
}

/* Map Placeholder */
.service-map-placeholder {
  width: calc(100% - 32px);
  height: 180px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  margin: 0 16px 14px;
  border: 2px dashed #fed7aa;
}

/* Center Cards */
.service-centers-list {
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-center-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(249,115,22,0.06);
  border: 1px solid #fed7aa;
  transition: transform 0.2s;
}
.service-center-card:hover {
  transform: translateY(-2px);
}
.service-center-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.service-center-card-info { flex: 1; }
.service-center-card-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.service-center-card-info p {
  font-size: 11px;
  color: var(--text2);
  margin-bottom: 4px;
}
.service-center-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.service-center-tag {
  font-size: 10px;
  padding: 2px 6px;
  background: #fff7ed;
  color: #c2410c;
  border-radius: 4px;
  font-weight: 500;
}
.service-center-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  align-self: center;
}

/* ========== SERVICE APPOINTMENT PAGE ========== */
.service-appointment-page { background: var(--white); }

/* Header */
.service-appointment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  z-index: 10;
}
.service-appointment-back-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
  text-decoration: none;
  transition: all 0.2s;
}
.service-appointment-back-btn:hover {
  background: #fff7ed;
  transform: translateX(2px);
}
.service-appointment-header h1 {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding: 0 8px;
}
.service-appointment-spacer { width: 40px; }

/* Hero */
.service-appointment-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 20px;
  margin: 0 16px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.service-appointment-hero-text { flex: 1; }
.service-appointment-hero-text h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-appointment-hero-text h2 strong {
  color: #ea580c;
  font-weight: 900;
}
.service-appointment-hero-text p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.service-appointment-hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.appt-visual-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid #f97316;
}
.appt-visual-emoji { font-size: 40px; line-height: 1; }
.appt-visual-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
  border: 2px solid #fff;
}

/* Benefits Title */
.service-appointment-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px 16px;
}
.service-appointment-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.service-appointment-dot {
  font-size: 20px;
  color: #f97316;
  line-height: 1;
}

/* Benefits Cards */
.service-appointment-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
}
.service-appointment-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.service-appointment-card:hover {
  transform: translateY(-2px);
}
.service-appointment-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-appointment-icon.orange-light {
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
  border: 2px solid #fdba74;
}
.service-appointment-card-content { flex: 1; }
.service-appointment-card-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.5;
}
.service-appointment-card-content p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
}

/* Sticky Button */
.service-appointment-sticky-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #fed7aa;
  z-index: 100;
}
.service-appointment-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}
.service-appointment-cta:hover {
  background: #ea580c;
  transform: translateY(-2px);
}
.service-appointment-cta svg { stroke: #fff; }

/* ========== STUDIO PAGE ========== */
.studio-page { background: #fff; }

/* HEADER */
.studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
  z-index: 10;
}
.studio-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.studio-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.studio-logo-text {
  font-size: 14px;
  font-weight: 800;
  color: #D32F2F;
  letter-spacing: 0.5px;
}
.studio-title {
  text-align: right;
}
.studio-title h1 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.studio-title p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.studio-title-underline {
  width: 40px;
  height: 3px;
  background: #D32F2F;
  border-radius: 2px;
  margin-top: 6px;
  margin-right: auto;
}

/* CARDS */
.studio-card {
  margin: 0 16px 16px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.studio-card-light {
  background: #fce4ec;
}
.studio-card-dark {
  background: #ffcdd2;
}

/* CARD TOP */
.studio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 12px;
}
.studio-card-text {
  flex: 1;
}
.studio-card-text h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.studio-card-text p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
}
.studio-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.studio-graphic {
  font-size: 48px;
  line-height: 1;
}
.studio-icon-circle {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  background: #D32F2F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(211,47,47,0.3);
}

/* CARD BOTTOM */
.studio-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  gap: 10px;
}
.studio-features {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.studio-feature {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.studio-feature svg { flex-shrink: 0; }
.studio-divider {
  width: 1px;
  height: 16px;
  background: rgba(0,0,0,0.15);
}
.studio-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #D32F2F;
  color: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(211,47,47,0.25);
}
.studio-btn:hover {
  background: #b71c1c;
  transform: translateY(-1px);
}
.studio-btn svg { stroke: #fff; }

/* FLOATING BUTTONS */
.studio-floating-btns {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 20;
}
.studio-fab {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e0e0e0;
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.studio-fab-edit {
  padding: 8px 14px;
  border-radius: 20px;
}
.studio-fab-scroll {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.studio-fab:hover {
  background: #bdbdbd;
  transform: translateY(-2px);
}



/* ========== STUDIO ORDER PAGE ========== */
.studio-order-page { background: var(--white); }

/* Header */
.studio-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  z-index: 10;
}
.studio-back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #FFCDD2;
  background: var(--white);
  color: #D32F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.2s, background 0.2s;
}
.studio-back-btn:hover {
  background: #FFF5F5;
  transform: scale(1.05);
}
.studio-order-header h1 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.studio-header-spacer { width: 36px; }

/* Hero Section */
.studio-order-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px;
}
.studio-order-hero-text {
  flex: 1;
  padding-left: 12px;
}
.studio-order-logo {
  font-size: 15px;
  font-weight: 900;
  color: #E040FB;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.studio-order-hero-text h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.studio-order-hero-text h2 em {
  color: #E53935;
  font-style: normal;
  font-weight: 900;
}
.studio-order-hero-text p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
}
.studio-order-hero-visual {
  flex-shrink: 0;
}
.studio-computer-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFEBEE, #FCE4EC);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(229,57,53,0.12);
}
.studio-computer-emoji {
  font-size: 52px;
  line-height: 1;
}

/* Benefits Title */
.studio-order-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 16px;
  margin-top: 4px;
}
.studio-order-title h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.studio-order-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* Benefit Cards */
.studio-order-benefits {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.studio-order-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.studio-order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.studio-order-icon.red-soft {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFEBEE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.studio-order-card-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.studio-order-card-content p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

/* Sticky Bottom Button */
.studio-order-sticky-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(255,255,255,1) 60%, rgba(255,255,255,0));
  display: flex;
  justify-content: center;
  z-index: 50;
  pointer-events: none;
}
.studio-order-cta {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #E53935, #D32F2F);
  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(229,57,53,0.3);
  pointer-events: auto;
}
.studio-order-cta:hover {
  background: linear-gradient(135deg, #D32F2F, #C62828);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.4);
}
.studio-order-cta svg {
  stroke: #fff;
}

/* ========== STUDIO PORTFOLIO ========== */

/* Section wrapper */
.portfolio-section {
  padding: 0 16px 20px;
}

/* Section header with title + view-all button */
.portfolio-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}
.portfolio-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.portfolio-section-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.portfolio-view-all {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #FFEBEE;
  color: #D32F2F;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.portfolio-view-all:hover {
  background: #FFCDD2;
  transform: translateY(-1px);
}

/* Horizontal slider */
.portfolio-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.portfolio-slider::-webkit-scrollbar { display: none; }

/* Website card */
.portfolio-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}

/* Laptop mockup */
.laptop-mockup {
  position: relative;
  margin-bottom: 12px;
}
.laptop-screen {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #FFEBEE, #FCE4EC);
  border-radius: 10px 10px 0 0;
  border: 2px solid #ddd;
  border-bottom: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.laptop-screen::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.site-preview {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.site-preview.azargan {
  background: linear-gradient(135deg, #1a5fa8, #0f4c81);
}
.site-preview.mahoor {
  background: linear-gradient(135deg, #e9d5ff, #c4b5fd);
}
.site-preview.foodin {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}
.laptop-base {
  width: 120%;
  height: 8px;
  background: #bbb;
  border-radius: 0 0 10px 10px;
  margin: 0 -10%;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px;
  background: #999;
  border-radius: 0 0 4px 4px;
}

/* Card info */
.portfolio-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.portfolio-card-icon {
  font-size: 16px;
}
.portfolio-card-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.portfolio-card-info span {
  font-size: 11px;
  color: var(--muted);
}

/* Dots indicator */
.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.portfolio-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e5e5e5;
  transition: all 0.2s;
}
.portfolio-dot.active {
  background: #D32F2F;
  width: 16px;
  border-radius: 4px;
}

/* Content grid (2 columns) */
.portfolio-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.portfolio-content-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s;
}
.portfolio-content-card:hover {
  transform: translateY(-2px);
}
.content-thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #FFEBEE, #FCE4EC);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.content-thumbnail span {
  font-size: 28px;
}
.portfolio-content-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 390px) { html { font-size: 15px; } }
@media (max-width: 360px) { html { font-size: 14px; } }

/* ═════════════ FLAT ICON SYSTEM ═════════════ */
.flat-icon {
  font-size: 18px;
  line-height: 1;
  color: inherit;
}
.circle-bg-white {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.circle-bg-soft-blue {
  background: #E0E7FF;
  color: #0056A0;
}
.circle-bg-soft-teal {
  background: #CCFBF1;
  color: #0D9488;
}
.circle-bg-soft-orange {
  background: #FFF7ED;
  color: #F59E0B;
}
.circle-bg-soft-red {
  background: #FFF1F2;
  color: #E11D48;
}

/* ═════════════ SHUTTLE BLUE THEME ═════════════ */
.blue-theme      { background: linear-gradient(180deg,#e8f1f8,#d4e5f3); border-color:#b0d4e8; }
.blue-soft-bg    { background: linear-gradient(135deg,#b0d4e8,#8bb8d8); border:2px solid #0056A0; }
.blue-badge      { background:#0056A0; box-shadow:0 2px 8px rgba(0,86,160,0.4); }
.blue-btn        { background:#0056A0; color:#fff; box-shadow:0 4px 12px rgba(0,86,160,0.25); }
.blue-btn:hover  { background:#004080; }

.blue-shuttle-header      { border-color:#b0d4e8; }
.blue-shuttle-header h1   { color:#0056A0 !important; }
.blue-shuttle-back-btn    { border-color:#0056A0 !important; color:#0056A0 !important; }
.blue-shuttle-back-btn:hover{background:#0056A0 !important; color:#fff !important; }
.blue-shuttle-text        { color:#0056A0; }
.blue-shuttle-title .shuttle-title-dot { color:#0056A0; }
.blue-shuttle-car-circle  { background: linear-gradient(135deg,#b0d4e8,#8bb8d8) !important; border-color:#0056A0 !important; }
.blue-shuttle-pin         { background:#0056A0 !important; box-shadow:0 2px 8px rgba(0,86,160,0.4) !important; }
.blue-shuttle-card        { display:flex; gap:14px; padding:16px; background:#fff; border-radius:16px; box-shadow:0 2px 12px rgba(0,0,0,0.05); border:1px solid #f0f0f0; }
.blue-shuttle-soft        { background:#e8f1f8 !important; border-color:#b0d4e8 !important; }
.blue-shuttle-cta         { background:#0056A0 !important; box-shadow:0 4px 16px rgba(0,86,160,0.25) !important; }
.blue-shuttle-cta:hover   { background:#004080 !important; }
