/* ========================================
   Unified CSS File - ملف CSS الموحد
   لجميع صفحات موقع سبوت إمباكت
   ======================================== */

/* ========================================
   CSS Variables - متغيرات الألوان والخطوط
   ======================================== */
:root {
  /* Primary Colors */
  --bg-color: #090212;
  --bg-dark: #0a081a;
  --bg-surface: #0e071e;
  --bg-input: #181227;

  /* Card Backgrounds */
  --card-bg: rgba(26, 31, 62, 0.3);
  --card-bg-1: #120e27;
  --card-bg-2: #191627;
  --card-bg-3: #0e0b1f;

  /* Text Colors */
  --text-primary: #cbc6e0;
  --text-secondary: #b8b4cb;
  --text-tertiary: #908d9e;
  --text-muted: #706b80;
  --text-light: #f1eafa;
  --text-highlight: #d6d1eb;
  --text-white: #ffffff;
  --text-link: #b8b4cb;
  --text-logo: #fafaff;
  --text-dark: #aaa6bb;
  --text-placeholder: #b8b4cb;

  /* Accent Colors */
  --color-accent: #4c3cac;
  --color-accent-1: #3c3180;
  --color-accent-2: #341b68;
  --luxury-primary: #667eea;
  --luxury-secondary: #aa32fa;
  --blur-1: #341b68;
  --blur-2: #3c3180;

  /* Gradients */
  --primary-grad: linear-gradient(131deg, #5565e3 0%, #aa32fa 128.7%);
  --gradient-primary: linear-gradient(215deg, #5565e3 0%, #aa32fa 156.22%);
  --gradient-text: linear-gradient(149deg, #aa32fa 0%, #5565e3 144.82%);

  /* Fonts */
  --font-primary: "Cairo", "Expo Arabic", "Arial", sans-serif;
  --font-secondary: "Tajawal", sans-serif;
  --font-tertiary: "Inter", sans-serif;

  /* Other */
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

/* ========================================
   Global Styles - الأنماط العامة
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  padding-top: 0;
}

/* Ensure all elements use Cairo font */
* {
  font-family: var(--font-primary) !important;
}

/* Specific font rules for common elements */
h1, h2, h3, h4, h5, h6,
p, span, div, a, button, input, textarea, select,
label, li, ul, ol, table, th, td {
  font-family: var(--font-primary) !important;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   FontAwesome Icons Fix
   ======================================== */
/* Ensure FontAwesome icons are visible */
.fa-solid, .fa-regular, .fa-brands, .fa, .fas, .far, .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* ========================================
   Theme Toggle Styles
   ======================================== */
.theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

.theme-toggle i {
  color: var(--text-light) !important;
  font-size: 1.2rem !important;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

.theme-toggle:hover i {
  color: var(--color-accent);
  transform: rotate(20deg);
}

.theme-text {
  display: none;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Show emoji fallback if FontAwesome doesn't load */
.theme-toggle i:not([class*="fa-"]) + .theme-text {
  display: block;
}

.theme-toggle i[class*="fa-"] {
  display: block;
}

.theme-toggle i:not([class*="fa-"]) {
  display: none;
}

/* Dark Mode Styles */
[data-theme="dark"] {
  --bg-color: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-light: #ffffff;
  --text-medium: #d0d0d0;
  --border-color: #333333;
}

[data-theme="dark"] .header {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #333333;
}

[data-theme="dark"] .hero-gallery {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

[data-theme="dark"] .gallery-img {
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .client-counter {
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .testimonial-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .contact-form {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer {
  background: #0a0a0a;
  border-top: 1px solid #333333;
}

/* ========================================
   Header Styles - أنماط الهيدر
   ======================================== */
.header {
  background: rgba(26, 31, 62, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 100px 100px;
  transition: transform 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #e4dffa;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-img {
  width: 200px;
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a {
  color: #b8b4cb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #e4dffa;
}

.nav-links a.active {
  color: #995cbe;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #995cbe, #6516c3);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cta-button {
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(101, 22, 195, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e4dffa;
  font-size: 1.8rem;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: var(--transition);
}

/* ========================================
   Hero Section - قسم البطل
   ======================================== */
#hero {
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-content .client-counter {
  align-self: flex-end;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .hero-content .client-counter {
    align-self: center;
    margin-top: 1.5rem;
  }
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.2;
}

.hero-content .highlight {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.hero-mobile-cta {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(85, 101, 227, 0.2);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(85, 101, 227, 0.3);
}

.hero-title {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Gallery */
.hero-gallery {
  position: relative;
  height: 600px;
  margin-top: 60px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--color-accent);
}


.client-counter {
  position: absolute;
  background: rgba(26, 31, 62, 0.95);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 5;
}

.client-counter:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--color-accent);
}

.client-counter img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.client-counter:hover img {
  transform: scale(1.1);
}


.client-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.client-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.client-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-grad);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
  border: 2px solid transparent;
  z-index: 10;
}

.hero-cta:hover {
  transform: translateX(-50%) translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Clients Section
   ======================================== */
#clients {
  padding: 80px 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

#clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="clientsGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23clientsGrid)"/></svg>');
  opacity: 0.3;
}

/* Section Header for Clients */
#clients .section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

#clients .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#clients .section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Client Slideshow Styles */
.clients-slideshow {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slideshow-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: slide 20s linear infinite;
  transition: transform 0.5s ease;
}

.slide-item {
  flex: 0 0 12.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.client-logo {
  height: 60px;
  width: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0.8);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}


/* Slideshow Animation */
/* Slideshow Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* سرعة جيدة للديسكتوب */
.slideshow-track {
  animation: slide 20s linear infinite;
}

/* سرعة مريحة للجوال */
@media screen and (max-width: 768px) {
  .slideshow-track {
    animation: slide 22s linear infinite !important;
  }
  
  .slideshow-container:hover .slideshow-track,
  .slideshow-container:active .slideshow-track {
    animation-play-state: paused;
  }
}

@media screen and (max-width: 480px) {
  .slideshow-track {
    animation: slide 25s linear infinite !important;
  }
  
  /* تحسينات إضافية للشاشات الصغيرة */
  .slideshow-container {
    height: 100px;
  }
  
  .client-logo {
    height: 50px;
  }
  
  .slide-item {
    padding: 0.5rem;
  }
}



/* Navigation Dots */
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  z-index: 10;
  position: relative;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.dot:hover {
  background: var(--color-accent);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Pause animation when hovering over dots */
.slideshow-dots:hover ~ .slideshow-container .slideshow-track {
  animation-play-state: paused;
}

.logos-container img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.logos-container img:hover {
  opacity: 1;
}
/* في نهاية قسم Clients Section - حوالي السطر 800 */

/* Clients Section Mobile */
@media screen and (max-width: 768px) {
  #clients {
    padding: 3rem 0;
  }

  .slideshow-container {
    height: 100px;
    border-radius: 12px;
  }

.slideshow-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: slide 25s linear infinite;
  transition: transform 0.5s ease;
  align-items: center;
}

.slide-item {
  flex: 0 0 12.5%;
  min-width: 12.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

  .client-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

/* Medium mobile screens */
@media screen and (max-width: 600px) and (min-width: 481px) {
  .slide-item {
    flex: 0 0 20% !important; /* 5 شعارات في الشاشة للشاشات المتوسطة */
    min-width: 20% !important;
    max-width: 20% !important;
  }
}

@media screen and (max-width: 480px) {
  .slideshow-container {
    height: 90px;
  }

  .slideshow-track {
    animation: slide 25s linear infinite !important;
  }

  .slide-item {
    flex: 0 0 25% !important; /* 4 شعارات في الشاشة للشاشات الصغيرة */
    min-width: 25% !important;
    max-width: 25% !important;
    padding: 0.5rem;
  }

  .client-logo {
    height: 45px;
  }
}
/* تحسينات الأداء والسلاسة */
.slideshow-track {
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* منع التسارع غير المرغوب */
@media screen and (max-width: 768px) {
  .slideshow-container {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .slide-item {
    flex-shrink: 0;
  }
}
/* ========================================
   Job Application Page Styles
   ======================================== */

/* Job Hero Section */
.job-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--card-bg) 100%);
  position: relative;
  overflow: hidden;
}

.job-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.job-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.job-hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.job-hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Positions Section */
.positions-section {
  padding: 5rem 0;
  background: var(--bg-color);
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.position-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.position-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-grad);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.position-card:hover::before {
  transform: scaleX(1);
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.position-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.position-type {
  background: var(--primary-grad);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.position-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.position-requirements h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.position-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.position-requirements li {
  color: var(--text-secondary);
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.position-requirements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.apply-btn {
  background: var(--primary-grad);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1.5rem;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(85, 101, 227, 0.3);
}

/* Application Form Section */
.application-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
}

.application-container {
  max-width: 800px;
  margin: 0 auto;
}

.application-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-section {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-grad);
}

.form-section-title i {
  color: var(--color-accent);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

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

.form-label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.required {
  color: #ff4757;
  font-weight: bold;
}

.form-control {
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(85, 101, 227, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-hint {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* File Upload Styles */
.file-upload-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-display {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background: var(--bg-input);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-display:hover {
  border-color: var(--color-accent);
  background: rgba(85, 101, 227, 0.05);
}

.file-upload-display i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.file-upload-text {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.file-upload-hint {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
}

.file-selected {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-input);
  border: 1px solid var(--color-accent);
  border-radius: 12px;
  padding: 1rem;
}

.file-selected i {
  color: #ff4757;
  font-size: 1.5rem;
}

.file-name {
  flex: 1;
  color: var(--text-primary);
  font-weight: 500;
}

.remove-file {
  background: #ff4757;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.remove-file:hover {
  background: #ff3742;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn {
  background: var(--primary-grad);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(85, 101, 227, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.loading-spinner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.alert-error {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.2);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .job-hero {
    padding: 6rem 0 3rem;
  }
  
  .job-hero-title {
    font-size: 2.5rem;
  }
  
  .job-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .positions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .position-card {
    padding: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-section {
    padding: 1.5rem;
  }
  
  .application-container {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  .job-hero-title {
    font-size: 2rem;
  }
  
  .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .position-type {
    align-self: flex-start;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   About Section
   ======================================== */
#about {
  padding: 80px 0;
  position: relative;
}

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

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

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.title-line {
  width: 60px;
  height: 4px;
  background: var(--primary-grad);
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  background: rgba(26, 31, 62, 0.5);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 101, 227, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.stat-label {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-us-section {
  margin-top: 6rem;
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-us-item {
  background: rgba(26, 31, 62, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-5px);
}

.why-us-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.why-us-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.why-us-item p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* ========================================
   Services Section
   ======================================== */
#services {
  padding: 80px 0;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--primary-grad);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-checklist ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.view-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #995cbe;
  font-weight: 500;
  text-decoration: none;
}

/* Services Page Specific */
.services-hero {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 62, 0.9) 0%,
    rgba(101, 22, 195, 0.7) 100%
  );
  padding: 160px 0 80px;
  text-align: center;
  color: white;
}

.services-section {
  padding: 100px 0;
  background: #0f1320;
}

.service-card__icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.service-card__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.75rem;
  color: #e4dffa;
  margin-bottom: 15px;
}

.service-card__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.services-cta {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 62, 0.9) 0%,
    rgba(101, 22, 195, 0.7) 100%
  );
  padding: 80px 0;
  text-align: center;
}

/* ========================================
   Testimonials Section
   ======================================== */
#testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.testimonials-visual {
  position: relative;
  height: 500px;
}

.map-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-avatar {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-grad);
  object-fit: cover;
  opacity: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  filter: brightness(1.3) contrast(1.2) saturate(1.1);
}

.client-avatar:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  border-color: var(--color-accent);
  filter: brightness(1.4) contrast(1.3) saturate(1.2);
}

.stats-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 31, 62, 0.9);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 80%;
}

/* Avatar Stack Styling */
.avatar-stack {
  display: flex;
  align-items: center;
  gap: -10px; /* Overlap avatars */
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-grad);
  object-fit: cover;
  margin-left: -10px; /* Overlap effect */
  transition: transform 0.3s ease;
  opacity: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  filter: brightness(1.3) contrast(1.2) saturate(1.1);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack img:hover {
  transform: scale(1.1);
  z-index: 10;
  position: relative;
  opacity: 1;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  filter: brightness(1.4) contrast(1.3) saturate(1.2);
}

/* Satisfied Customer Box */
.satisfied-customer-box {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

.stats-box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-box-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
}

.stats-box-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider .testimonial-card {
  flex: 1;
  margin: 0 1rem;
}

.testimonial-card {
  background: rgba(26, 31, 62, 0.6);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  max-width: 600px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  background: rgba(26, 31, 62, 0.8);
  border-color: rgba(153, 92, 190, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.author-info {
  margin-top: 1.5rem;
}

.slider-arrow {
  background: rgba(26, 31, 62, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(153, 92, 190, 0.9);
  border-color: var(--color-accent);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(153, 92, 190, 0.3);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-arrow img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.slider-arrow:hover img {
  transform: scale(1.1);
}

.slider-arrow.prev img {
  transform: rotate(180deg);
}

.slider-arrow.prev:hover img {
  transform: rotate(180deg) scale(1.1);
}

.slider-arrow:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.slider-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.slider-arrow:disabled:hover {
  background: rgba(26, 31, 62, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
  box-shadow: none;
}

/* ========================================
   Contact Section
   ======================================== */
#contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item img {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
}

.contact-form {
  background: rgba(26, 31, 62, 0.6);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-label .required {
  color: #ff4757;
  margin-right: 0.25rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.input-wrapper select,
.input-wrapper input,
.input-wrapper textarea,
.form-control {
  width: 100%;
  padding: 12px 16px;
  padding-left: 45px;
  background: rgba(24, 18, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-wrapper select:focus,
.input-wrapper input:focus,
.input-wrapper textarea:focus,
.form-control:focus {
  outline: none;
  border-color: #5565e3;
  box-shadow: 0 0 0 3px rgba(85, 101, 227, 0.1);
}

.input-wrapper textarea,
textarea.form-control {
  padding-top: 15px;
  resize: vertical;
  min-height: 120px;
}

.textarea-icon {
  top: 20px !important;
  transform: none !important;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b8b4cb' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 12px;
}

.gradient-btn,
.submit-btn {
  background: var(--primary-grad);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.gradient-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(85, 101, 227, 0.4);
}

/* About Page */
.about-hero,
.contact-hero,
.quote-hero {
  background: var(--bg-surface);
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.mission-vision {
  padding: 80px 0;
  background: var(--bg-color);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}

.mv-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-grad);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
}

.values-section,
.team-section,
.stats-section {
  padding: 80px 0;
}

.values-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card,
.team-member {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

/* Blog Pages */
.articles-section {
  padding: 80px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.article-card {
  background: rgba(26, 31, 62, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Quote Request Page */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin: 0 auto 1.5rem;
}

.services-grid-quote {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-option {
  background: var(--bg-input);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-option:hover,
.service-option.selected {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--card-bg);
  padding: 60px 0 30px;
  border-radius: 80px 80px 0 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 24px;
  max-width: 400px;
  text-align: right;
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(85, 101, 227, 0.3);
}

.social-links a:hover::before {
  opacity: 1;
}

/* Image icons styling */
.social-links a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

/* SVG icons styling */
.social-links a svg {
  width: 24px;
  height: 24px;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  fill: currentColor;
}

.social-links a:hover img,
.social-links a:hover svg {
  transform: scale(1.1);
}

.social-links a[href*="instagram"]:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-links a[href*="facebook"]:hover {
  background: #1877f2;
}

.social-links a[href*="x.com"]:hover,
.social-links a[href*="twitter"]:hover {
  background: #000000;
}

.social-links a[href*="whatsapp"]:hover {
  background: #25d366;
}

.social-links a[href*="tiktok"]:hover {
  background: linear-gradient(45deg, #000000, #00f2ea, #ff0050);
}

.social-links a[href*="linkedin"]:hover {
  background: #0077b5;
}

/* Old footer styles removed - using new enhanced styles above */

/* Old footer styles removed - using new enhanced styles above */

/* ========================================
   Map Container Styles
   ======================================== */
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

.map-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.map-section .container {
  max-width: 1200px;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.decorative-blur {
  position: absolute;
  z-index: -1;
  opacity: 0.6;
}

.mobile-only {
  display: none;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ========================================
   Animations
   ======================================== */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fa-spinner {
  animation: spin 1s linear infinite;
}

/* ========================================
   Responsive Design - التصميم المتجاوب
   ======================================== */

/* Tablet (1024px وأقل) */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-gallery {
    height: 500px;
    margin-top: 40px;
  }

  .gallery-img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  }


  .client-counter {
    padding: 1.5rem;
    gap: 1rem;
    align-self: center;
    margin-top: 1.5rem;
  }

  .client-number {
    font-size: 2rem;
  }

  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-mobile-cta {
    display: inline-block !important;
    margin-top: 2rem;
  }

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

  .about-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile (768px وأقل) */
@media screen and (max-width: 768px) {
  /* Header */
  .header {
    padding: 0.75rem 0;
    border-radius: 0 0 50px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .logo {
    grid-column: 1;
    font-size: 1.1rem;
    gap: 8px;
  }

  .logo-img {
    width: 150px !important;
    height: 32px !important;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    justify-self: start;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
  }

  nav {
    grid-column: 1 / -1;
    order: 4;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 31, 62, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    gap: 0;
    animation: slideDown 0.3s ease;
  }

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

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-right: 2rem;
  }

  .header-actions {
    grid-column: 3;
  }

  .cta-button {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
  }

  /* Hero Section */
  #hero {
    padding: 7rem 0 4rem;
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Clients */
  #clients {
    padding: 2rem 0;
  }

  #clients .section-title {
    font-size: 2rem;
  }

  .slideshow-container {
    height: 100px;
  }

  .slide-item {
    flex: 0 0 25% !important; /* Show 4 items on mobile for better viewing */
    min-width: 25% !important;
    max-width: 25% !important;
  }

  .client-logo {
    height: 50px;
  }

  .logos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .logos-container img {
    max-width: 100px;
  }

  /* About */
  #about {
    padding: 4rem 0;
  }

  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .stat-item {
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
  }

  .stat-header {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .stat-header img {
    width: 32px;
    height: 32px;
    order: -1;
    opacity: 0.8;
  }

  .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-us-item {
    text-align: center;
    padding: 1.5rem;
  }

  /* Services */
  #services {
    padding: 4rem 0;
  }

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

  .service-card {
    padding: 1.5rem;
  }

  /* Testimonials */
  #testimonials {
    padding: 4rem 0;
  }

  .testimonials-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .testimonials-visual {
    height: 400px;
    margin-top: 2rem;
  }

  .client-avatar {
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    filter: brightness(1.3) contrast(1.2) saturate(1.1) !important;
  }

  .client-avatar:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5) !important;
  }

  .stats-box {
    padding: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }

  .avatar-stack img {
    width: 30px;
    height: 30px;
    margin-left: -8px;
    opacity: 1 !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3) !important;
    filter: brightness(1.3) contrast(1.2) saturate(1.1) !important;
  }

  .satisfied-customer-box {
    font-size: 0.8rem;
  }

  .testimonial-slider {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 1.5rem;
    margin: 0;
    max-width: 100%;
  }

  .slider-arrow {
    position: static !important;
    margin: 0.5rem auto;
    width: 50px;
    height: 50px;
    padding: 0.75rem;
  }

  .slider-arrow img {
    width: 20px;
    height: 20px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
    margin-left: 0.5rem;
  }

  .theme-toggle i {
    font-size: 1rem;
  }

  /* Contact */
  #contact {
    padding: 4rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 2rem;
  }

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

  .form-group {
    width: 100%;
  }

  .map-container {
    height: 250px;
    margin-top: 2rem;
  }

  /* About Page */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid,
  .team-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  /* Quote Page */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-about {
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .footer-about .logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
    gap: 0.75rem;
  }

  .social-links a {
    width: 45px;
    height: 45px;
  }

  .social-links a img,
  .social-links a svg {
    width: 20px;
    height: 20px;
  }

  /* Map responsive styles */
  .map-container {
    height: 250px;
  }

  .map-section {
    padding: 60px 0;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .footer-links-col {
    text-align: center;
    align-items: center;
  }

  /* Decorative elements */
  .decorative-blur {
    transform: scale(0.5);
    opacity: 0.4;
  }

  /* Touch targets */
  a,
  button,
  input,
  select,
  textarea {
    min-height: 44px;
  }

  .gradient-btn {
    min-height: 48px;
  }

  /* Form inputs */
  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }

  .input-wrapper select,
  .input-wrapper input,
  .input-wrapper textarea {
    padding-left: 40px;
  }

  .input-wrapper img {
    left: 12px;
    width: 18px;
    height: 18px;
  }

  /* Mobile specific */
  body {
    overflow-x: hidden;
  }

  section {
    overflow-x: hidden;
  }

  .service-card:active,
  .why-us-item:active {
    transform: scale(0.98);
  }

  .cta-button:active,
  .gradient-btn:active {
    transform: scale(0.95);
  }

  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }
}

/* Small Mobile (480px وأقل) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .logo-img {
    width: 250px !important;
    height: 53px !important;
  }

  .cta-button {
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
  }

  .mobile-menu-toggle {
    padding: 0.5rem 0.7rem;
    min-height: 40px;
    min-width: 40px;
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .logos-container img {
    max-width: 80px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .stat-item {
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    margin: 0;
  }

  .stat-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .stat-header img {
    width: 28px;
    height: 28px;
    order: -1;
    opacity: 0.8;
  }
}

/* Extra Small Mobile (320px and below) */
@media screen and (max-width: 320px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .stat-item {
    padding: 0.75rem;
    text-align: center;
    border-radius: 10px;
  }

  .stat-header {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-header img {
    width: 24px;
    height: 24px;
  }
}

/* Mobile (768px وأقل) */
@media screen and (max-width: 768px) {
  .service-card {
    padding: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .stats-box {
    padding: 0.75rem;
    max-width: 280px;
  }

  .avatar-stack img {
    width: 25px;
    height: 25px;
    margin-left: -6px;
    opacity: 1 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    filter: brightness(1.3) contrast(1.2) saturate(1.1) !important;
  }

  .satisfied-customer-box {
    font-size: 0.75rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .social-links a img,
  .social-links a svg {
    width: 18px;
    height: 18px;
  }

  /* Contact Form Small Mobile */
  .contact-main {
    padding: 30px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Contact Info Small Mobile - for Contact.html page */
  .contact-main .contact-info {
    padding: 1.5rem;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }

  /* Contact Info Small Mobile - for index.html page */
  #contact .contact-info {
    padding: 1.5rem;
    order: 1;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }

  /* Contact Form Small Mobile - for index.html page */
  #contact .contact-form-wrapper {
    padding: 1.5rem;
    order: 2;
  }

  .contact-method {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .method-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .method-title {
    font-size: 0.9rem;
  }

  .method-detail {
    font-size: 0.8rem;
  }

  .social-links-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .social-link {
    padding: 0.75rem;
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .social-name {
    font-size: 0.75rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .form-description {
    font-size: 0.8rem;
  }

  .form-group {
    margin-bottom: 0.75rem;
  }

  .form-label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .form-control {
    font-size: 16px !important;
    padding: 12px 14px;
    min-height: 44px;
    border-radius: 6px;
  }

  textarea.form-control {
    min-height: 80px;
  }

  /* Budget Slider Mobile */
  .budget-slider {
    margin: 1rem 0;
  }

  .slider-container {
    margin: 0.75rem 0;
  }

  .slider {
    height: 10px;
  }

  .slider:hover {
    height: 12px;
  }

  .slider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    border: 2px solid var(--bg-color);
  }

  .slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: 2px solid var(--bg-color);
  }

  .slider-values {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
  }

  #budgetValue {
    font-size: 1.25rem;
    padding: 0.4rem 0.8rem;
    order: -1;
  }

  .gradient-btn {
    padding: 0.875rem;
    font-size: 0.9rem;
    min-height: 48px;
    border-radius: 6px;
  }

  .map-container {
    height: 200px;
  }
}

/* Landscape Mobile */
@media screen and (max-width: 896px) and (orientation: landscape) {
  #hero {
    padding: 5rem 0 3rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .header,
  .site-footer,
  .submit-btn,
  .mobile-toggle,
  .cta-button,
  .gradient-btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* ========================================
   Additional Improvements
   ======================================== */

/* Better touch interactions */
@media screen and (max-width: 768px) {
  button,
  .cta-button,
  .gradient-btn {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .service-card,
  .testimonial-card,
  .stats-box {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  p {
    line-height: 1.6;
  }

  .section-description {
    line-height: 1.7;
  }

  label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}

/* Smooth transitions */
.social-links a {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Focus states for accessibility */
.form-control:focus,
.service-option:focus,
.submit-btn:focus,
.cta-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
/* إصلاح القائمة المتحركة */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    background: rgba(26, 31, 62, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    z-index: 998;
    animation: slideDown 0.3s ease;
    border-radius: 0 0 30px 30px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #hero {
    padding: 5rem 0 3rem;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-gallery {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}


  .hero-mobile-cta {
    display: inline-flex !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 2rem;
  }

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }

  .service-icon-wrapper img {
    width: 35px;
    height: 35px;
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  /* Contact Main Section Mobile */
  .contact-main {
    padding: 40px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* Contact Info Mobile - for Contact.html page */
  .contact-main .contact-info {
    padding: 2rem;
    order: 2;
    margin: 0 -2rem;
    width: calc(100% + 4rem);
  }

  /* Contact Info Mobile - for index.html page (keep contact-info first) */
  #contact .contact-info {
    padding: 2rem;
    order: 1;
    margin: 0 -2rem;
    width: calc(100% + 4rem);
  }

  /* Contact Form Mobile - for index.html page (show form second) */
  #contact .contact-form-wrapper {
    padding: 2rem;
    order: 2;
  }

  .contact-methods {
    gap: 1rem;
  }

  .contact-method {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 auto;
  }

  .method-content {
    text-align: center;
  }

  .method-title {
    font-size: 1rem;
  }

  .method-detail {
    font-size: 0.9rem;
  }

  /* Social Links Mobile */
  .social-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .social-link {
    padding: 1rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .social-name {
    font-size: 0.8rem;
  }

  /* Contact Form Mobile */
  .contact-form-wrapper {
    padding: 2rem;
    order: 1;
  }

  .form-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .form-description {
    text-align: center;
    font-size: 0.9rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .form-control {
    font-size: 16px !important; /* منع التكبير التلقائي */
    padding: 14px 16px;
    min-height: 48px;
    border-radius: 8px;
  }

  .form-control:focus {
    box-shadow: 0 0 0 2px rgba(85, 101, 227, 0.2);
  }

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

  .form-hint {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }

  /* Budget Slider Mobile (768px) */
  .budget-slider {
    margin: 1.25rem 0;
  }

  .slider-container {
    margin: 0.75rem 0;
  }

  .slider {
    height: 9px;
  }

  .slider:hover {
    height: 11px;
  }

  .slider::-webkit-slider-thumb {
    width: 26px;
    height: 26px;
  }

  .slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
  }

  .slider-values {
    font-size: 0.85rem;
    margin-top: 0.75rem;
  }

  #budgetValue {
    font-size: 1.4rem;
    padding: 0.45rem 0.9rem;
  }

  .gradient-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    min-height: 52px;
    border-radius: 8px;
  }

  /* Map Section Mobile */
  .map-section {
    padding: 40px 0;
  }

  .map-container {
    height: 250px;
    margin: 0 -1rem;
    border-radius: 0;
  }

  .map-container iframe {
    border-radius: 0;
  }

  /* Map within contact-info full width */
  #contact .contact-info .map-container,
  .contact-main .contact-info .map-container {
    margin: 0;
    border-radius: 0;
  }

  #contact .contact-info .map-container iframe,
  .contact-main .contact-info .map-container iframe {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-about {
    align-items: center;
    text-align: center;
  }

  /* Mobile footer styles handled in enhanced footer section */

  .social-links {
    justify-content: center;
    gap: 1rem;
  }

  .social-links a {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .social-links img,
  .social-links svg {
    width: 22px;
    height: 22px;
  }

  /* Map mobile styles */
  .map-container {
    height: 200px;
    margin: 0 -1rem;
    border-radius: 0;
  }

  .map-container iframe {
    border-radius: 0;
  }

  .map-section {
    padding: 40px 0;
  }
}
/* ========================================
   About Page Styles - أنماط صفحة من نحن
   ======================================== */
.about-hero {
  background: var(--bg-surface);
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(85, 101, 227, 0.2);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(85, 101, 227, 0.3);
}

.hero-title {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Mission Vision Section */
.mission-vision {
  padding: 80px 0;
  background: var(--bg-color);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}

.mv-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-grad);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
}

.mv-title {
  color: var(--text-light);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.mv-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-grad);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.value-title {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-accent);
  object-fit: cover;
}

.member-name {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.member-role {
  color: var(--color-accent);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.member-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-input);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 500;
}

/* Story Section */
.story-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-text {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.story-highlight {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--bg-surface);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-description {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gradient-btn {
  background: var(--primary-grad);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(85, 101, 227, 0.4);
}

/* ========================================
   Services Page Styles - أنماط صفحة الخدمات
   ======================================== */
.services-hero {
  background: linear-gradient(
      135deg,
      rgba(26, 31, 62, 0.9) 0%,
      rgba(101, 22, 195, 0.7) 100%
    ),
    url("../Images/services-hero-bg.jpg") center/cover;
  padding: 160px 0 80px;
  text-align: center;
  color: white;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-hero p {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e4dffa;
  margin-bottom: 2rem;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: #0f1320;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.5rem;
  color: #e4dffa;
  margin-bottom: 1rem;
}

.services-header p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: #b8b4cb;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(26, 31, 62, 0.5);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(26, 31, 62, 0.7);
}

.service-card__icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.service-card__icon {
  width: 36px;
  height: 36px;
}

.service-card__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.75rem;
  color: #e4dffa;
  margin-bottom: 15px;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #b8b4cb;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-card__features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-card__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #aaa6bb;
  margin-bottom: 10px;
}

.service-card__feature-item img {
  width: 18px;
  height: 18px;
}

.service-card__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  text-decoration: none;
  color: white;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.service-card__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(101, 22, 195, 0.4);
}

/* CTA Section */
.services-cta {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 62, 0.9) 0%,
    rgba(101, 22, 195, 0.7) 100%
  );
  padding: 80px 0;
  text-align: center;
}

.services-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.5rem;
  color: #e4dffa;
  margin-bottom: 1.5rem;
}

.services-cta p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: #b8b4cb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button-large {
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(101, 22, 195, 0.5);
}

/* ========================================
   Contact Page Styles - أنماط صفحة اتصل بنا
   ======================================== */
.contact-hero {
  background: var(--bg-surface);
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Main Section */
.contact-main {
  padding: 80px 0;
  background: var(--bg-color);
}

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

/* Contact Info Styles */
.contact-info {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section {
  margin-bottom: 3rem;
}

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

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-input);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-title {
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.method-detail {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.method-link {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: var(--text-light);
}

/* Social Links */
.social-section {
  text-align: center;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg-input);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  color: var(--text-light);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.social-name {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  color: var(--text-light);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
}

.form-label .required {
  color: #ff4757;
  margin-right: 0.25rem;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b8b4cb' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 12px;
  padding-right: 1rem;
  padding-left: 3rem;
}

.form-hint {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.map-container {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--color-accent-1) 0%,
    var(--color-accent-2) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1rem;
}

.map-placeholder i {
  font-size: 3rem;
}

.map-placeholder p {
  font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-accent);
}

.faq-question {
  padding: 1.5rem;
  background: var(--bg-input);
  border: none;
  width: 100%;
  text-align: right;
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(102, 126, 234, 0.1);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ========================================
   Blog Page Styles - أنماط صفحة المدونة
   ======================================== */
.hero-section {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(26, 31, 62, 0.8) 0%,
    rgba(15, 15, 35, 0.9) 100%
  );
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #e4dffa 0%, #995cbe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b8b4cb;
  max-width: 600px;
  margin: 0 auto;
}

/* Articles Grid */
.articles-section {
  padding: 80px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.article-card {
  background: rgba(26, 31, 62, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(153, 92, 190, 0.3);
}

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.article-content {
  padding: 1.5rem;
}

.article-category {
  display: inline-block;
  background: rgba(153, 92, 190, 0.2);
  color: #995cbe;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e4dffa;
  line-height: 1.4;
}

.article-excerpt {
  color: #b8b4cb;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aaa6bb;
  font-size: 0.875rem;
}

.read-more {
  color: #995cbe;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #e4dffa;
}

/* Featured Article */
.featured-article {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 62, 0.8) 0%,
    rgba(101, 22, 195, 0.1) 100%
  );
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(153, 92, 190, 0.3);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  min-height: 400px;
}

.featured-badge {
  background: linear-gradient(135deg, #995cbe 0%, #6516c3 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e4dffa;
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 1.125rem;
  color: #b8b4cb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.featured-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #6516c3 0%, #995cbe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
}

.featured-article:hover .featured-image {
  transform: scale(1.02);
}

/* Featured Article Mobile Responsive */
@media screen and (max-width: 768px) {
  .featured-article {
    margin-bottom: 2rem;
    border-radius: 16px;
  }

  .featured-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .featured-title {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .featured-excerpt {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .featured-image {
    height: 200px;
    font-size: 3rem;
    order: -1;
  }

  .featured-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
    margin-bottom: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  .featured-content {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .featured-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .featured-excerpt {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .featured-image {
    height: 150px;
    font-size: 2.5rem;
  }

  .featured-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 62, 0.8) 0%,
    rgba(101, 22, 195, 0.15) 100%
  );
  padding: 4rem 0;
  border-radius: 24px;
  margin: 4rem 0;
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e4dffa;
}

.newsletter-text {
  color: #b8b4cb;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #5a5666;
  border-radius: 12px;
  background: rgba(26, 31, 62, 0.6);
  color: #e4dffa;
  font-family: var(--font-primary);
}

.newsletter-input::placeholder {
  color: #aaa6bb;
}

/* ========================================
   Quote Request Page Styles - أنماط صفحة طلب عرض السعر
   ======================================== */
.quote-hero {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 62, 0.8) 0%,
    rgba(15, 15, 35, 0.9) 100%
  );
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.quote-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.2);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.quote-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.quote-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Quote Form Styles */
.quote-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-form {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.form-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
}

.form-label .required {
  color: #ff4757;
  margin-right: 0.25rem;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b8b4cb' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 12px;
  padding-right: 1rem;
  padding-left: 3rem;
}

/* Service Selection */
.service-selection {
  margin-bottom: 2rem;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-option {
  background: var(--bg-input);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.service-option:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.service-option.selected {
  border-color: var(--color-accent);
  background: rgba(102, 126, 234, 0.1);
}

.service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.service-name {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Budget Slider */
.budget-slider {
  margin: 1.5rem 0;
}

.slider-container {
  position: relative;
  margin: 1rem 0;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--bg-input) 0%, var(--color-accent) 50%, var(--bg-input) 100%);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider:hover {
  height: 10px;
}

.slider:focus {
  box-shadow: 0 0 0 3px rgba(85, 101, 227, 0.2);
}

/* Webkit Slider Thumb */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-grad);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(85, 101, 227, 0.4);
  transition: all 0.3s ease;
  border: 3px solid var(--bg-color);
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(85, 101, 227, 0.6);
}

.slider::-webkit-slider-thumb:active {
  transform: scale(1.2);
}

/* Firefox Slider Thumb */
.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-grad);
  cursor: pointer;
  border: 3px solid var(--bg-color);
  box-shadow: 0 4px 12px rgba(85, 101, 227, 0.4);
  transition: all 0.3s ease;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(85, 101, 227, 0.6);
}

.slider::-moz-range-thumb:active {
  transform: scale(1.2);
}

/* Firefox Slider Track */
.slider::-moz-range-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-input);
  border: none;
}

.slider-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

#budgetValue {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(85, 101, 227, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(85, 101, 227, 0.2);
}

/* File Upload */
.file-upload-section {
  margin-bottom: 2rem;
}

.file-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-input);
}

.file-upload-area:hover {
  border-color: var(--color-accent);
  background: rgba(102, 126, 234, 0.05);
}

.file-upload-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.file-upload-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.file-upload-btn {
  background: var(--primary-grad);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.file-upload-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.file-list {
  margin-top: 1rem;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-input);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 0.5rem;
}

.file-name {
  color: var(--text-light);
}

.file-remove {
  background: #ff4757;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Submit Button */
.submit-section {
  text-align: center;
  margin-top: 2rem;
}

.gradient-btn {
  background: var(--primary-grad);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gradient-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   Blog Details Page Styles - أنماط صفحة تفاصيل المقال
   ======================================== */

/* Article Detail Section */
.article-detail-section {
  padding: 2rem 0;
  background: var(--bg-color);
  min-height: 100vh;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-category {
  display: inline-block;
  background: var(--primary-grad);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(85, 101, 227, 0.3);
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.article-meta-item span:first-child {
  font-size: 1.1rem;
}

/* Article Content Layout */
.article-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.article-body {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-grad));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 2rem;
  color: white;
}

.article-text {
  line-height: 1.8;
  color: var(--text-primary);
}

.article-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-grad);
}

.article-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem 0;
}

.article-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.article-text ul {
  margin: 1.5rem 0;
  padding-right: 1.5rem;
}

.article-text li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.highlight-box {
  background: rgba(85, 101, 227, 0.1);
  border: 1px solid rgba(85, 101, 227, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-right: 4px solid var(--color-accent);
}

.highlight-box strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Article Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
  background: var(--bg-input);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag:hover {
  background: var(--primary-grad);
  color: white;
  transform: translateY(-2px);
}

/* Article Navigation */
.article-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-input);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-button:hover {
  background: var(--primary-grad);
  color: white;
  transform: translateY(-2px);
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.author-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem auto;
}

.author-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.author-bio {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Social Share */
.social-share {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: var(--bg-input);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-button:hover {
  background: var(--primary-grad);
  color: white;
  transform: translateY(-2px);
}

/* Table of Contents */
.table-of-contents {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.toc-list li {
  margin-bottom: 0.75rem;
}

.toc-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 8px;
  padding-right: 1rem;
}

.toc-list a:hover {
  color: var(--color-accent);
  background: rgba(85, 101, 227, 0.1);
  transform: translateX(-5px);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .article-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-meta {
    gap: 1rem;
  }
  
  .article-body {
    padding: 1.5rem;
  }
  
  .article-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-button {
    justify-content: center;
  }
  
  .article-sidebar {
    order: -1;
  }
}

@media screen and (max-width: 480px) {
  .article-header {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .article-title {
    font-size: 1.75rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .article-body {
    padding: 1rem;
  }
  
  .article-text h2 {
    font-size: 1.5rem;
  }
  
  .article-text h3 {
    font-size: 1.25rem;
  }
  
  .author-card,
  .social-share,
  .table-of-contents {
    padding: 1.5rem;
  }
}

/* تحسين الأداء على الجوال */
@media screen and (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

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

  .decorative-blur {
    display: none; /* إخفاء التأثيرات الثقيلة */
  }

  /* تقليل الحركات */
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
  }

  /* Quote Form Mobile */
  .quote-form {
    padding: 2rem 1.5rem;
  }

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

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

  .quote-title {
    font-size: 2.5rem;
  }

  /* Blog Details Mobile */
  .blog-title {
    font-size: 2.5rem;
  }

  .article-body {
    padding: 2rem 1.5rem;
  }

  .article-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-link {
    justify-content: center;
  }

  .blog-meta {
    flex-direction: column;
    gap: 1rem;
  }
}
/* ========================================
   Enhanced Footer Styles - أنماط الفوتر المحسنة
   ======================================== */
.site-footer {
  background: linear-gradient(
    135deg,
    var(--bg-dark) 0%,
    var(--bg-surface) 100%
  );
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
  opacity: 0.5;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}

/* Footer About Section */
.footer-about {
  max-width: 400px;
}

.footer-about .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.logo-img {
  width: 250px;
  height: 53px;
  object-fit: contain;
}

/* Logo text removed - using logo image only */

.footer-about p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Social Links - Duplicate styles removed, using main social-links styles above */

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 600px;
  margin-left: auto;
}

.footer-links-col h4 {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  text-align: right;
}

.footer-links-col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-grad);
  border-radius: 2px;
}

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

.footer-links-col li {
  margin-bottom: 0.75rem;
}

.footer-links-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 0;
  display: block;
  text-align: right;
  margin-bottom: 0.75rem;
}

.footer-links-col a::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--text-light);
  padding-right: 15px;
}

.footer-links-col a:hover::before {
  width: 10px;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  animation: newsletterGlow 4s ease-in-out infinite alternate;
}

@keyframes newsletterGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.newsletter-title {
  color: var(--text-light);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.newsletter-input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  background: var(--primary-grad);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--primary-grad);
}

/* WhatsApp Button - Bottom Right */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Ensure WhatsApp icon is always visible */
.whatsapp-button .fa-brands.fa-whatsapp,
.whatsapp-button .fab.fa-whatsapp {
  font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.whatsapp-button a:focus {
  outline: 2px solid #25d366;
  outline-offset: 2px;
}

.whatsapp-button a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button a i {
  font-size: 28px;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: white !important;
}

.whatsapp-button a:hover i {
  transform: scale(1.1);
}

.whatsapp-text {
  display: none;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

/* Fallback if FontAwesome doesn't load */
.whatsapp-button a i:not(.fa-whatsapp) {
  display: none;
}

.whatsapp-button a i:not(.fa-whatsapp) + .whatsapp-text {
  display: block;
}

/* Tooltip */
.whatsapp-button a::before {
  content: attr(title);
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-button a::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--bg-dark);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-button a:hover::before,
.whatsapp-button a:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .whatsapp-button {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button a {
    width: 55px;
    height: 55px;
  }

  .whatsapp-button a i {
    font-size: 24px;
  }

  .whatsapp-button a::before {
    left: 65px;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .whatsapp-button a::after {
    left: 55px;
  }
}

@media screen and (max-width: 480px) {
  .whatsapp-button {
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-button a {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button a i {
    font-size: 22px;
  }
}

/* Mobile Responsive for Footer */
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-about {
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .footer-about .logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
    gap: 0.75rem;
  }

  .social-links a {
    width: 45px;
    height: 45px;
  }

  .social-links img,
  .social-links svg {
    width: 20px;
    height: 20px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .footer-links-col {
    text-align: center;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }

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

}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  section {
    overflow-x: hidden;
    max-width: 100vw;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .cta-button {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
    min-width: auto;
    white-space: nowrap;
  }

  .gradient-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    justify-content: center;
  }
}
