/* Start custom CSS for section, class: .elementor-element-42e52d3 */:root {
  --bg: #f5f7fa;
  --white: #ffffff;
  --surface: #f0f4f8;
  --border: #e2e8f0;
  --border2: #cbd5e1;
  --text: #0f172a;
  --muted: #64748b;
  --dim: #94a3b8;
  --teal: #0d9488;
  --teal-light: #f0fdfa;
  --teal-mid: #ccfbf1;
  --teal-dark: #0f766e;
  --gold: #d97706;
  --gold-light: #fffbeb;
  --red: #dc2626;
  --red-light: #fef2f2;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --blue: #2563eb;
  --blue-light: #eff6ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  font-size: 15px;
}

.page {
  margin: 0 auto;
  padding: 0 28px 100px;
}

/* ─── HERO ─── */
.hero {
  padding: 56px 0 0;
  margin-bottom: 52px;
}

.hero-inner {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 320px;
}

.hero-text {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 400px;
}

.hero-img {
  position: relative;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    transparent 60%,
    rgba(255, 255, 255, 0.15)
  );
}

/* ─── PAIN BLOCK ─── */
.pain-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pain-card.accent {
  background: var(--teal-light);
  border-color: var(--teal-mid);
}

.pain-q {
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pain-stat {
  font-size: 24px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 8px;
}

.pain-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── SECTION ─── */
.section {
  margin-bottom: 68px;
}

.sec-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}

.sec-num {
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.sec-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
}
.sec-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── SERVICE CARD with image ─── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 28px 30px 30px;
}

/* ─── GOOGLE ADS ─── */
.ads-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ads-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.ads-pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 18px 16px;
}

.ads-pricing-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ads-pricing-value {
  font-size: 19px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
}

.ads-pricing-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.6;
}

.ads-free-strip {
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}

.ads-free-strip::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.ads-includes-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ads-includes-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}

.ads-includes-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── REPORTAGE TABS ─── */
.pkg-tabs {
  display: flex;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 4px;
  gap: 4px;
}

.pkg-tab {
  flex: 1;
  padding: 11px 8px;
  background: transparent;
  border: none;
  border-radius: 9px;
  font-family: "Vazirmatn", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.4;
}

.pkg-tab.active {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pkg-tab .tab-count {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.7;
  margin-top: 2px;
}

.pkg-tab.active .tab-count {
  opacity: 1;
}

.pkg-panel {
  display: none;
}
.pkg-panel.active {
  display: block;
}

.pkg-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.pkg-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.pkg-top {
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
}

.pkg-name {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pkg-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--muted);
}

.pkg-price-area {
  text-align: left;
  flex-shrink: 0;
}

.pkg-original {
  font-size: 13px;
  color: var(--dim);
  text-decoration: line-through;
  text-align: left;
}

.pkg-final {
  font-size: 24px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.2;
}

.pkg-unit {
  font-size: 12px;
  color: var(--muted);
}

.pkg-discount-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 800;
  margin-top: 4px;
}

.pkg-no-discount {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}

.urgency-bar {
  background: linear-gradient(90deg, var(--gold-light), #fff);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

/* ─── SITE TABLE ─── */
.site-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.site-table th {
  background: var(--surface);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-align: right;
  border-bottom: 1px solid var(--border);
}

.site-table th:last-child {
  text-align: left;
}

.site-table td {
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.site-table tr:last-child td {
  border-bottom: none;
}
.site-table tr:hover td {
  background: var(--surface);
}

.site-name {
  color: var(--text);
  font-weight: 600;
}
.site-cat {
  font-size: 11px;
  color: var(--dim);
  display: block;
}
.site-price {
  text-align: left;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

/* ─── NESHAAN ─── */
.neshaan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.neshaan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.neshaan-card:hover {
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.12);
  border-color: var(--teal-mid);
}

.neshaan-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.neshaan-body {
  padding: 18px 18px 20px;
}

.neshaan-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--teal-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.neshaan-name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--text);
}

.neshaan-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.neshaan-prices {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.neshaan-original {
  font-size: 12px;
  color: var(--dim);
  text-decoration: line-through;
}

.neshaan-final {
  font-size: 19px;
  font-weight: 900;
  color: var(--teal);
}

.neshaan-unit {
  font-size: 11px;
  color: var(--muted);
  margin-right: 3px;
}

.neshaan-saving {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  margin-top: 3px;
}

/* ─── FORM ─── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-header {
  display: grid;
  grid-template-columns: 1fr 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.form-header-text {
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--teal-light), var(--white));
}

.form-header-text h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.form-header-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.form-header-img {
  overflow: hidden;
}

.form-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-body {
  padding: 28px 32px 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: "Vazirmatn", sans-serif;
  font-size: 14px;
  color: var(--text);
  direction: rtl;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--dim);
}
.form-select option {
  background: white;
  color: var(--text);
}
.form-textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.7;
}

.form-divider {
  font-size: 11px;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 4px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9px;
  margin-bottom: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
  color: var(--muted);
  user-select: none;
}

.check-item input {
  display: none;
}

.check-item:has(input:checked) {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
  font-weight: 600;
}

.check-box {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border2);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: white;
}

.check-item:has(input:checked) .check-box {
  background: var(--teal);
  border-color: var(--teal);
}

.check-item:has(input:checked) .check-box::after {
  content: "✓";
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.btn-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-family: "Vazirmatn", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.btn-submit:active {
  transform: translateY(0);
}

/* ─── FOOTER ─── */
.footer {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--dim);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-img {
    height: 200px;
  }
  .pain-block {
    grid-template-columns: 1fr;
  }
  .ads-layout {
    grid-template-columns: 1fr;
  }
  .ads-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pkg-tabs {
    flex-direction: column;
  }
  .pkg-top {
    flex-direction: column;
  }
  .neshaan-grid {
    grid-template-columns: 1fr;
  }
  .form-header {
    grid-template-columns: 1fr;
  }
  .form-header-img {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page {
    margin: 0 auto;
    padding: 5px;
  }
}

.form-header {
  display: grid;
  grid-template-columns: 1fr 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}/* End custom CSS */