/* =====================================================
   الجحفلي للحلول الرقمية - Professional Website
   HTML / CSS / JS only - No backend
===================================================== */
:root {
  /* Colors */
  --navy: #061426;
  --dark: #F8FAFC;
  --dark-2: #F1F5F9;
  --dark-3: #E2E8F0;
  --blue: #0070F0;
  --cyan: #00AEEF;
  --white: #FFFFFF;
  --text: #2C3E50;
  --muted: #64748B;
  --glass: rgba(255, 255, 255, .75);
  --glass-2: rgba(255, 255, 255, .95);
  --border: rgba(0, 174, 239, .18);
  --border-soft: rgba(15, 23, 42, .08);
  --shadow: 0 20px 50px rgba(6, 20, 38, .06);
  --radius: 26px;
  --ease: .35s ease;

  /* Spacing System */
  --card-pad: 28px;
  --grid-gap: 24px;
  --section-pad-y: 84px;
  --section-pad-y-mob: 56px;
  --title-margin: 12px;
  --para-margin: 16px;
  --section-title-margin: 40px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: #FFFFFF;
  line-height: 1.85;
  overflow-x: hidden;
}

body::before {
  display: none !important;
}

/* Disable backgrounds glow and floating bubbles */
.dynamic-bg-glow-container,
.glow-layer,
.hero-bg,
.pixel-cloud {
  display: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

/* Section Separation Visuals */
.section-alt {
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(0, 174, 239, 0.08);
  border-bottom: 1px solid rgba(0, 174, 239, 0.08);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.15), transparent);
}

.section-alt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.15), transparent);
}

.section-divider {
  height: 1px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.18), transparent);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 20px var(--cyan);
  z-index: 5000;
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  top: 0;
  background: rgba(6, 20, 38, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(6, 20, 38, 0.75);
  border: 1px solid rgba(0, 217, 255, 0.18);
  backdrop-filter: blur(24px) saturate(170%);
  box-shadow: 0 12px 40px rgba(4, 15, 30, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.site-header.scrolled .nav-shell {
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 12px 24px !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.logo-wrapper {
  position: relative;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.logo-draw-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo-draw-circle circle {
  stroke: var(--cyan);
  stroke-width: 1.5px;
  stroke-dasharray: 120 40;
  transform-origin: center;
  animation: logo-rotate 6s linear infinite;
}

@keyframes logo-rotate {
  100% {
    transform: rotate(360deg);
  }
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 217, 255, .42));
  transition: transform 0.4s ease;
}

.brand:hover .logo-wrapper img {
  transform: scale(1.06) rotate(3deg);
}

.brand div {
  line-height: 1.15;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.brand:hover strong {
  color: var(--cyan);
}

.brand span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.96rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cyan);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 2px;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: var(--ease);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  transition: var(--ease);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 23px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 112, 240, .25);
  border: 2px solid var(--blue);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  color: var(--white);
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 174, 239, .4);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--navy);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 112, 240, .2);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, .08);
  border-color: rgba(37, 211, 102, .34);
  color: #25D366;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: var(--white);
  transform: translateY(-4px);
}

.btn-telegram {
  background: rgba(0, 136, 204, .08);
  border-color: rgba(0, 136, 204, .34);
  color: #0088CC;
}

.btn-telegram:hover {
  background: #0088CC;
  color: var(--white);
  transform: translateY(-4px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, rgba(0, 174, 239, .08), transparent 34%), radial-gradient(circle at 20% 40%, rgba(0, 112, 240, .08), transparent 32%);
}

.pixel-cloud span {
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(0, 217, 255, .75), rgba(0, 123, 255, .32));
  border: 1px solid rgba(0, 217, 255, .5);
  box-shadow: 0 0 24px rgba(0, 217, 255, .35);
  animation: float 7s ease-in-out infinite;
}

.pixel-cloud span:nth-child(1) {
  top: 19%;
  right: 8%;
}

.pixel-cloud span:nth-child(2) {
  top: 34%;
  right: 14%;
  width: 18px;
  height: 18px;
  animation-delay: 1s;
}

.pixel-cloud span:nth-child(3) {
  top: 27%;
  left: 12%;
  width: 36px;
  height: 36px;
  animation-delay: 2s;
}

