.elementor-230 .elementor-element.elementor-element-6f9e9d6{--display:flex;--min-height:0px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-230 .elementor-element.elementor-element-0a2a3de{--display:flex;--min-height:426px;}.elementor-230 .elementor-element.elementor-element-0f59627{--display:flex;--justify-content:center;}.elementor-230 .elementor-element.elementor-element-b7e679b{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-230 .elementor-element.elementor-element-56ad876{text-align:start;font-family:"Vazirmatn", Sans-serif;font-size:16px;font-weight:600;color:#FFFFFF;}.elementor-230 .elementor-element.elementor-element-56ad876 p{margin-block-end:0px;}.elementor-230 .elementor-element.elementor-element-6a3696b{--display:flex;}.elementor-230 .elementor-element.elementor-element-0fd9e89{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:start;font-family:"Vazirmatn", Sans-serif;font-size:16px;font-weight:600;color:#FFFFFF;}.elementor-230 .elementor-element.elementor-element-0fd9e89 p{margin-block-end:0px;}.elementor-230 .elementor-element.elementor-element-3bbc118{margin:0px 20px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;font-family:"Vazirmatn", Sans-serif;font-size:16px;font-weight:500;line-height:33px;word-spacing:0px;color:#FFFFFF;}.elementor-230 .elementor-element.elementor-element-a064e5b{--display:flex;}.elementor-230 .elementor-element.elementor-element-bb16689{margin:20px 18px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:start;font-family:"Vazirmatn", Sans-serif;font-size:14px;font-weight:400;line-height:16px;color:#FFFFFF;}.elementor-230 .elementor-element.elementor-element-bb16689 p{margin-block-end:3px;}.elementor-230 .elementor-element.elementor-element-312d0c8{--display:flex;}.elementor-230 .elementor-element.elementor-element-bffe72d{margin:20px 18px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:start;font-family:"Vazirmatn", Sans-serif;font-size:18px;font-weight:400;line-height:11px;color:#FFFFFF;}.elementor-230 .elementor-element.elementor-element-bffe72d.elementor-element{--align-self:flex-start;--order:99999 /* order end hack */;}.elementor-230 .elementor-element.elementor-element-bffe72d p{margin-block-end:28px;}@media(min-width:768px){.elementor-230 .elementor-element.elementor-element-6f9e9d6{--content-width:843px;}.elementor-230 .elementor-element.elementor-element-0a2a3de{--content-width:860px;}.elementor-230 .elementor-element.elementor-element-0f59627{--content-width:735px;}}/* Start custom CSS for html, class: .elementor-element-7e12bac *//* ===== دکمه‌ها ===== */
.services-intro-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Vazirmatn', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(0, 180, 255, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 180, 255, 0.6);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: rgba(0, 180, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Vazirmatn', sans-serif;
  border: 1.5px solid rgba(0, 180, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 180, 255, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover {
  background: rgba(0, 180, 255, 0.2);
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 180, 255, 0.3);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .paradox-services-intro {
    padding: 50px 20px;
  }
  
  .services-intro-content {
    padding: 40px 25px;
  }
  
  .services-intro-title {
    font-size: 26px;
  }
  
  .services-intro-text p,
  .services-list li {
    font-size: 14px;
  }
  
  .services-intro-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
}

@media (max-width: 480px) {
  .services-intro-title {
    font-size: 22px;
  }
  
  .services-list li {
    flex-direction: column;
    gap: 5px;
  }
  
  .list-icon {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b054d2a */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.paradox-metro-stations {
  background: linear-gradient(180deg, #020a15 0%, #051020 50%, #020a15 100%);
  padding: 100px 40px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.stations-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.stations-header {
  text-align: center;
  margin-bottom: 60px;
}

.stations-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 15px 0;
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
  line-height: 1.4;
}

.stations-subtitle {
  font-size: 17px;
  color: #8899aa;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* Grid Tabs */
.grid-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.grid-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(8, 22, 45, 0.7);
  border: 1.5px solid rgba(0, 180, 255, 0.2);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #c0d0e0;
}

.grid-tab:hover {
  background: rgba(0, 180, 255, 0.1);
  border-color: rgba(0, 180, 255, 0.4);
  transform: translateY(-2px);
}

.grid-tab.active {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.2), rgba(0, 100, 200, 0.15));
  border-color: #00d4ff;
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 180, 255, 0.3);
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  border-radius: 10px;
  color: #000;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.tab-badge.grade-a {
  background: linear-gradient(135deg, #00d4ff, #0099dd);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.tab-badge.grade-b {
  background: linear-gradient(135deg, #8899aa, #667788);
  box-shadow: 0 4px 15px rgba(136, 153, 170, 0.3);
  color: #ffffff;
}

.tab-text {
  font-weight: 700;
}

/* Grid Sections */
.grid-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.grid-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Grid Info Box */
.grid-info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.8), rgba(5, 15, 35, 0.9));
  border: 1.5px solid rgba(0, 180, 255, 0.2);
  border-radius: 16px;
  margin-bottom: 30px;
}

.grid-info-box.premium {
  border-color: #ffd700;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.15);
}

.grid-info-box.standard {
  border-color: #00d4ff;
  box-shadow: 0 5px 25px rgba(0, 212, 255, 0.15);
}

.grid-info-box.economy {
  border-color: #8899aa;
  box-shadow: 0 5px 25px rgba(136, 153, 170, 0.15);
}

.grid-info-box svg {
  flex-shrink: 0;
}

.grid-info-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.grid-info-box p {
  font-size: 14px;
  color: #8899aa;
  margin: 0;
  line-height: 1.6;
}

/* Table Wrapper */
.table-wrapper {
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.8), rgba(5, 15, 35, 0.9));
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.table-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 165, 0, 0.1);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
  color: #ffa500;
  font-size: 13px;
  font-weight: 600;
}

