/* ==========================================
   VARIABLES & RESET
   ========================================== */
:root {
  --primary: #0A4FA8;
  --primary-light: #1a6fd4;
  --primary-dark: #063380;
  --secondary: #00C896;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --dark: #FFFFFF;
  --dark-2: #F8FAFC;
  --dark-3: #F1F5F9;
  --glass: rgba(0, 0, 0, 0.04);
  --glass-border: rgba(0, 0, 0, 0.1);
  --text-primary: #1E293B;
  --text-secondary: rgba(30, 41, 59, 0.75);
  --text-muted: rgba(30, 41, 59, 0.5);
  --gradient-main: linear-gradient(135deg, #0A4FA8 0%, #00C896 100%);
  --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
  --shadow-blue: 0 20px 60px rgba(10, 79, 168, 0.15);
  --shadow-glow: 0 0 80px rgba(0, 200, 150, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-arabic: 'Cairo', 'Tajawal', sans-serif;
}

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

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

body {
  font-family: var(--font-arabic);
  background-color: var(--dark);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-icon {
  font-size: 2.2rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite;
  z-index: 2;
}

.loader-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-left-color: var(--secondary);
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================
   PARTICLES
   ========================================== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: var(--transition);
}

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

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

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

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 8px 32px rgba(10, 79, 168, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(10, 79, 168, 0.55);
}

.btn-gold {
  background: var(--gold-light);
  color: var(--dark-2);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
  background: #fce181;
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  background: rgba(10, 79, 168, 0.15);
}

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

/* ==========================================
   GRADIENT TEXT & GOLD TEXT
   ========================================== */
.gradient-text {
  background: linear-gradient(135deg, #60AEFF, #00C896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text {
  color: var(--gold-light);
  text-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(10, 79, 168, 0.2);
  border: 1px solid rgba(10, 79, 168, 0.4);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #60AEFF;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.4rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Font Awesome global ---- */
.fa-ribbon {
  color: #E91E8C;
}

.hero-badge .fa-ribbon {
  color: #00C896;
}

.btn i {
  pointer-events: none;
}

.label-icon {
  color: #60AEFF;
  font-size: 0.8rem;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(10, 79, 168, 0.15);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  background-image: url('456.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 30%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid rgba(0, 200, 150, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00C896;
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00C896;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #60AEFF;
  line-height: 1;
}

.stat-number::after {
  content: '+';
  font-size: 1.2rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--text-muted);
  animation: scrollDown 2s ease-in-out infinite;
}

.indicator-icon {
  font-size: 1.5rem;
}

@keyframes scrollDown {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  border: 2px solid var(--glass-border);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

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

.img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gradient-main);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.about-img-secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--glass-border);
}

.about-img-secondary img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.highlight-item:hover {
  background: rgba(10, 79, 168, 0.1);
  border-color: rgba(10, 79, 168, 0.3);
  transform: translateX(-4px);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 79, 168, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================
   QUALIFICATIONS
   ========================================== */
.qualifications-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: var(--dark-3);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(10, 79, 168, 0.4);
  transition: var(--transition);
}

.timeline-icon i {
  font-size: 1.15rem;
  background: linear-gradient(135deg, #60AEFF, #00C896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
  background: var(--primary);
  box-shadow: 0 0 30px rgba(10, 79, 168, 0.6);
  transform: scale(1.1);
}

.timeline-item:hover .timeline-icon i {
  -webkit-text-fill-color: #fff;
  background: none;
}

.timeline-content {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  background: rgba(10, 79, 168, 0.08);
  border-color: rgba(10, 79, 168, 0.3);
  transform: translateX(-4px);
}

.tl-flag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.tl-flag-eg {
  background: rgba(0, 150, 60, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(0, 150, 60, 0.3);
}

.tl-flag-uk {
  background: rgba(10, 79, 168, 0.2);
  color: #60AEFF;
  border: 1px solid rgba(10, 79, 168, 0.3);
}

.tl-flag-us {
  background: rgba(200, 50, 50, 0.2);
  color: #FF6B6B;
  border: 1px solid rgba(200, 50, 50, 0.3);
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.timeline-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #60AEFF;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================
   SPECIALTIES
   ========================================== */
.specialties-section {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  z-index: 1;
}

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

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

.specialty-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.specialty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(10, 79, 168, 0.3);
  border-color: rgba(10, 79, 168, 0.4);
}

.specialty-card:hover::before {
  opacity: 0.07;
}

.spec-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(10, 79, 168, 0.15);
  border: 1px solid rgba(10, 79, 168, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.specialty-card:hover .spec-icon-wrap {
  background: rgba(10, 79, 168, 0.3);
  border-color: var(--primary-light);
  transform: rotate(-5deg) scale(1.1);
}

.spec-icon {
  font-size: 1.6rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.specialty-card:hover .spec-icon {
  filter: drop-shadow(0 0 8px rgba(0, 200, 150, 0.6));
}

.specialty-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.specialty-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  z-index: 1;
}

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

/* Branch Cards */
.contact-branches {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.branch-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.branch-card:hover {
  border-color: rgba(10, 79, 168, 0.4);
  background: rgba(10, 79, 168, 0.06);
  transform: translateX(-4px);
  box-shadow: var(--shadow-blue);
}

.branch-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.branch-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 79, 168, 0.2);
  border: 1px solid rgba(10, 79, 168, 0.35);
  border-radius: 12px;
  flex-shrink: 0;
}

.branch-icon i {
  font-size: 1.2rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.branch-city {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.branch-location {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.branch-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.phone-row:hover {
  background: rgba(10, 79, 168, 0.15);
  border-color: var(--primary-light);
  transform: translateX(-3px);
}

.phone-row.phone-whatsapp:hover {
  background: rgba(0, 200, 150, 0.12);
  border-color: rgba(0, 200, 150, 0.4);
}

.phone-row.phone-landline .phone-type {
  color: var(--text-muted);
}

.phone-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.phone-type i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: #60AEFF;
}

.phone-row.phone-whatsapp .phone-type i {
  color: #00C896;
}

.phone-row.phone-landline .phone-type i {
  color: var(--text-muted);
}

/* keep old .contact-card for reference but it's replaced by branch-card */
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(10, 79, 168, 0.1);
  border-color: rgba(10, 79, 168, 0.35);
  transform: translateX(-4px);
}

.cc-icon {
  width: 56px;
  height: 56px;
  background: rgba(10, 79, 168, 0.2);
  border: 1px solid rgba(10, 79, 168, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60AEFF;
  flex-shrink: 0;
  transition: var(--transition);
}

.cc-icon-green {
  background: rgba(0, 200, 150, 0.15);
  border-color: rgba(0, 200, 150, 0.3);
  color: #00C896;
}

.cc-icon-amber {
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
  color: #F0C040;
}

.contact-card:hover .cc-icon {
  transform: scale(1.1);
}

.cc-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition);
}

.cc-value:hover {
  color: #60AEFF;
}

.cc-address {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 500;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(10, 79, 168, 0.18), rgba(0, 200, 150, 0.12));
  border: 1px solid rgba(10, 79, 168, 0.35);
  border-radius: 50px;
  color: #60AEFF;
  font-weight: 700;
  font-size: 0.82rem;
  transition: var(--transition);
}

.map-btn:hover {
  background: linear-gradient(135deg, rgba(10, 79, 168, 0.32), rgba(0, 200, 150, 0.22));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 79, 168, 0.25);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.form-header {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(10, 79, 168, 0.2), rgba(0, 200, 150, 0.1));
  border-bottom: 1px solid var(--glass-border);
}

.form-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-form {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

select {
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(30,41,59,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
}

select option {
  background: #FFFFFF;
  color: var(--text-primary);
}

select:focus {
  border-color: var(--primary-light);
  background-color: rgba(10, 79, 168, 0.1);
  box-shadow: 0 0 0 3px rgba(10, 79, 168, 0.15);
}

input,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus {
  border-color: var(--primary-light);
  background: rgba(10, 79, 168, 0.08);
  box-shadow: 0 0 0 3px rgba(10, 79, 168, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid rgba(0, 200, 150, 0.3);
  border-radius: var(--radius-sm);
  color: #00C896;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.form-success.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.footer-top {
  padding: 56px 0 32px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-branch-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-city {
  font-size: 0.8rem;
  font-weight: 800;
  color: #60AEFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-branch-group a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  direction: ltr;
  display: block;
}

.footer-branch-group a:hover {
  color: var(--text-primary);
}

.footer-divider {
  width: 1px;
  background: var(--glass-border);
  align-self: stretch;
  min-height: 60px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 8px 16px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  border-radius: 6px;
}

.footer-links a:hover {
  color: #60AEFF;
  background: rgba(10, 79, 168, 0.1);
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-city i {
  color: #60AEFF;
  margin-left: 4px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.5) 100%);
  }

  .about-grid {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .hero {
    padding: 100px 24px 60px;
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.5) 100%);
  }

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

  .hero-content {
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
    border-top: none;
    border-bottom: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 320px;
  }

  .about-img-main {
    width: 75%;
  }

  .about-img-main img {
    height: 300px;
  }

  .about-img-secondary img {
    height: 180px;
  }

  .timeline::before {
    right: 20px;
  }

  .timeline-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

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

  .footer-contacts {
    gap: 20px;
  }

  .footer-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .form-header {
    padding: 20px 24px;
  }

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

@media (max-width: 480px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    width: 100px;
    height: 1px;
  }

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

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

  .floating-card {
    display: none;
  }
}