.pixel-cloud span:nth-child(4) {
  bottom: 28%;
  left: 9%;
  width: 22px;
  height: 22px;
  animation-delay: 3s;
}

.pixel-cloud span:nth-child(5) {
  bottom: 18%;
  right: 20%;
  width: 32px;
  height: 32px;
  animation-delay: 4s;
}

.pixel-cloud span:nth-child(6) {
  top: 58%;
  left: 18%;
  width: 18px;
  height: 18px;
  animation-delay: 5s;
}

.pixel-cloud span:nth-child(7) {
  top: 14%;
  left: 36%;
  width: 20px;
  height: 20px;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: .8;
  }

  50% {
    transform: translateY(-24px) rotate(10deg);
    opacity: 1;
  }
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px 56px;
  align-items: center;
}

.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .hero-actions {
  grid-column: 1;
}

.hero-copy .hero-showcase {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  width: 100%;
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  border-bottom: 3px solid var(--cyan);
  padding: 0 0 8px 0;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.label:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
  transform: translateY(-2px);
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.28;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: none;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.22rem;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 640px;
}

.trust-strip div {
  border: 1px solid var(--border-soft);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(6, 20, 38, 0.04);
  border-radius: 20px;
  padding: 16px;
}

.trust-strip strong {
  display: block;
  color: var(--blue);
  font-size: 1.16rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: .9rem;
}

.hero-showcase {
  display: flex;
  justify-content: center;
}

.device-card {
  width: min(440px, 90vw);
  min-height: 490px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  padding: 18px;
  transform: perspective(1000px) rotateY(-9deg) rotateX(5deg);
}

.device-top {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.device-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 217, 255, .45);
}

.device-screen {
  min-height: 410px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 217, 255, .18), transparent 64%), linear-gradient(135deg, rgba(2, 9, 18, .86), rgba(8, 27, 49, .65));
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.device-screen img {
  width: 72%;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .5));
}

.screen-lines {
  position: absolute;
  bottom: 28px;
  right: 28px;
  left: 28px;
  display: grid;
  gap: 9px;
}

.screen-lines b {
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(0, 217, 255, .65), transparent);
}

.floating-badge {
  position: absolute;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(2, 9, 18, .86);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  font-weight: 900;
  color: var(--white);
}

.badge-one {
  top: 84px;
  right: -18px;
}

.badge-two {
  bottom: 120px;
  left: -24px;
}

.badge-three {
  bottom: 44px;
  right: 28px;
}

/* Hero Slideshow Slider */
.hero-slider-container {
  width: 100%;
  max-width: 100%;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(6, 20, 38, 0.08), 0 0 0 1px rgba(6, 20, 38, 0.03);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  padding-top: 36px;
}

.hero-slider-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-soft);
  z-index: 5;
}

.hero-slider-container::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: -14px 0 0 #ffbd2e, -28px 0 0 #27c93f;
  z-index: 6;
}

.hero-slider-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 75px rgba(6, 20, 38, 0.12);
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 440px;
  position: relative;
  background: var(--white);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 24px;
  box-sizing: border-box;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-slider-container:hover .hero-slide.active img {
  transform: scale(1.03);
}

.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(6, 20, 38, 0.04);
  padding: 6px 12px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-slider-dots .dot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

.hero-slider-dots .dot:hover {
  background: var(--blue);
  transform: scale(1.25);
}

/* Common sections */
.section-title h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  margin-bottom: var(--title-margin);
}

.section-title p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--section-title-margin);
}

/* صورة قسم الخدمات */
.services-section-image {
  width: 100%;
  max-width: 680px;
  margin: 18px auto 26px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 80, 180, 0.13);
  line-height: 0;
}

.services-section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  transition: transform 0.45s ease;
}

.services-section-image:hover img {
  transform: scale(1.03);
}


.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: start;
}

.intro-text p {
  font-size: 1.14rem;
  color: var(--muted);
  margin-bottom: var(--para-margin);
}

.glass {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 174, 239, .15);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 45px rgba(6, 20, 38, .05);
  transition: var(--ease);
}

