/* Global */
:root {
  --bg-main: #050816;
  --bg-alt: #101827;
  --bg-soft: #151c2b;
  --accent: #db6803;
  --accent-soft: #ff7700;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-soft: #1f2937;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Helpers */
.section-padding {
  padding: 80px 0;
}

.bg-section {
  background: radial-gradient(circle at top, #111827 0, #050816 60%);
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-title span {
  background: linear-gradient(to right, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-text {
  color: var(--text-muted);
  max-width: 650px;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: inline-block;
  margin-bottom: 8px;
}

.w-lg-60 {
  max-width: 60%;
}

/* Navbar */
.main-navbar {
  background: linear-gradient(to bottom, #050816f2, #050816e0);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(12px);
  z-index: 999;
}

.navbar-brand {
  color: #fff;
  font-size: 18px;
}

.navbar-brand:hover {
  color: #fff;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.navbar-toggler {
  border-color: rgba(148, 163, 184, 0.6);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding-inline: 14px !important;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background-color: #1f2937;
}

/* Buttons */
.btn-main {
  background: linear-gradient(to right, var(--accent), var(--accent-soft));
  border: none;
  color: #fff;
  border-radius: 999px;
  padding-inline: 28px;
  padding-block: 10px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(219, 104, 3, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 35px rgba(219, 104, 3, 0.55);
}

.btn-outline-light {
  border-radius: 999px;
  border-width: 1px;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url("../image/photo (1).png"); /* غيّر الصورة بما يناسبك */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
    height: 100vh;

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, #111827bb 0, #020617f5 55%, #020617ff 100%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background-color: rgba(31, 41, 55, 0.7);
  border-radius: 999px;
  padding: 6px 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 14px;
  color: #ff7700;
  display: inline-flex;
  justify-content: center;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.hero-title span {
  background: linear-gradient(to right, #db6803, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: #9ca3af;
}

.hero-meta {
  margin-top: 10px;
}

.hero-meta-number {
  font-size: 26px !important;
  font-weight: 800;
  color: #fff;
}

.hero-meta-label {
  font-size: 14px;
  color: #9ca3af;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
}

/* Hero Card (Form) */
.hero-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.98));
  border-radius: var(--radius-xl);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-card h5 {
  font-weight: 700;
}

.hero-form .form-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-form .form-control,
.hero-form .form-select {
  background-color: #020617;
  border-color: #1f2937;
  color: #e5e7eb;
  border-radius: 12px;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
  background-color: #020617;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4);
  color: #f9fafb;
}

/* About */
.about-images {
  position: relative;
}

.about-img-main img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.about-img-badge i {
  font-size: 22px;
  color: var(--accent-soft);
}

.about-img-badge h6 {
  font-size: 14px;
}

.about-img-badge small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Icon Item */
.icon-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.icon-item i {
  font-size: 22px;
  color: var(--accent-soft);
}

.icon-item h6 {
  font-size: 15px;
  margin-bottom: 4px;
}

.icon-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Services */
.service-card {
  background: linear-gradient(145deg, #020617, #020617f7);
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(31, 41, 55, 0.85);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(249, 115, 22, 0.6);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(248, 113, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.service-icon i {
  color: var(--accent-soft);
  font-size: 20px;
}

.service-card h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Why Us / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-item {
  background-color: #020617;
  border-radius: 18px;
  padding: 14px 12px;
  border: 1px solid rgba(31, 41, 55, 0.85);
}

.feature-item i {
  font-size: 20px;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.feature-item h6 {
  font-size: 14px;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Check List */
.check-list li {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.check-list i {
  color: var(--accent-soft);
  margin-left: 6px;
}

/* Process */
.process-row {
  border-radius: 24px;
  background-color: #020617;
  padding: 18px 12px;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.process-step {
  text-align: center;
  padding: 12px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 8px;
  font-size: 14px;
}

.process-step h6 {
  font-size: 14px;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Pricing */
.pricing-card {
  background-color: #020617;
  border-radius: 24px;
  padding: 20px 18px 22px;
  border: 1px solid rgba(31, 41, 55, 0.95);
  height: 100%;
}

.pricing-featured {
  border-color: rgba(249, 115, 22, 0.85);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.pricing-featured::before {
  content: "";
  position: absolute;
  inset-inline: -15%;
  top: -35%;
  height: 70%;
  background: radial-gradient(circle, rgba(248, 113, 22, 0.3), transparent 60%);
  opacity: 0.8;
}

.pricing-badge {
  font-size: 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price span {
  font-size: 22px;
  font-weight: 800;
  color: #f9fafb;
}

.pricing-list li {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.pricing-list i {
  color: var(--accent-soft);
  margin-left: 6px;
}

/* Coverage Tags */
.tag-pill {
  background-color: #020617;
  border-radius: 999px;
  padding: 8px 16px;
  text-align: center;
  border: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 13px;
  color: var(--text-main);
}

/* Stats */
.stats-section {
  padding: 40px 0;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
}

.stat-item {
  padding: 10px;
}

.stat-number {
  display: block;
  font-size: 26px;
  font-weight: 800;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* Testimonials */
.testimonial-card {
  max-width: 520px;
  background-color: #020617;
  border-radius: 24px;
  padding: 20px 18px;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* FAQ */
.accordion-item {
  background-color: transparent;
  border: 1px solid rgba(31, 41, 55, 0.9);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 8px;
}

.accordion-button {
  background-color: #020617;
  color: #f9fafb;
  box-shadow: none !important;
  font-size: 14px;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:not(.collapsed) {
  background-color: #020617;
  color: #f97316;
}

.accordion-body {
  background-color: #020617;
  color: var(--text-muted);
  font-size: 13px;
}

/* Contact */
.contact-section {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}

.contact-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-item i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
}

.contact-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-item a,
.contact-item p {
  font-size: 14px;
  margin: 0;
  color: var(--text-main);
}

.contact-card {
  background-color: #020617;
  border-radius: 24px;
  padding: 20px 18px;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.contact-card .form-label {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-card .form-control,
.contact-card .form-select,
.contact-card textarea {
  background-color: #020617;
  border-color: #1f2937;
  color: #e5e7eb;
  border-radius: 12px;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus,
.contact-card textarea:focus {
  background-color: #020617;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4);
  color: #f9fafb;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  margin-top: 32px;
  padding-top: 16px;
  padding-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background-color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.7);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(22, 163, 74, 0.85);
}
.call-float {
  position: fixed;
  bottom: 68px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background-color: #2253c5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.7);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-float:hover {
  transform: translateY(-2px) scale(1.03);
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(22, 163, 74, 0.85);
}
@media (max-width: 991px) {
  #mainNavbar {
    text-align: center !important;
  }

  #mainNavbar .navbar-nav {
    width: 100%;
    justify-content: center !important;
    align-items: center !important;
  }

  #mainNavbar .nav-link {
    width: 100%;
    padding: 10px 0;
  }
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 90px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 30px;
  }

  .w-lg-60 {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    padding-inline: 8px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    margin-top: 20px;
  }

  .stats-section {
    padding: 28px 0;
  }
}
/* ========== FOOTER ========== */
.footer-section {
  background: #020617;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

/* اللوجو / اسم الشركة */
.footer-brand {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(to right, #db6803, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-text {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
  max-width: 90%;
}

/* عناوين الأعمدة */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-right: 3px solid #db6803;
  padding-right: 8px;
}

/* الروابط */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #ff7700;
  padding-right: 4px;
}

/* التواصل */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7700;
  font-size: 16px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #ff7700;
}

/* الخط السفلي */
.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.6);
}

.footer-copy {
  color: #9ca3af;
  font-size: 14px;
}

.footer-dev {
  color: #6b7280;
  font-size: 13px;
}

.footer-dev .brand-name {
  background: linear-gradient(to right, #db6803, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 575px) {
  .footer-brand {
    text-align: center;
  }
  .footer-title {
    text-align: center;
    border-right: none;
    border-bottom: 2px solid #db6803;
    padding-bottom: 5px;
  }
  .footer-links li {
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
}
/* ===== Workflow / Process Section ===== */

.process-row {
  border-radius: 24px;
  background-color: #020617;
  padding: 18px 12px;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.process-step {
  text-align: center;
  padding: 12px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 8px;
  font-size: 14px;
  color: #f9fafb;
}

.process-step h6 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.process-step p {
  font-size: 12px;
  color: #9ca3af;
}

/* ===== Guarantees Section ===== */

.guarantee-card {
  background-color: #020617;
  border-radius: 20px;
  padding: 16px 14px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  border-color: rgba(249, 115, 22, 0.7);
}

.guarantee-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background-color: rgba(248, 113, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.guarantee-icon i {
  color: #ff7700;
  font-size: 20px;
}

.guarantee-card h6 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #f9fafb;
}

.guarantee-card p {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background-color: rgba(31, 41, 55, 0.9);
  color: #f97316;
  border: 1px solid rgba(248, 113, 22, 0.4);
}
/* Footer Logo Styling */
.footer-logo img {
  width: 150px;        /* تقدر تصغّر أو تكبّر */
  height: auto;        /* يحافظ على الجودة */
  object-fit: contain;
  display: block;
}

/* ===== Footer Mobile Fix (Responsive) ===== */
@media (max-width: 575px) {

  .footer-section {
    padding-top: 40px;
    padding-bottom: 25px;
    text-align: center;
  }

  /* العمود الأول */
  .footer-brand {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-text {
    max-width: 100%;
    margin: 0 auto 18px;
    font-size: 13px;
    line-height: 1.6;
  }

  /* عناوين الأعمدة */
  .footer-title {
    text-align: center;
    font-size: 15px;
    border-right: none !important;
    border-bottom: 2px solid #db6803;
    padding-bottom: 8px;
    margin-bottom: 12px;
  }

  /* الروابط */
  .footer-links {
    padding: 0;
  }

  .footer-links li {
    text-align: center;
    margin-bottom: 6px;
  }

  .footer-links a {
    font-size: 13px;
  }

  /* عناصر التواصل */
  .footer-contact-item {
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 14px;
  }

  .footer-contact-item i {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .footer-contact-item a,
  .footer-contact-item span {
    font-size: 13px;
  }

  /* الخط السفلي */
  .footer-bottom {
    padding-top: 16px;
    margin-top: 12px;
  }

  .footer-copy,
  .footer-dev {
    font-size: 12px;
  }

  .footer-dev .brand-name {
    font-size: 12px;
  }
}
/* Theme Toggle Button */
.theme-btn {
  background: #1f2937;
  border: 1px solid rgba(148, 163, 184, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #f9fafb;
  transition: all 0.25s ease;
}

.theme-btn:hover {
  background: #374151;
}
.footer-map {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
