/* ============================================================
   FALCON IT SOLUTIONS & SERVICES — STYLESHEET
   Dark Premium Theme | RTL Arabic | Gold Accents
   ============================================================ */

/* ----------- CSS Variables ----------- */
:root {
  --bg-primary: #07070d;
  --bg-secondary: #0d0d18;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --gold: #c9973a;
  --gold-light: #e4b96a;
  --gold-dark: #9a6f22;
  --gold-gradient: linear-gradient(135deg, #c9973a 0%, #f0d080 50%, #b8862e 100%);
  --gold-glow: rgba(201, 151, 58, 0.35);
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.80);
  --white-60: rgba(255, 255, 255, 0.60);
  --white-20: rgba(255, 255, 255, 0.20);
  --white-08: rgba(255, 255, 255, 0.08);
  --border: rgba(201, 151, 58, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --shadow-gold: 0 0 40px rgba(201, 151, 58, 0.20);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.45);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 150px;
}

/* ----------- Reset & Base ----------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ar);
  background: var(--bg-primary);
  color: var(--white-80);
  overflow-x: hidden;
  line-height: 1.7;
}

html[lang="en"] body {
  font-family: var(--font-en);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ----------- Scrollbar ----------- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 99px;
}

/* ----------- Utilities ----------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

.gold {
  color: var(--gold-light);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(201, 151, 58, 0.15), rgba(201, 151, 58, 0.05));
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ----------- WhatsApp Floating Button ----------- */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-btn svg {
  width: 35px;
  height: 35px;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-btn svg {
    width: 30px;
    height: 30px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 99px;
  margin-inline: auto;
}

/* ----------- Buttons ----------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #0a0a0f;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201, 151, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(201, 151, 58, 0.55);
}

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

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(-6px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(201, 151, 58, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(201, 151, 58, 0.2);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(30, 30, 45, 0.75), rgba(10, 10, 20, 0.85));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 769px) {
  .nav-container {
    padding-inline: 72px;
    justify-content: flex-start;
    gap: 64px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.navbar.scrolled .logo-img {
  /* filter: none; */
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-60);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 99px;
  transition: left 0.3s, right 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 14px;
  right: 14px;
}

.lang-toggle {
  background: var(--white-08);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.lang-toggle:hover {
  background: var(--gold);
  color: #07070d;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(7, 7, 13, 0.82) 0%,
      rgba(7, 7, 13, 0.65) 40%,
      rgba(7, 7, 13, 0.88) 100%),
    url('../images/bg_hero.png') center center / cover no-repeat;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  max-width: 820px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 58, 0.10);
  border: 1px solid rgba(201, 151, 58, 0.35);
  border-radius: 99px;
  padding: 7px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  font-family: var(--font-en);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 151, 58, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 151, 58, 0);
  }
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
  display: block;
}

.hero-title-line {
  display: block;
}

.hero-title-line.gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--white-60);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  max-width: 380px;
  margin-inline: auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--white-60);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-subtle);
  margin-inline: 24px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--white-60);
  animation: bounce 2.5s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--white-20);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 99px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.9s ease forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 1s 0.3s ease both;
}

.animate-fade-in-delay2 {
  animation: fadeIn 1s 0.6s ease both;
}

.animate-fade-in-delay3 {
  animation: fadeIn 1s 0.9s ease both;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal[style*="--delay"] {
  transition-delay: var(--delay, 0s);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(7, 7, 13, 0.82) 0%,
      rgba(13, 13, 24, 0.75) 50%,
      rgba(7, 7, 13, 0.88) 100%),
    url('../images/bg_about.png') center center / cover no-repeat;
  background-attachment: fixed;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 151, 58, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201, 151, 58, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-img-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201, 151, 58, 0.4));
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.2);
  animation: spin-ring linear infinite;
}

.ring-1 {
  width: 380px;
  height: 380px;
  animation-duration: 18s;
}

.ring-2 {
  width: 300px;
  height: 300px;
  border-style: dashed;
  animation-duration: 30s;
  animation-direction: reverse;
  border-color: rgba(201, 151, 58, 0.12);
}

.ring-3 {
  width: 220px;
  height: 220px;
  animation-duration: 12s;
  border-color: rgba(201, 151, 58, 0.08);
}