.glass:hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 174, 239, .15);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.service-card {
  padding: var(--card-pad);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(6, 20, 38, 0.03);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 25px 50px rgba(6, 20, 38, 0.08), 0 0 0 1px rgba(0, 174, 239, 0.04);
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card .card-body a {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 112, 240, 0.04);
  border: 1px solid rgba(0, 112, 240, 0.12);
  color: var(--blue);
  padding: 10px 20px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-card .card-body a::after {
  content: '←';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-card .card-body a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 112, 240, 0.15);
  transform: translateY(-2px);
}

.service-card .card-body a:hover::after {
  transform: translateX(-4px);
}

/* Card Slider Style */
.card-slider-container {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  margin-bottom: 22px;
}

.card-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.card-slide.active {
  opacity: 1;
  z-index: 2;
}

.card-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-card:hover .card-slide.active img {
  transform: scale(1.05);
}

.card-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(6, 20, 38, 0.04);
  padding: 4px 8px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-slider-dots .card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-slider-dots .card-dot.active {
  background: var(--blue);
  width: 14px;
  border-radius: 3px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(0, 217, 255, .16), transparent 45%);
  pointer-events: none;
}


.service-card i,
.service-icon i,
.value-card i,
.service-num,
.service-card svg,
.value-card svg {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 217, 255, .18);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: var(--title-margin);
}

.service-card p {
  color: var(--text);
  margin-bottom: var(--para-margin);
  font-weight: 400;
  font-size: 0.96rem;
  line-height: 1.7;
}


.why-grid {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
}

/* Reduced Why heading to look extremely professional */
.why-title-reduced {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem) !important;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
  color: var(--navy);
}

/* Why Illustration Image Wrapper placed under label in Title block */
.why-section-image {
  width: 100%;
  max-width: 680px;
  margin: 20px auto 36px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.18);
  box-shadow: 0 16px 48px rgba(0, 80, 180, 0.12);
  line-height: 0;
  transition: all 0.3s ease;
}

.why-section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  transition: transform 0.45s ease;
}

.why-section-image:hover img {
  transform: scale(1.03);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Premium Why Card Styling */
.why-item {
  display: flex;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-soft);
  transition: var(--ease);
  align-items: center;
}

.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 217, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

/* Premium Icon Container with subtle glow */
.why-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0, 217, 255, 0.07);
  border: 1px solid rgba(0, 217, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: var(--ease);
  color: var(--cyan);
}

.why-item:hover .why-icon-container {
  background: rgba(0, 217, 255, 0.16);
  border-color: rgba(0, 217, 255, 0.45);
  transform: scale(1.06);
  box-shadow: 0 0 14px rgba(0, 217, 255, 0.22);
  color: #fff;
}

.why-icon-container svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: var(--ease);
}

.why-item h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.3s ease;
}

.why-item:hover h3 {
  color: var(--blue);
}

.why-item p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.why-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  width: 100%;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* Connecting Line behind the badges on desktop (moving glow animation) */
@keyframes line-glow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 174, 239, 0) 0%, rgba(0, 217, 255, 0.8) 50%, rgba(0, 112, 240, 0) 100%);
  background-size: 200% 100%;
  animation: line-glow 4s linear infinite;
  z-index: 1;
}

.step {
  position: relative;
  padding: 52px 28px 32px;
  border: 1px solid rgba(0, 174, 239, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(6, 20, 38, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 174, 239, 0.35);
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 110, 240, 0.08);
}

/* Overlapping Badge at the top right */
.step-badge {
  position: absolute;
  top: -24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: 3px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(0, 112, 240, 0.25);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover .step-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.4);
}

