.elementor-270 .elementor-element.elementor-element-8e32c11{--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-270 .elementor-element.elementor-element-7fbca36{--display:flex;--min-height:426px;}.elementor-270 .elementor-element.elementor-element-117b9ab{--display:flex;--justify-content:center;}.elementor-270 .elementor-element.elementor-element-437cabc{--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-270 .elementor-element.elementor-element-b4a51dc{text-align:start;font-family:"Vazirmatn", Sans-serif;font-size:16px;font-weight:600;color:#FFFFFF;}.elementor-270 .elementor-element.elementor-element-b4a51dc p{margin-block-end:0px;}.elementor-270 .elementor-element.elementor-element-8f8ea5c{--display:flex;}.elementor-270 .elementor-element.elementor-element-ab4c0f7{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-270 .elementor-element.elementor-element-ab4c0f7 p{margin-block-end:0px;}.elementor-270 .elementor-element.elementor-element-fcd343c{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-270 .elementor-element.elementor-element-e89e795{--display:flex;}.elementor-270 .elementor-element.elementor-element-dd0a2d7{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-270 .elementor-element.elementor-element-dd0a2d7 p{margin-block-end:3px;}.elementor-270 .elementor-element.elementor-element-7fba444{--display:flex;}.elementor-270 .elementor-element.elementor-element-1328fb9{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-270 .elementor-element.elementor-element-1328fb9.elementor-element{--align-self:flex-start;--order:99999 /* order end hack */;}.elementor-270 .elementor-element.elementor-element-1328fb9 p{margin-block-end:28px;}@media(min-width:768px){.elementor-270 .elementor-element.elementor-element-8e32c11{--content-width:843px;}.elementor-270 .elementor-element.elementor-element-7fbca36{--content-width:860px;}.elementor-270 .elementor-element.elementor-element-117b9ab{--content-width:735px;}}/* Start custom CSS for html, class: .elementor-element-538ae11 *//* ===== دکمه‌ها ===== */
.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-fb2e5b8 */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.paradox-ad-structures {
  background: linear-gradient(180deg, #020a15 0%, #051020 50%, #020a15 100%);
  padding: 80px 40px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.structures-container {
  max-width: 1200px;
  margin: 0 auto;
}

.structures-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);
}

.structures-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);
}

.structures-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.structures-table thead {
  background: rgba(0, 180, 255, 0.1);
}

.structures-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;
}

.structures-table tbody tr {
  border-bottom: 1px solid rgba(0, 180, 255, 0.08);
  transition: all 0.3s ease;
}

.structures-table tbody tr:last-child {
  border-bottom: none;
}

.structures-table tbody tr:hover {
  background: rgba(0, 180, 255, 0.05);
}

.structures-table td {
  padding: 25px 25px;
  vertical-align: middle;
}

/* Structure Cell */
.structure-cell {
  display: flex;
  align-items: center;
  gap: 15px;
}

.structure-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.structure-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

.standing {
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.4);
}

.pedestrian {
  background: linear-gradient(135deg, #00d4ff, #00a0e0);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.vehicle {
  background: linear-gradient(135deg, #0099dd, #0077aa);
  box-shadow: 0 4px 15px rgba(0, 153, 221, 0.3);
}

.structure-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* Advantage Text */
.advantage-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #c0d0e0;
  font-weight: 600;
}

.advantage-text svg {
  flex-shrink: 0;
}

/* Suitable Text */
.suitable-text {
  font-size: 15px;
  color: #b0c0d0;
  line-height: 1.6;
}

.suitable-text .highlight {
  color: #00d4ff;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .paradox-ad-structures {
    padding: 60px 20px;
  }
  
  .structures-title {
    font-size: 26px;
  }
  
  .structures-subtitle {
    font-size: 14px;
  }
  
  .structures-table th,
  .structures-table td {
    padding: 18px 15px;
    font-size: 14px;
  }
  
  .structure-icon {
    width: 45px;
    height: 45px;
  }
  
  .structure-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 600px) {
  .structures-table thead {
    display: none;
  }
  
  .structures-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);
  }
  
  .structures-table tbody tr:last-child {
    margin-bottom: 0;
  }
  
  .structures-table td {
    display: block;
    padding: 12px 0;
    text-align: right;
  }
  
  .structure-cell {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .structure-icon {
    width: 60px;
    height: 60px;
  }
  
  .structure-name {
    font-size: 18px;
  }
  
  .advantage-text {
    justify-content:/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a554f43 */.paradox-billboard-cta {
  padding: 80px 40px;
  background: linear-gradient(180deg, #020a15 0%, #051020 100%);
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.billboard-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.9), rgba(5, 15, 35, 0.95));
  border: 1.5px solid rgba(0, 180, 255, 0.25);
  border-radius: 24px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
}

.billboard-cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 212, 255, 0.5) 50%, 
    transparent 100%);
}