@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

.about-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 151, 58, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.about-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tech-tag {
  background: rgba(201, 151, 58, 0.10);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.tech-tag:hover {
  background: rgba(201, 151, 58, 0.2);
  transform: translateY(-2px);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-intro {
  font-size: 1.1rem;
  color: var(--white-80);
  line-height: 1.9;
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 20px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  
  transition: var(--transition);
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.about-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  background: rgba(201, 151, 58, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.about-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.about-card-text {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 120px 0;
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(7, 7, 13, 0.88) 0%,
      rgba(7, 7, 13, 0.78) 50%,
      rgba(7, 7, 13, 0.92) 100%),
    url('../images/bg_networks.png') center center / cover no-repeat;
  background-attachment: fixed;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.service-card-wide {
  grid-column: span 1;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  transition-delay: var(--delay, 0s);
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 151, 58, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 151, 58, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transition: opacity 0.4s, transform 0.6s ease;
  pointer-events: none;
}

.service-card:hover .service-card-image {
  opacity: 0.22;
  transform: scale(1.1);
}

/* Service Background Assets */
.svc-networks .service-card-image { background-image: url('../images/svc_networking.png'); }
.svc-cyber .service-card-image { background-image: url('../images/svc_cybersecurity.png'); }
.svc-surveillance .service-card-image { background-image: url('../images/svc_surveillance.png'); }
.svc-websites .service-card-image { background-image: url('../images/svc_web_apps.png'); }
.svc-callcenter .service-card-image { background-image: url('../images/svc_call_center.png'); }
.svc-dataroom .service-card-image { background-image: url('../images/svc_data_room.png'); }
.svc-support .service-card-image { background-image: url('../images/svc_support.png'); }

.service-number {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: rgba(201, 151, 58, 0.08);
  line-height: 1;
  user-select: none;
  transition: color 0.4s;
  z-index: 1;
}

.service-card:hover .service-number {
  color: rgba(201, 151, 58, 0.14);
}

.service-icon-wrap {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 151, 58, 0.15), rgba(201, 151, 58, 0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(201, 151, 58, 0.28), rgba(201, 151, 58, 0.10));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 151, 58, 0.25);
}

.service-icon {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
}

.service-title {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  position: relative;
  z-index: 2;
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.75;
}

.service-arrow {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-08);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 2;
}

.service-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateY(0);
}

.service-glow {
  position: absolute;
  bottom: -40px;
  inset-inline-start: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 151, 58, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover .service-glow {
  opacity: 1;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  padding: 120px 0;
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(7, 7, 13, 0.85) 0%,
      rgba(10, 10, 18, 0.80) 50%,
      rgba(7, 7, 13, 0.90) 100%),
    url('../images/whyus_bg.png') center center / cover no-repeat;
  background-attachment: fixed;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-hover);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 151, 58, 0.18), rgba(201, 151, 58, 0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.why-card:hover .why-icon-wrap {
  background: rgba(201, 151, 58, 0.25);
  box-shadow: 0 0 25px var(--gold-glow);
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.84rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* Counters */
.counters-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 600px;
  margin-inline: auto;
}

.counter-item {
  background: var(--bg-card);
  padding: 36px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.counter-item:hover {
  background: rgba(201, 151, 58, 0.06);
}

.counter-num {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.counter-suffix {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--white-60);
  font-weight: 500;
}

/* ============================================================
   CUSTOMER SERVICE
   ============================================================ */
.customer-service {
  padding: 120px 0;
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(7, 7, 13, 0.88) 0%,
      rgba(7, 7, 13, 0.80) 50%,
      rgba(7, 7, 13, 0.92) 100%),
    url('../images/customer_bg.png') center center / cover no-repeat;
  background-attachment: fixed;
}

.customer-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.cs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cs-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 3px;
  height: 0;
  background: var(--gold-gradient);
  border-radius: 99px;
  transition: height 0.5s;
}

.cs-card:hover::before {
  height: 100%;
}

.cs-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-hover);
}

.cs-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 151, 58, 0.18), rgba(201, 151, 58, 0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.cs-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}

.cs-card:hover .cs-icon-wrap {
  background: rgba(201, 151, 58, 0.25);
  box-shadow: 0 0 20px var(--gold-glow);
}