/* Step Icon Container */
.step-icon-container {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 174, 239, 0.06);
  border: 1px solid rgba(0, 174, 239, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: var(--cyan);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.step-icon-container svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover .step-icon-container {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0, 112, 240, 0.2);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.step:hover h3 {
  color: var(--blue);
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Faint Watermark Number */
.step-number-watermark {
  position: absolute;
  bottom: 8px;
  left: 20px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0, 174, 239, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s ease;
}

.step:hover .step-number-watermark {
  color: rgba(0, 174, 239, 0.08);
  transform: scale(1.1) translateY(-5px);
}

.cta {
  padding: var(--section-pad-y) 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-radius: 34px;
  padding: var(--card-pad) 40px;
  background: linear-gradient(135deg, rgba(0, 123, 255, .2), rgba(0, 217, 255, .07));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: var(--title-margin);
}

.cta-box p {
  color: var(--muted);
}

/* Inner pages */
/* Inner pages */
.page-hero {
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, rgba(0, 174, 239, .06), transparent 35%), radial-gradient(circle at 20% 40%, rgba(0, 112, 240, .06), transparent 32%);
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px 56px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero-info .label {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 850;
  margin-bottom: 18px;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-shadow: none;
}

.page-hero-lead {
  font-size: 1.12rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.8;
  max-width: 650px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero-showcase {
  width: 100%;
}

.page-hero-mockup {
  width: 100%;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(6, 20, 38, 0.08), 0 0 0 1px rgba(6, 20, 38, 0.03);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  position: relative;
  padding-top: 36px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.page-hero-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-soft);
  z-index: 5;
}

.page-hero-mockup::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: -14px 0 0 #ffbd2e, -28px 0 0 #27c93f;
  z-index: 6;
}

.page-hero-mockup:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 75px rgba(6, 20, 38, 0.12);
}

.page-hero-img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  display: block;
  background: var(--white);
  padding: 8px;
  transition: transform 0.5s ease;
}

.page-hero-mockup:hover .page-hero-img {
  transform: scale(1.02);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

.content-block h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.highlight-card {
  padding: 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 217, 255, .08), transparent 70%);
  pointer-events: none;
}

.highlight-card svg {
  filter: drop-shadow(0 0 16px rgba(0, 217, 255, .35));
  transition: var(--ease);
}

.highlight-card:hover svg {
  transform: scale(1.08) rotate(5deg);
}

.highlight-card p {
  color: var(--muted);
}

.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.value-card {
  padding: 36px 28px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 20, 38, 0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 25px 50px rgba(6, 20, 38, 0.06);
}

.value-card:hover::after {
  opacity: 1;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: var(--blue);
}

.value-card p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.75;
}

.value-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 112, 240, 0.06);
  color: var(--blue);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(5deg) scale(1.05);
}

.value-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(6, 20, 38, 0.05);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  transition: color 0.3s ease;
}

.value-card:hover .value-number {
  color: rgba(0, 174, 239, 0.12);
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

.list-panel {
  padding: 30px;
}

.list-panel h2 {
  margin-bottom: 14px;
}

.checked {
  list-style: none;
}

.checked li {
  position: relative;
  padding-right: 34px;
  margin: 12px 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.checked li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: rgba(0, 217, 255, .11);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(0, 217, 255, .15);
}

.services-list {
  display: grid;
  gap: 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 28px;
}

.service-detail h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.service-detail p {
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.75;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  padding: 32px;
  position: relative;
  transition: var(--ease);
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border-color: var(--border);
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
}

.price-desc {
  color: var(--cyan);
  font-weight: 900;
  margin: 8px 0 18px;
}

.add-ons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.add-ons>div {
  padding: 24px;
  text-align: center;
}

.add-ons i {
  font-size: 2.2rem;
  color: var(--cyan);
  margin-bottom: 12px;
}

.add-ons p {
  color: var(--muted);
}


/* ============================================================
   قسم اطلب خدمة – تصميم متميز
   ============================================================ */

/* الخلفية والزخرفة */
.req-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f4f8ff 0%, #eef3fc 50%, #f0faff 100%);
}

.req-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.req-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.req-orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 80, 200, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 30px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -25px) scale(1.06); }
}

.req-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

/* المحتوى الرئيسي */
.req-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ============ لوحة المعلومات ============ */
.req-info {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.req-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.req-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy);
  margin: 12px 0 18px;
}

.req-title-accent {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.req-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* صورة التواصل */
.req-contact-image {
  margin-bottom: 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 80, 160, 0.12);
  line-height: 0;
}

.req-contact-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.req-contact-image:hover img {
  transform: scale(1.03);
}