.billboard-cta-container::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.billboard-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.billboard-cta-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.4;
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
}

.billboard-cta-text {
  font-size: 16px;
  color: #8899aa;
  margin: 0 0 40px 0;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.billboard-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #00d4ff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid rgba(0, 180, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-outline::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-cta-outline:hover::before {
  opacity: 1;
}

.btn-cta-outline:hover {
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 180, 255, 0.3);
}

.btn-cta-outline svg {
  stroke: currentColor;
}

.btn-cta-filled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(0, 180, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-cta-filled::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-cta-filled:hover::before {
  left: 100%;
}

.btn-cta-filled:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 180, 255, 0.6);
}

.btn-cta-filled svg {
  stroke: currentColor;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .paradox-billboard-cta {
    padding: 50px 20px;
  }
  
  .billboard-cta-container {
    padding: 45px 30px;
  }
  
  .billboard-cta-title {
    font-size: 24px;
  }
  
  .billboard-cta-text {
    font-size: 14px;
  }
  
  .billboard-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-cta-outline,
  .btn-cta-filled {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .billboard-cta-title {
    font-size: 20px;
  }
  
  .billboard-cta-container {
    padding: 35px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8532f3c */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.paradox-billboard-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: 15px 0;
}

.faq-highlight-box svg {
  flex-shrink: 0;
}

.faq-highlight-box span {
  color: #00d4ff;
  font-weight: 600;
  font-size: 14px;
}

/* Highways Grid */
.faq-highways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.highway-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.highway-badge:hover {
  transform: translateY(-2px);
}

.highway-badge.premium {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 170, 0, 0.08));
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
}

.highway-badge.premium svg {
  stroke: #ffd700;
}

.highway-badge.standard {
  background: rgba(0, 180, 255, 0.08);
  border: 1.5px solid rgba(0, 180, 255, 0.25);
  color: #00d4ff;
}

.highway-badge.standard svg {
  stroke: #00d4ff;
}

/* 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 svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.compare-icon.billboard {
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

.compare-icon.pedestrian {
  background: linear-gradient(135deg, #00d4ff, #00a0e0);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.compare-icon.vehicle {
  background: linear-gradient(135deg, #0099dd, #0077aa);
  box-shadow: 0 4px 15px rgba(0, 153, 221, 0.3);
}

.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-billboard-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-highways-grid {
    grid-template-columns: 1fr;
  }
  
  .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 */
/* Start custom CSS for html, class: .elementor-element-9998d4e */.paradox-footer {
  background: #020a15;
  border-top: 1px solid rgba(0, 180, 255, 0.1);
  padding: 60px 40px 30px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 3px;
}

.footer-logo .logo-sub {
  font-size: 9px;
  color: #00b4ff;
  letter-spacing: 5px;
  margin-top: 2px;
}

.footer-about-text {
  font-size: 14px;
  color: #7788aa;
  line-height: 1.8;
  margin: 0;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #7788aa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00b4ff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #7788aa;
  font-size: 14px;
}

.footer-contact li svg {
  min-width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 180, 255, 0.08);
}

.footer-copy,
.footer-credit {
  font-size: 13px;
  color: #556677;
  margin: 0;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}/* End custom CSS */