.cs-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cs-desc {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 18px;
}

.cs-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.cs-features li {
  font-size: 0.85rem;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 120px 0;
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(7, 7, 13, 0.88) 0%,
      rgba(10, 10, 18, 0.82) 40%,
      rgba(7, 7, 13, 0.92) 100%),
    url('../images/contact_bg.png') center center / cover no-repeat;
  background-attachment: fixed;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  background: rgba(201, 151, 58, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.contact-info-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 0.95rem;
  color: var(--white-80);
}

.contact-info-link {
  font-size: 0.95rem;
  color: var(--white-80);
  transition: color 0.2s;
  font-family: var(--font-en);
}

.contact-info-link:hover {
  color: var(--gold-light);
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.map-wrapper:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-80);
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-ar);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  width: 100%;
  direction: inherit;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(201, 151, 58, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 151, 58, 0.12);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

option {
  background: var(--bg-primary);
  color: var(--white);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #6fcf97;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-success.show {
  display: flex;
  animation: fadeIn 0.5s ease;
}

.form-success svg {
  width: 20px;
  height: 20px;
  stroke: #6fcf97;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  padding: 80px 0 0;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(1.2);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white-08);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #07070d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 151, 58, 0.4);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 99px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--white-60);
  transition: color 0.2s, padding-right 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-inline-start: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--white-60);
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--white-60);
}

.footer-bottom-en {
  font-family: var(--font-en);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 151, 58, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 151, 58, 0.6);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #07070d;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

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

  .service-card-wide {
    grid-column: span 2;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-logo {
    transform: translateX(25px);
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    background: rgba(7, 7, 13, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    border-bottom: 1px solid var(--border-subtle);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: span 1;
  }

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

  .cs-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
  }
}

@media (max-width: 560px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    margin-inline: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .about-img-wrapper {
    width: 260px;
    height: 260px;
  }

  .ring-1 {
    width: 240px;
    height: 240px;
  }

  .ring-2 {
    width: 190px;
    height: 190px;
  }

  .ring-3 {
    width: 140px;
    height: 140px;
  }
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-60);
  padding: calc(var(--nav-h) + 20px) 0 0;
  margin-bottom: 0;
}
.breadcrumb a { color: var(--gold-light); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--white-20); font-size: 0.7rem; }

/* ── Service Hero ── */
.svc-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(7,7,13,0.80) 0%,
      rgba(7,7,13,0.60) 40%,
      rgba(7,7,13,0.90) 100%),
    var(--svc-bg, url('../images/bg_networks.png')) center center / cover no-repeat;
  background-attachment: fixed;
}

.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.svc-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  max-width: 860px;
  margin-inline: auto;
}

.svc-hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(201,151,58,0.18), rgba(201,151,58,0.06));
  border: 1.5px solid rgba(201,151,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 40px rgba(201,151,58,0.2);
  animation: heroIconPulse 3s ease-in-out infinite;
}

@keyframes heroIconPulse {
  0%,100% { box-shadow: 0 0 40px rgba(201,151,58,0.2); }
  50%      { box-shadow: 0 0 70px rgba(201,151,58,0.4); }
}

.svc-hero-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold-light);
}

.svc-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.svc-hero-title .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--white-60);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.svc-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Overview Section ── */
.svc-overview {
  padding: 100px 0;
  background:
    linear-gradient(135deg,
      rgba(7,7,13,0.92) 0%,
      rgba(13,13,24,0.85) 50%,
      rgba(7,7,13,0.92) 100%),
    url('../images/bg_about.png') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.svc-overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(201,151,58,0.07) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(201,151,58,0.05) 0%, transparent 45%);
  pointer-events: none;
}

.svc-overview-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
}

.svc-overview-text { display: block; }

.svc-overview-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,0.12);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.svc-overview-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.svc-overview-body {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 28px;
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 18px;
}

.svc-overview-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-overview-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-80);
}