/* بطاقات التواصل */
.req-contact-cards {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.req-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.req-contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.req-card-wa {
  background: rgba(37, 211, 102, 0.07);
  border-color: rgba(37, 211, 102, 0.25);
}
.req-card-wa::before { background: rgba(37, 211, 102, 0.06); }
.req-card-wa:hover { background: rgba(37, 211, 102, 0.14); border-color: rgba(37, 211, 102, 0.5); transform: translateX(-4px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15); }

.req-card-tg {
  background: rgba(0, 136, 204, 0.07);
  border-color: rgba(0, 136, 204, 0.25);
}
.req-card-tg::before { background: rgba(0, 136, 204, 0.06); }
.req-card-tg:hover { background: rgba(0, 136, 204, 0.14); border-color: rgba(0, 136, 204, 0.5); transform: translateX(-4px); box-shadow: 0 8px 24px rgba(0, 136, 204, 0.15); }

.req-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.req-card-wa .req-card-icon { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.req-card-tg .req-card-icon { background: rgba(0, 136, 204, 0.15); color: #0088CC; }

.req-card-text {
  flex: 1;
}
.req-card-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--navy); }
.req-card-wa .req-card-text strong { color: #1a9e4a; }
.req-card-tg .req-card-text strong { color: #006fa3; }
.req-card-text span { font-size: 0.85rem; color: var(--muted); }

.req-card-arrow {
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 0.3s ease;
}
.req-contact-card:hover .req-card-arrow { transform: translateX(-4px); }

/* مميزات */
.req-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.req-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
}

.req-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 174, 239, 0.5);
}

/* ============ بطاقة النموذج ============ */
.req-form-wrapper {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(0, 174, 239, 0.15);
  box-shadow: 0 24px 60px rgba(6, 20, 55, 0.08), 0 0 0 1px rgba(255,255,255,0.8) inset;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.req-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
  background-size: 200% 100%;
  animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* رأس النموذج */
.req-form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.12);
}

.req-form-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 112, 240, 0.25);
}

.req-form-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 4px;
}

.req-form-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* شرائح الخدمة */
.req-service-chips-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.req-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.req-chip {
  padding: 7px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 174, 239, 0.25);
  background: rgba(0, 174, 239, 0.04);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.req-chip:hover {
  border-color: var(--cyan);
  background: rgba(0, 174, 239, 0.1);
  transform: translateY(-1px);
}

.req-chip.active {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 112, 240, 0.3);
}

/* حقول النموذج */
.req-form-fields {
  display: grid;
  gap: 16px;
}

.req-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.req-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.req-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
}



.req-field input,
.req-field textarea {
  width: 100%;
  border: 1.5px solid #e2e8f5;
  background: #f8faff;
  color: var(--navy);
  border-radius: 14px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: all 0.25s ease;
  resize: none;
}

.req-field input:focus,
.req-field textarea:focus {
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

.req-field input::placeholder,
.req-field textarea::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

/* أزرار الإرسال */
.req-submit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.req-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.93rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.req-btn-wa {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.35);
  color: #1e9e4a;
}

.req-btn-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.req-btn-tg {
  background: rgba(0, 136, 204, 0.08);
  border-color: rgba(0, 136, 204, 0.35);
  color: #006fa3;
}

.req-btn-tg:hover {
  background: #0088CC;
  border-color: #0088CC;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .req-wrapper {
    padding: 0 16px;
  }
  .req-title { font-size: 2rem; }
}

@media (max-width: 600px) {
  .req-fields-row { grid-template-columns: 1fr; }
  .req-submit-row  { grid-template-columns: 1fr; }
  .req-features    { grid-template-columns: 1fr; }
  .req-form-wrapper { padding: 22px 18px; }
}



/* Footer */
.site-footer {
  padding: 80px 0 30px;
  background: linear-gradient(180deg, #061426 0%, #030a13 100%);
  border-top: 1px solid rgba(0, 174, 239, 0.2);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(0, 174, 239, 0.3));
  transition: transform 0.4s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-description {
  color: #a0aec0;
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.site-footer a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links-list a {
  display: inline-flex;
  align-items: center;
}

.footer-links-list a::before {
  content: '•';
  margin-left: 8px;
  color: var(--cyan);
  font-size: 1.1rem;
  line-height: 1;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.footer-links-list a:hover {
  color: var(--white);
  padding-right: 6px;
}

.footer-links-list a:hover::before {
  color: var(--cyan);
  opacity: 1;
  transform: scale(1.4);
}

/* Contact List - Social Icons Grid */
.social-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}

.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  outline: none;
  overflow: hidden;
  flex-shrink: 0;
}

.social-btn svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: block;
}

/* Tooltip */
.social-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(6, 20, 38, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
}