/* Table */
.stations-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.stations-table thead {
  background: rgba(0, 180, 255, 0.1);
}

.stations-table th {
  padding: 20px 20px;
  text-align: right;
  font-size: 15px;
  font-weight: 800;
  color: #00d4ff;
  border-bottom: 2px solid rgba(0, 180, 255, 0.3);
  letter-spacing: 0.5px;
}

.stations-table tbody tr {
  border-bottom: 1px solid rgba(0, 180, 255, 0.08);
  transition: all 0.3s ease;
}

.stations-table tbody tr:last-child {
  border-bottom: none;
}

.stations-table tbody tr:hover {
  background: rgba(0, 180, 255, 0.05);
}

.stations-table td {
  padding: 18px 20px;
  vertical-align: middle;
  font-size: 14px;
  color: #c0d0e0;
}

/* Station Number */
.station-number {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.2), rgba(0, 100, 200, 0.15));
  border: 1px solid rgba(0, 180, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-weight: 800;
  font-size: 14px;
}

/* Line Badge */
.line-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: rgba(0, 180, 255, 0.15);
  border: 1px solid rgba(0, 180, 255, 0.3);
  border-radius: 8px;
  color: #00d4ff;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.line-1 { background: rgba(255, 0, 0, 0.15); border-color: rgba(255, 0, 0, 0.3); color: #ff4444; }