.svc-overview-point svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.svc-overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.svc-stat-card:hover::before { transform: scaleX(1); }
.svc-stat-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.svc-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.svc-stat-label {
  font-size: 0.82rem;
  color: var(--white-60);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Features Section ── */
.svc-features {
  padding: 100px 0;
  background:
    linear-gradient(180deg,
      rgba(7,7,13,0.88) 0%,
      rgba(7,7,13,0.78) 50%,
      rgba(7,7,13,0.92) 100%),
    url('../images/bg_networks.png') center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.svc-features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}

.svc-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.svc-feature-card::after {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 3px;
  height: 0;
  background: var(--gold-gradient);
  border-radius: 0 0 99px 99px;
  transition: height 0.4s;
}

.svc-feature-card:hover::after { height: 100%; border-radius: 0; }

.svc-feature-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(201,151,58,0.1);
  background: var(--bg-card-hover);
}

.svc-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,151,58,0.15), rgba(201,151,58,0.04));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.svc-feature-card:hover .svc-feature-icon {
  background: linear-gradient(135deg, rgba(201,151,58,0.28), rgba(201,151,58,0.10));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,151,58,0.25);
}

.svc-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}

.svc-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-feature-desc {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.75;
}

/* ── Process Section ── */
.svc-process {
  padding: 100px 0;
  position: relative;
  background:
    linear-gradient(135deg,
      rgba(7,7,13,0.90) 0%,
      rgba(13,13,24,0.82) 50%,
      rgba(7,7,13,0.90) 100%),
    url('../images/whyus_bg.png') center/cover no-repeat;
  background-attachment: fixed;
}

.svc-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.svc-process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  inset-inline-start: calc(50% / 4);
  inset-inline-end: calc(50% / 4);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0.35;
  z-index: 0;
}

.svc-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.svc-step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
  position: relative;
}

.svc-step-num-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(7,7,13,0.95);
  border: 2px solid rgba(201,151,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
  position: relative;
}

.svc-step:hover .svc-step-num-wrap {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,151,58,0.3);
}

.svc-step-num-wrap span {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-step-desc {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ── CTA Section ── */
.svc-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  text-align: center;
}

.svc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,151,58,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.svc-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.svc-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.svc-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 18px;
}

.svc-cta-desc {
  font-size: 1.05rem;
  color: var(--white-60);
  margin-bottom: 36px;
  line-height: 1.8;
}

.svc-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Back Button ── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--white-08);
  transition: var(--transition);
  margin-bottom: 0;
}

.back-btn:hover {
  background: rgba(201,151,58,0.12);
  border-color: var(--gold);
  transform: translateX(-4px);
}

.back-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* ── Related Services ── */
.svc-related {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-related-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--white-80);
  transition: var(--transition);
}

.svc-related-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.svc-related-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,151,58,0.10);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.svc-related-card:hover .svc-related-icon {
  background: rgba(201,151,58,0.22);
  border-color: var(--gold);
}

.svc-related-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.svc-related-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.svc-related-arrow {
  margin-inline-start: auto;
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.svc-related-card:hover .svc-related-arrow {
  opacity: 1;
  transform: translateX(-4px);
}

/* ── Service Page Responsive ── */
@media (max-width: 1024px) {
  .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .svc-process-steps::before { display: none; }
  .svc-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .svc-overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-overview-stats { grid-template-columns: repeat(2, 1fr); }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-process-steps { grid-template-columns: 1fr; gap: 32px; }
  .svc-related-grid { grid-template-columns: 1fr; }
  .svc-hero-content { padding-top: calc(var(--nav-h) + 40px); }
  .svc-hero-icon { width: 80px; height: 80px; }
  .svc-hero-icon svg { width: 38px; height: 38px; }
}
/* DROPDOWN MENU STYLES */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #0d0d18;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0;
  z-index: 1000;
  list-style: none;
}
html[dir="ltr"] .dropdown-menu {
  right: auto;
  left: 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-svc-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white-80);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.nav-svc-link:hover {
  color: var(--gold);
  background: var(--bg-card-hover);
  padding-right: 2rem;
}
html[dir="ltr"] .nav-svc-link:hover {
  padding-right: 1.5rem;
  padding-left: 2rem;
}
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 0.5rem;
    display: none;
    min-width: 100%;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-svc-link {
    padding: 0.5rem 2rem;
  }
  html[dir="ltr"] .nav-svc-link {
    padding: 0.5rem 2rem 0.5rem 2rem;
  }
}