.social-btn::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  border: 5px solid transparent;
  border-top-color: rgba(6, 20, 38, 0.92);
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 10;
}

.social-btn:hover::after,
.social-btn:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Hover base */
.social-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-btn:active {
  transform: translateY(-1px) scale(0.96);
}

.social-btn:hover svg {
  transform: scale(1.15);
}

/* Per-platform colors on hover */
.social-btn.phone:hover {
  background: rgba(0, 112, 240, 0.22);
  border-color: rgba(0, 112, 240, 0.5);
  color: #60a5fa;
  box-shadow: 0 8px 24px rgba(0, 112, 240, 0.25);
}

.social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.5);
  color: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.social-btn.telegram:hover {
  background: rgba(0, 136, 204, 0.22);
  border-color: rgba(0, 136, 204, 0.5);
  color: #29b6f6;
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.25);
}

.social-btn.email:hover {
  background: rgba(234, 67, 53, 0.2);
  border-color: rgba(234, 67, 53, 0.45);
  color: #f87171;
  box-shadow: 0 8px 24px rgba(234, 67, 53, 0.22);
}

.social-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.22);
  border-color: rgba(24, 119, 242, 0.5);
  color: #60a5fa;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.25);
}

.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.2);
  border-color: rgba(225, 48, 108, 0.45);
  color: #f9a8d4;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.22);
}

/* Default brand colors (always visible) */
.social-btn.phone    { color: #60a5fa;  border-color: rgba(96, 165, 250, 0.2);  background: rgba(96, 165, 250, 0.07); }
.social-btn.whatsapp { color: #25d366;  border-color: rgba(37, 211, 102, 0.2);  background: rgba(37, 211, 102, 0.07); }
.social-btn.telegram { color: #29b6f6;  border-color: rgba(41, 182, 246, 0.2);  background: rgba(41, 182, 246, 0.07); }
.social-btn.email    { color: #f87171;  border-color: rgba(248, 113, 113, 0.2); background: rgba(248, 113, 113, 0.07); }
.social-btn.facebook { color: #818cf8;  border-color: rgba(129, 140, 248, 0.2); background: rgba(129, 140, 248, 0.07); }
.social-btn.instagram{ color: #f472b6;  border-color: rgba(244, 114, 182, 0.2); background: rgba(244, 114, 182, 0.07); }

/* ==================== Contact Hero H1 ==================== */
.contact-hero-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 1.1rem;
    line-height: 1.55;
  }
}



.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  padding-top: 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating actions widget */
.floating-actions {
  position: fixed;
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transition: var(--ease);
  cursor: pointer;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-3px);
}

.floating-btn.wa {
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .34);
  animation: pulse 2.2s infinite;
}

.floating-btn.tg {
  background: #0088cc;
  box-shadow: 0 10px 30px rgba(0, 136, 204, .34);
  animation: pulse 2.2s infinite;
  animation-delay: 1.1s;
}

@keyframes pulse {
  50% {
    transform: scale(1.05);
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating actions icon centering & hover scale */
.floating-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
  transition: transform 0.35s ease;
}

.floating-btn:hover svg {
  transform: scale(1.18) rotate(-5deg);
}

/* Consolidating styles: Duplicate navbar classes removed to avoid specificity overrides */

/* Alternating Feature Rows */
.features-alternating {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.info-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.info-row:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}

.info-row:nth-child(even) .info-row-content {
  grid-column: 2;
}

.info-row:nth-child(even) .info-row-img {
  grid-column: 1;
  grid-row: 1;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(6, 20, 38, 0.05);
  transition: var(--ease);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.info-row-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.info-row-img:hover {
  border-color: var(--border);
  box-shadow: 0 35px 80px rgba(0, 217, 255, 0.12);
  transform: translateY(-5px);
}

.info-row-img svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

.info-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-row-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
  line-height: 1.3;
  text-shadow: none;
}

.info-row-content p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.checked-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checked-list li {
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checked-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Hover-Expand Interactive Service Cards Grid */
.services-grid-interactive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-top: 48px;
}

.service-interactive-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 174, 239, 0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: pointer;
  height: 100%;
}

.service-interactive-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 25px 55px rgba(0, 174, 239, 0.12);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  flex-shrink: 0;
}

.service-card-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0, 217, 255, 0.11);
  border: 1px solid rgba(0, 217, 255, 0.25);
  color: var(--cyan);
  font-weight: 900;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.service-interactive-card:hover .service-card-num {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
}