.line-2 { background: rgba(0, 150, 200, 0.15); border-color: rgba(0, 150, 200, 0.3); color: #0099cc; }
.line-3 { background: rgba(0, 200, 100, 0.15); border-color: rgba(0, 200, 100, 0.3); color: #00cc66; }
.line-4 { background: rgba(255, 150, 0, 0.15); border-color: rgba(255, 150, 0, 0.3); color: #ff9900; }
.line-5 { background: rgba(150, 0, 200, 0.15); border-color: rgba(150, 0, 200, 0.3); color: #9900cc; }
.line-6 { background: rgba(200, 0, 150, 0.15); border-color: rgba(200, 0, 150, 0.3); color: #cc0099; }
.line-7 { background: rgba(0, 200, 200, 0.15); border-color: rgba(0, 200, 200, 0.3); color: #00cccc; }
.line-1-2, .line-1-4, .line-2-3, .line-4-5, .line-5-1, .line-5-4, .line-6-4, .line-6-7 {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.2), rgba(255, 215, 0, 0.15));
  border-color: #00d4ff;
  color: #ffffff;
}

/* Usage Badge */
.usage-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 8px;
  font-size: 13px;
  color: #b0c0d0;
  line-height: 1.6;
}

.usage-badge.admin { background: rgba(0, 150, 200, 0.15); border-color: rgba(0, 150, 200, 0.3); }
.usage-badge.commercial { background: rgba(255, 150, 0, 0.15); border-color: rgba(255, 150, 0, 0.3); }
.usage-badge.cultural { background: rgba(150, 0, 200, 0.15); border-color: rgba(150, 0, 200, 0.3); }
.usage-badge.university { background: rgba(0, 200, 100, 0.15); border-color: rgba(0, 200, 100, 0.3); }
.usage-badge.residential { background: rgba(100, 150, 200, 0.15); border-color: rgba(100, 150, 200, 0.3); }
.usage-badge.suburban { background: rgba(150, 150, 150, 0.15); border-color: rgba(150, 150, 150, 0.3); }
.usage-badge.education { background: rgba(0, 180, 200, 0.15); border-color: rgba(0, 180, 200, 0.3); }
.usage-badge.tourism { background: rgba(255, 100, 150, 0.15); border-color: rgba(255, 100, 150, 0.3); }
.usage-badge.transport { background: rgba(200, 150, 0, 0.15); border-color: rgba(200, 150, 0, 0.3); }
.usage-badge.religious { background: rgba(150, 100, 200, 0.15); border-color: rgba(150, 100, 200, 0.3); }
.usage-badge.sport { background: rgba(0, 200, 150, 0.15); border-color: rgba(0, 200, 150, 0.3); }
.usage-badge.industrial { background: rgba(150, 100, 100, 0.15); border-color: rgba(150, 100, 100, 0.3); }
.usage-badge.exhibition { background: rgba(200, 100, 200, 0.15); border-color: rgba(200, 100, 200, 0.3); }
.usage-badge.medical { background: rgba(0, 150, 150, 0.15); border-color: rgba(0, 150, 150, 0.3); }

/* CTA Section */
.stations-cta {
  margin-top: 60px;
}

.cta-box {
  background: linear-gradient(145deg, rgba(0, 180, 255, 0.1), rgba(0, 100, 200, 0.08));
  border: 2px solid rgba(0, 180, 255, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.1), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-box h3 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 16px;
  color: #8899aa;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(0, 180, 255, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 180, 255, 0.6);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: rgba(0, 180, 255, 0.1);
  color: #00d4ff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid rgba(0, 180, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(0, 180, 255, 0.2);
  border-color: #00d4ff;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stations-table {
    font-size: 13px;
  }
  
  .stations-table th,
  .stations-table td {
    padding: 15px 12px;
  }
}

@media (max-width: 768px) {
  .paradox-metro-stations {
    padding: 60px 20px;
  }
  
  .stations-title {
    font-size: 26px;
  }
  
  .grid-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .grid-tab {
    justify-content: center;
  }
  
  .grid-info-box {
    flex-direction: column;
    padding: 20px;
  }
  
  .table-wrapper {
    overflow-x: auto;
  }
  
  .stations-table {
    min-width: 600px;
  }
  
  .cta-box {
    padding: 35px 20px;
  }
  
  .cta-box h3 {
    font-size: 22px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stations-title {
    font-size: 22px;
  }
  
  .stations-subtitle {
    font-size: 14px;
  }
  
  .usage-badge {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .line-badge {
    font-size: 12px;
    padding: 5px 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f1bbbbe */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.paradox-metro-ad-types {
  background: linear-gradient(180deg, #020a15 0%, #051020 50%, #020a15 100%);
  padding: 80px 40px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.ad-types-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ad-types-title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 15px 0;
  text-align: center;
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
}

.ad-types-subtitle {
  font-size: 16px;
  color: #8899aa;
  text-align: center;
  margin: 0 0 50px 0;
  line-height: 1.6;
}

.table-wrapper {
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.8), rgba(5, 15, 35, 0.9));
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ad-types-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.ad-types-table thead {
  background: rgba(0, 180, 255, 0.1);
}

.ad-types-table th {
  padding: 22px 25px;
  text-align: right;
  font-size: 16px;
  font-weight: 800;
  color: #00d4ff;
  border-bottom: 2px solid rgba(0, 180, 255, 0.3);
  letter-spacing: 0.5px;
}

.ad-types-table tbody tr {
  border-bottom: 1px solid rgba(0, 180, 255, 0.08);
  transition: all 0.3s ease;
}

.ad-types-table tbody tr:last-child {
  border-bottom: none;
}

.ad-types-table tbody tr:hover {
  background: rgba(0, 180, 255, 0.05);
}

.ad-types-table td {
  padding: 25px 25px;
  vertical-align: middle;
}

/* Ad Type Cell */
.ad-type-cell {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ad-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ad-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

.banner-icon {
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.4);
}

.digital-icon {
  background: linear-gradient(135deg, #00d4ff, #00a0e0);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.wagon-icon {
  background: linear-gradient(135deg, #0099dd, #0077aa);
  box-shadow: 0 4px 15px rgba(0, 153, 221, 0.3);
}

.ad-type-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* Engagement Level */
.engagement-level {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.level-indicator {
  width: 100%;
  height: 8px;
  background: rgba(0, 180, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.indicator-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.engagement-level.high .indicator-bar {
  background: linear-gradient(90deg, #00d4ff, #0099dd);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.engagement-level.very-high .indicator-bar {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.engagement-level.medium-high .indicator-bar {
  background: linear-gradient(90deg, #0099dd, #0077aa);
  box-shadow: 0 0 10px rgba(0, 153, 221, 0.3);
}

.level-text {
  font-size: 14px;
  font-weight: 600;
  color: #c0d0e0;
}

/* Suitable For */
.suitable-for ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suitable-for li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #b0c0d0;
  margin-bottom: 8px;
  line-height: 1.6;
}

.suitable-for li:last-child {
  margin-bottom: 0;
}

.suitable-for li::before {
  content: '✓';
  color: #00d4ff;
  font-weight: 700;
  font-size: 16px;
  margin-left: 5px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .paradox-metro-ad-types {
    padding: 60px 20px;
  }
  
  .ad-types-title {
    font-size: 26px;
  }
  
  .ad-types-subtitle {
    font-size: 14px;
  }
  
  .ad-types-table th,
  .ad-types-table td {
    padding: 18px 15px;
    font-size: 14px;
  }
  
  .ad-icon {
    width: 45px;
    height: 45px;
  }
  
  .ad-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 600px) {
  .ad-types-table thead {
    display: none;
  }
  
  .ad-types-table tbody tr {
    display: block;
    margin-bottom: 25px;
    background: rgba(0, 180, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 180, 255, 0.1);
  }
  
  .ad-types-table tbody tr:last-child {
    margin-bottom: 0;
  }
  
  .ad-types-table td {
    display: block;
    padding: 12px 0;
    text-align: right;
  }
  
  .ad-type-cell {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .ad-icon {
    width: 60px;
    height: 60px;
  }
  
  .ad-type-name {
    font-size: 18px;
  }
  
  .suitable-for li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ad-types-title {
    font-size: 22px;
  }
  
  .level-text {
    font-size: 13px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77f3cab */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.paradox-metro-faq {
  background: linear-gradient(180deg, #020a15 0%, #051020 50%, #020a15 100%);
  padding: 100px 40px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.3);
  border-radius: 20px;
  color: #00d4ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.faq-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 15px 0;
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
  line-height: 1.4;
}

.faq-subtitle {
  font-size: 17px;
  color: #8899aa;
  margin: 0;
  line-height: 1.6;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
}

.faq-item {
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.7), rgba(5, 15, 35, 0.8));
  border: 1px solid rgba(0, 180, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: rgba(0, 180, 255, 0.25);
  box-shadow: 0 5px 25px rgba(0, 180, 255, 0.08);
}

.faq-item.active {
  border-color: rgba(0, 180, 255, 0.4);
  box-shadow: 0 10px 35px rgba(0, 180, 255, 0.15);
  background: linear-gradient(145deg, rgba(10, 28, 55, 0.8), rgba(5, 15, 35, 0.9));
}

/* Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: 'Vazirmatn', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 180, 255, 0.04);
}

.faq-number-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
  transition: all 0.3s ease;
}

.faq-item.active .faq-number-badge {
  background: linear-gradient(135deg, #00d4ff, #00a0e0);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
}

.faq-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}

.faq-arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 255, 0.1);
  border-radius: 50%;
  color: #00d4ff;
  transition: all 0.3s ease;
}

.faq-arrow svg {
  transition: transform 0.4s ease;
}

.faq-item.active .faq-arrow {
  background: rgba(0, 180, 255, 0.2);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer-content {
  padding: 0 25px 25px 25px;
  color: #b0c0d0;
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer-content p {
  margin: 0 0 15px 0;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: #ffffff;
  font-weight: 700;
}

.faq-answer-content ul {
  margin: 15px 0;
  padding-right: 25px;
  list-style: none;
}

.faq-answer-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-right: 20px;
}

.faq-answer-content ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #00d4ff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Highlight Box */
.faq-highlight-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: rgba(0, 180, 255, 0.08);
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 12px;
  margin-top: 15px;
}

.faq-highlight-box svg {
  flex-shrink: 0;
}

.faq-highlight-box span {
  color: #00d4ff;
  font-weight: 600;
  font-size: 14px;
}

/* Comparison Box */
.faq-comparison {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: rgba(0, 180, 255, 0.05);
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.compare-item:hover {
  background: rgba(0, 180, 255, 0.08);
  border-color: rgba(0, 180, 255, 0.3);
}

.compare-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-icon.station {
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

.compare-icon.wagon {
  background: linear-gradient(135deg, #0099dd, #0077aa);
  box-shadow: 0 4px 15px rgba(0, 153, 221, 0.3);
}

.compare-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.compare-text {
  color: #c0d0e0;
  font-size: 14px;
  line-height: 1.7;
}

.compare-text strong {
  color: #00d4ff;
  font-weight: 700;
}

/* CTA Section */
.faq-cta-section {
  margin-top: 40px;
}

.faq-cta-box {
  background: linear-gradient(145deg, rgba(0, 180, 255, 0.1), rgba(0, 100, 200, 0.08));
  border: 2px solid rgba(0, 180, 255, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.1), transparent 70%);
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.faq-cta-box h3 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 1;
}

.faq-cta-box p {
  font-size: 16px;
  color: #8899aa;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}

.faq-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(0, 180, 255, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 180, 255, 0.6);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: rgba(0, 180, 255, 0.1);
  color: #00d4ff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid rgba(0, 180, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(0, 180, 255, 0.2);
  border-color: #00d4ff;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .paradox-metro-faq {
    padding: 60px 20px;
  }
  
  .faq-title {
    font-size: 28px;
  }
  
  .faq-subtitle {
    font-size: 15px;
  }
  
  .faq-question {
    padding: 18px 15px;
    gap: 12px;
  }
  
  .faq-number-badge {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 16px;
  }
  
  .faq-text {
    font-size: 14px;
  }
  
  .faq-answer-content {
    padding: 0 15px 20px 15px;
    font-size: 14px;
  }
  
  .faq-cta-box {
    padding: 35px 20px;
  }
  
  .faq-cta-box h3 {
    font-size: 22px;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 24px;
  }
  
  .faq-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  
  .faq-arrow svg {
    width: 16px;
    height: 16px;
  }
  
  .compare-item {
    flex-direction: column;
    gap: 10px;
  }
}/* End custom CSS */