/* Arabic Font Fix – Apply Cairo everywhere */
html[lang="ar"],
html[lang="ar"] body {
  font-family: 'Cairo', sans-serif;
}

/* =============== ROOT & GLOBAL =============== */
:root {
  --bg-main: #030617;
  --bg-alt: #070b21;
  --accent: #fbbf24;
  --accent-strong: #f97316;
  --accent-soft: rgba(251, 191, 36, 0.12);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --card-bg: #0b1024;
  --border-soft: rgba(148, 163, 184, 0.25);
  --radius-xl: 18px;
  --radius-lg: 12px;
  --shadow-soft: 0 22px 40px rgba(15, 23, 42, 0.7);
  --transition-fast: 0.25s ease;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #02010a 100%);
  color: var(--text-main);
  line-height: 1.8;
  scroll-behavior: smooth;
}

button {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =============== NAVBAR =============== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(3, 6, 24, 0.97),
    rgba(3, 6, 24, 0.78)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.9);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #111827;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    opacity var(--transition-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
  opacity: 0.95;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =============== HERO =============== */
main {
  padding-bottom: 4rem;
}

.hero {
  padding: 2.7rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.hero-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-strong));
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 2.9rem);
  margin-bottom: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle,
.hero-subtitle-en {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.hero-subtitle-en {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.hero-badge {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111827;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.95);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 1);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: rgba(249, 250, 251, 0.8);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.96);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
}

.hero-note span {
  color: var(--accent);
  font-weight: 600;
}

/* HERO CARD */
.hero-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-card-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-card-chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .6);
  color: var(--text-muted);
  white-space: nowrap;
}

/* شبكة المربعات الصغيرة */
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.mini-card {
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.mini-card span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.mini-card strong {
  font-size: 0.82rem;
}

/* الفوتر */
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.hero-progress {
  width: 130px;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.9);
  overflow: hidden;
}

.hero-progress-bar {
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

/* =============== SECTIONS =============== */
section {
  padding: 2.6rem 0;
}

.section-header {
  margin-bottom: 1.9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.section-number {
  font-size: 0.8rem;
  color: #6b7280;
  font-variant-numeric: tabular-nums;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 22rem;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.badge-soft span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* =============== SERVICES =============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.7);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast), background var(--transition-fast);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at top left,
    rgba(251, 191, 36, 0.14),
    transparent 65%
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  border-color: rgba(251, 191, 36, 0.6);
  background: #020617;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.service-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.service-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  min-height: 3.2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-tag {
  font-size: 0.7rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
}

/* =============== PRICING =============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  border-color: rgba(251, 191, 36, 0.6);
  background: #020617;
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.highlight {
  border-color: rgba(251, 191, 36, 0.9);
  background: radial-gradient(
      circle at top,
      rgba(251, 191, 36, 0.16),
      rgba(15, 23, 42, 0.98)
    );
  transform: translateY(-3px);
}

.price-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.price-label {
  font-size: 0.76rem;
  color: var(--accent);
}

.price-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.price-value span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-features {
  list-style: none;
  margin: 0.4rem 0 0.7rem;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-features li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}

.price-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 0.32rem;
  background: #4ade80;
  flex-shrink: 0;
}

/* =============== PORTFOLIO =============== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 0.9rem;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.9);
  border-color: rgba(96, 165, 250, 0.7);
}

.project-label {
  font-size: 0.7rem;
  color: #93c5fd;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-title {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
  font-size: 0.74rem;
}

.pill {
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* ===================== FAQ ===================== */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  padding: 0.8rem 1rem;
  background: var(--card-bg);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
}

.faq-question {
  font-family: inherit;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.faq-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-answer p {
  font-size: 0.90rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  content: "−";
}


/* =============== CONTACT =============== */
.contact-grid {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.85);
  flex: 1 1 0;
}

.contact-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-label {
  width: 5.4rem;
  color: var(--text-main);
  font-weight: 500;
  flex-shrink: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  font-size: 0.82rem;
}

.contact-form-full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field button{
  display:inline-block;margin-top:12px;padding:10px 14px;border-radius:12px;
  border:1px solid rgba(148,163,184,.25);text-decoration:none;
}

.field label {
  font-size: 0.78rem;
}

.field input,
.field textarea,
.field select {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.45rem 0.55rem;
  color: var(--text-main);
  font-family: inherit;
  resize: vertical;
  min-height: 38px;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(129, 140, 248, 0.95);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.7);
  background: rgba(15, 23, 42, 0.98);
}

.contact-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* =============== FOOTER =============== */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1rem 0 1.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 900px) {
  .hero-grid,
  .faq-grid,
  .contact-grid {
    flex-direction: column;
  }

  .hero {
    padding-top: 2.2rem;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(3, 7, 18, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    flex-direction: column;
    padding: 0.75rem 1.25rem 0.9rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

 .hero-card {
    margin-top: 1rem;
    padding: 1rem;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-progress {
    width: 100%;
  }

  .hero-card-title {
    font-size: 0.95rem;
  }

  .services-grid,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .services-grid,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* =============== LANGUAGE SWITCH =============== */
.lang-switch {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
  white-space: nowrap;
}

.lang-switch:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(249, 250, 251, 0.8);
  color: var(--text-main);
  transform: translateY(-1px);
}

@media (max-width: 780px) {
  .lang-switch {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }
}

/* =============== CONTACT SOCIAL ICONS =============== */
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-icon i {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-icon:hover {
  color: var(--text-main);
  transform: translateX(-3px);
}

[dir="rtl"] .social-icon:hover {
  transform: translateX(3px); 
}

.social-icon:hover i {
  color: var(--accent-strong);
  transform: scale(1.2);
}

/* ==== Portfolio image card ==== */

.project-card-has-image {
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}

.project-card-has-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  border-color: rgba(96, 165, 250, 0.8);
}

.project-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.project-content {
  padding: 1rem 1rem 1.2rem;
}

.project-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.45rem 0 0.6rem;
  min-height: 45px;
  line-height: 1.5;
}

.project-btn {
  display: inline-block;
  margin-top: .65rem;
  font-size: 0.8rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.6);
  color: var(--accent);
  transition: background .25s ease, transform .25s ease;
}

.project-btn:hover {
  background: var(--accent);
  color: #111;
  transform: translateY(-2px);
}

/* =============== PRICING EXTRA (HOSTING SECTION) =============== */

.pricing-extra {
  margin-top: 2rem;
}

.pricing-extra-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  border-color: rgba(251, 191, 36, 0.6);
  background: #020617;
}

.service-card:hover::before {
  opacity: 1;
}
.pricing-extra-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.pricing-extra-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-extra-content {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pricing-extra-price {
  min-width: 180px;
}

.pricing-extra-price-main {
  font-size: 1.1rem;
  font-weight: 600;
}

.pricing-extra-price-main span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-extra-price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.pricing-extra-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.2rem;
}

.pricing-extra-list li::before {
  content: "• ";
  color: var(--accent);
}

/* موبايل */
@media (max-width: 780px) {
  .pricing-extra-card {
    padding: 1.1rem 1.1rem;
  }

  .pricing-extra-content {
    flex-direction: column;
  }
}

.pricing-extra-domain .pricing-extra-card {
  margin-top: 1rem;
}

.pricing-extra-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}

.pkg-highlight {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  background-color: rgba(250, 204, 21, 0.05);
  transition: background-color 0.3s ease, outline-color 0.3s ease;
}