.service-card-header h2 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
  transition: color 0.4s ease;
}

.service-interactive-card:hover .service-card-header h2 {
  color: var(--cyan);
}

.service-card-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0;
}

.service-card-body ul.checked {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-body ul.checked li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.service-card-body ul.checked li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
  flex-shrink: 0;
}

.service-card-btn {
  align-self: flex-start;
  margin-top: 12px;
  background: rgba(0, 217, 255, 0.07) !important;
  border: 1px solid rgba(0, 217, 255, 0.22) !important;
  color: var(--cyan) !important;
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
  border-radius: 99px !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 700 !important;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.service-card-btn:hover {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 10px 24px rgba(0, 217, 255, 0.32) !important;
}

.service-card-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card-btn:hover .arrow {
  transform: translateX(-5px);
}

/* Dynamic Section Glow Background */
.dynamic-bg-glow-container {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.glow-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), var(--glow-color, rgba(0, 217, 255, 0.15)) 0%, transparent 65%);
  filter: blur(48px);
}

.glow-layer.active {
  opacity: 1;
}

/* Responsive */
@media(max-width:1080px) {
  .nav-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border-radius: 20px;
    background: rgba(6, 20, 38, 0.98);
    border: 1px solid rgba(0, 217, 255, 0.15);
    backdrop-filter: blur(24px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
  }

  .main-nav.active {
    display: flex;
  }

  .site-header.scrolled .main-nav {
    top: 100%;
    border-radius: 0 0 20px 20px;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(0, 217, 255, 0.15);
  }

  .main-nav a {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a::after {
    display: none !important;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(0, 217, 255, 0.08);
    border-radius: 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .intro-grid,
  .why-grid,
  .content-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }


  .hero-copy {
    display: block;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-copy .hero-actions,
  .hero-copy .hero-showcase {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .hero-copy .hero-showcase {
    margin-bottom: 32px;
  }

  .hero-actions,
  .trust-strip {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .triple-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }


  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:720px) {
  .section {
    padding: var(--section-pad-y-mob) 0;
  }

  .page-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-hero-showcase {
    max-width: 100%;
    width: 100%;
  }

  .page-hero-img {
    height: 250px;
  }

  .logo-wrapper {
    width: 44px;
    height: 44px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .brand div {
    display: block;
    line-height: 1.15;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand span {
    font-size: 0.68rem;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-shell {
    border-radius: 22px;
    padding: 10px 14px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip,
  .service-cards,
  .timeline,
  .add-ons,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider-container {
    max-width: 100%;
  }

  .hero-slider {
    height: 280px;
  }

  .service-card {
    padding: 20px;
  }

  .card-slider-container {
    height: 150px;
    margin-bottom: 16px;
  }

  .value-card {
    padding: 24px 20px;
  }

  .floating-badge {
    display: none;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }


  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--card-pad) 24px;
    gap: var(--grid-gap);
  }

  .floating-actions {
    bottom: 16px;
    left: 16px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .center {
    margin-bottom: 28px;
  }

  .why-grid {
    gap: 32px;
  }

  .why-section-image {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .why-list {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .why-item {
    padding: 18px 20px;
    gap: 16px;
  }

  .why-icon-container {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .why-action {
    justify-content: center;
  }

  /* Mobile overrides for design updates */
  .info-row {
    grid-template-columns: 1fr !important;
    gap: 32px;
    margin-bottom: 56px;
  }
  .info-row:nth-child(even) {
    grid-template-columns: 1fr !important;
  }
  .info-row:nth-child(even) .info-row-content {
    grid-column: 1 !important;
  }
  .info-row:nth-child(even) .info-row-img {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .info-row-img {
    padding: 12px;
    border-radius: 20px;
  }
  .info-row-content h3 {
    margin-bottom: 12px;
  }
  .info-row-content p {
    font-size: 1.02rem;
    margin-bottom: 18px;
  }
  .checked-list {
    margin-bottom: 20px;
    gap: 8px;
  }
  .checked-list li {
    font-size: 0.95rem;
  }

  .services-grid-interactive {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .service-interactive-card {
    padding: 24px 20px;
  }
  .service-card-header {
    min-height: 48px;
    gap: 12px;
  }
  .service-card-num {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 12px;
  }
  .service-card-header h2 {
    font-size: 1.12rem;
  }
  .service-card-body {
    margin-top: 16px;
    gap: 12px;
  }
  .service-card-body p {
    font-size: 0.9rem;
  }
  .service-card-body ul.checked li {
    font-size: 0.85rem;
  }

  /* Timeline mobile overrides */
  .timeline {
    grid-template-columns: 1fr;
    gap: 48px; /* Room for overlapping badges */
    padding-right: 12px;
  }
  @keyframes line-glow-v {
    0% {
      background-position: 50% 0%;
    }
    100% {
      background-position: 50% 200%;
    }
  }
  .timeline::before {
    top: 24px;
    bottom: 24px;
    right: 52px;
    left: auto;
    width: 2px;
    height: calc(100% - 48px);
    background: linear-gradient(180deg, rgba(0, 174, 239, 0) 0%, rgba(0, 217, 255, 0.8) 50%, rgba(0, 112, 240, 0) 100%);
    background-size: 100% 200%;
    animation: line-glow-v 4s linear infinite;
  }
  .step {
    padding: 40px 20px 24px;
  }
  .step-badge {
    right: 28px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    top: -22px;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Contact Form */
.contact-form {
  max-width: 650px;
  width: 100%;
  padding: 36px;
  background: var(--glass-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #e2e8f5;
  background: #f8faff;
  color: var(--navy);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-form .form-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.93rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  outline: none;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.08) !important;
  border-color: rgba(37, 211, 102, 0.35) !important;
  color: #1e9e4a !important;
}

.btn-whatsapp:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3) !important;
}

.btn-telegram {
  background: rgba(0, 136, 204, 0.08) !important;
  border-color: rgba(0, 136, 204, 0.35) !important;
  color: #006fa3 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-telegram:hover {
  background: #0088CC !important;
  border-color: #0088CC !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3) !important;
}

.contact-form button svg {
  margin-left: 0;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover svg,
.btn-telegram:hover svg {
  transform: scale(1.15) rotate(-8deg);
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
  color: var(--blue);
}

@media(max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==================== FAQ Section ==================== */
.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-grid {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  cursor: pointer;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(6, 20, 38, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 112, 240, 0.3);
  box-shadow: 0 6px 20px rgba(0, 112, 240, 0.08);
  transform: translateY(-1px);
}

.faq-item.faq-open {
  border-color: rgba(0, 112, 240, 0.5);
  box-shadow: 0 8px 28px rgba(0, 112, 240, 0.12);
  background: #FFFFFF;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  user-select: none;
  gap: 16px;
}

.faq-q-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.faq-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(0, 112, 240, 0.08);
  border: 1px solid rgba(0, 112, 240, 0.18);
  border-radius: 8px;
  padding: 4px 8px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-item.faq-open .faq-num {
  background: var(--blue);
  color: #FFFFFF;
  border-color: var(--blue);
}

.faq-question h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.faq-item.faq-open .faq-question h3 {
  color: var(--blue);
}

/* Chevron Icon */
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
  background: #F8FAFC;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #64748B;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
  transform: rotate(0deg);
}

.faq-item:hover .faq-icon {
  border-color: rgba(0, 112, 240, 0.35);
  background: rgba(0, 112, 240, 0.04);
}

.faq-item:hover .faq-icon svg {
  stroke: var(--blue);
}

.faq-item.faq-open .faq-icon {
  border-color: var(--blue);
  background: rgba(0, 112, 240, 0.1);
}

.faq-item.faq-open .faq-icon svg {
  stroke: var(--blue);
  transform: rotate(180deg);
}

/* Answer area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.faq-open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.96rem;
  line-height: 1.85;
  color: #475569;
  margin: 0;
  padding-right: 16px;
  border-right: 3px solid rgba(0, 112, 240, 0.2);
}

/* Typing cursor blink */
.faq-typed.typing::after {
  content: '|';
  display: inline;
  color: var(--blue);
  animation: blink-cursor 0.55s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 18px;
    gap: 12px;
  }
  .faq-q-inner {
    gap: 12px;
  }
  .faq-question h3 {
    font-size: 1.05rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

