/* CSS Variables for Colors */
:root {
  /* Primary Colors */
  --primary-color: #002a2f;
  --primary-light: #002a2f;
  --primary-dark: #c2b280;

  /* Secondary Colors */
  --secondary-color: #d4af37;
  --secondary-light: #e6c866;
  --secondary-dark: #b8941f;

  /* Accent Colors */
  --accent-color: #c2b280;
  --accent-light: #d4c49a;

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #002a2f;

  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #6c757d;
  --text-light: #ffffff;

  /* Border Colors */
  --border-color: #e9ecef;
  --border-dark: #dee2e6;

  /* Shadow Colors */
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.3);

  /* Success/Error Colors */
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cairo", "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Arabic/RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="ltr"] {
  text-align: left;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation - Transparent initially */
.navbar {
  background-color: transparent;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(0px);
  padding: 20px 0;
}

/* Navbar when scrolled */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 42, 47, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  transition: all 0.4s ease;
}

.navbar.scrolled .nav-container {
  height: 60px;
}

/* Logo styling for transparent navbar */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.4s ease;
}

.nav-logo img {
  transition: all 0.4s ease;
  filter: brightness(1.2);
}

.navbar.scrolled .nav-logo img {
  filter: brightness(1);
}

.navbar.scrolled .nav-logo {
  color: var(--primary-color);
}

.nav-logo i {
  font-size: 2rem;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}

.navbar.scrolled .nav-logo i {
  color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

/* Navigation links for transparent navbar */
.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text-primary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary-color);
}

/* خط واحد فقط للـ active state */
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 1px;
}

/* ضمان عدم ظهور خطوط متعددة */
@media (min-width: 769px) {
  .nav-link {
    position: relative;
  }

  /* خط واحد فقط عند hover */
  .nav-link:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--secondary-color),
      var(--accent-color)
    );
    border-radius: 1px;
    animation: slideIn 0.3s ease;
  }

  /* إزالة الخط عند عدم الـ hover */
  .nav-link:not(:hover):not(.active)::after {
    display: none;
  }
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Language toggle for transparent navbar */
.lang-toggle {
  background-color: rgba(212, 175, 55, 0.9);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.navbar.scrolled .lang-toggle {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.lang-toggle:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

/* Hamburger for mobile - transparent navbar */
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled .hamburger span {
  background-color: var(--primary-color);
}

/* Enhanced Hero Section with Background Image */
.hero {
  background-image: linear-gradient(
      135deg,
      rgba(0, 42, 47, 0.85) 0%,
      rgba(194, 178, 128, 0.7) 50%,
      rgba(0, 42, 47, 0.9) 100%
    ),
    url("./assets/home_section.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(194, 178, 128, 0.8) 0%,
    rgba(74, 74, 74, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 25px;
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  font-size: 15rem;
  color: var(--secondary-color);
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* About Us Section */
.about-us {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-image-container {
  position: relative;
  width: 350px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-image {
  width: 280px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
  border: 4px solid var(--white);
}

.about-main-image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* الدوائر الديكورية */
.image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ميزان العدالة */
.decoration-circle.circle-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  top: -20px;
  right: -20px;
  opacity: 0.9;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleFloat 4s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.decoration-circle.circle-1::before {
  content: '⚖️';
  font-size: 2.5rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* مطرقة القاضي */
.decoration-circle.circle-2 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  bottom: -10px;
  left: -30px;
  opacity: 0.8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateFloat 5s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(196, 164, 92, 0.3);
}

.decoration-circle.circle-2::before {
  content: '🔨';
  font-size: 2rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* درع الحماية القانونية */
.decoration-circle.circle-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  top: 50%;
  right: -40px;
  opacity: 0.7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseFloat 6s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(74, 74, 74, 0.3);
}

.decoration-circle.circle-3::before {
  content: '🛡️';
  font-size: 1.8rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* كتاب القانون */
.decoration-circle.circle-4 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-light), var(--secondary-dark));
  top: 20%;
  left: -25px;
  opacity: 0.6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideFloat 7s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.decoration-circle.circle-4::before {
  content: '📚';
  font-size: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes scaleFloat {
  0%, 100% {
    transform: scale(1) translateY(0px);
  }
  50% {
    transform: scale(1.1) translateY(-10px);
  }
}

@keyframes rotateFloat {
  0%, 100% {
    transform: rotate(0deg) translateY(0px);
  }
  25% {
    transform: rotate(5deg) translateY(-8px);
  }
  75% {
    transform: rotate(-5deg) translateY(-5px);
  }
}

@keyframes pulseFloat {
  0%, 100% {
    transform: scale(1) translateY(0px);
    opacity: 0.7;
  }
  33% {
    transform: scale(1.15) translateY(-12px);
    opacity: 0.9;
  }
  66% {
    transform: scale(0.95) translateY(-6px);
    opacity: 0.8;
  }
}

@keyframes slideFloat {
  0%, 100% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(8px) translateY(-15px);
  }
}


/* تحسين responsive للأشكال الجديدة */
@media (max-width: 768px) {
  .decoration-circle.circle-1 {
    width: 60px;
    height: 60px;
  }
  
  .decoration-circle.circle-1::before {
    font-size: 2rem;
  }
  
  .decoration-circle.circle-2 {
    width: 55px;
    height: 55px;
  }
  
  .decoration-circle.circle-2::before {
    font-size: 1.7rem;
  }
  
  .decoration-circle.circle-3 {
    width: 45px;
    height: 45px;
  }
  
  .decoration-circle.circle-3::before {
    font-size: 1.4rem;
  }
  
  .decoration-circle.circle-4 {
    width: 40px;
    height: 40px;
  }
  
  .decoration-circle.circle-4::before {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .decoration-circle.circle-1 {
    width: 50px;
    height: 50px;
  }
  
  .decoration-circle.circle-1::before {
    font-size: 1.7rem;
  }
  
  .decoration-circle.circle-2 {
    width: 45px;
    height: 45px;
  }
  
  .decoration-circle.circle-2::before {
    font-size: 1.5rem;
  }
  
  .decoration-circle.circle-3 {
    width: 35px;
    height: 35px;
  }
  
  .decoration-circle.circle-3::before {
    font-size: 1.2rem;
  }
  
  .decoration-circle.circle-4 {
    width: 30px;
    height: 30px;
  }
  
  .decoration-circle.circle-4::before {
    font-size: 1rem;
  }
}

/* إضافة خلفية متدرجة خلف الصورة */
.about-image-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 460px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(196, 164, 92, 0.15) 50%,
    rgba(74, 74, 74, 0.1) 100%
  );
  border-radius: 25px;
  z-index: 1;
}

/* تأثير الإضاءة */
.about-image-container::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
}

/* Animation للدوائر */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(120deg);
  }
  66% {
    transform: translateY(-8px) rotate(240deg);
  }
}

.about-icon {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(196, 164, 92, 0.3);
}

.about-icon i {
  font-size: 8rem;
  color: var(--white);
}

.about-text {
  text-align: right;
}

.about-text .section-title {
  text-align: right;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.about-section {
  margin-bottom: 40px;
}

.about-section h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-align: justify;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.vision,
.mission {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  border-right: 4px solid var(--accent-color);
}

.vision h3,
.mission h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vision h3 i,
.mission h3 i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.vision p,
.mission p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: justify;
}

/* Unified Section Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Services Preview Section - Unified */
.services-preview {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.services-preview .section-title {
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-preview .section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 45px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.service-card i {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(196, 164, 92, 0.4);
  transition: all 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(196, 164, 92, 0.6);
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 10px;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: var(--text-primary);
}



.services-preview .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: var(--white);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.services-preview .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--text-light);
  padding: 120px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Hero Section Base Styles */
.hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Services Page Hero Background */
.hero-section.services-hero {
  background-image: url('./assets/background-service.jpg');
}

/* Team Page Hero Background */
.hero-section.team-hero {
  background-image: url('./assets/background-team.webp');
}

/* Contact Page Hero Background */
.hero-section.contact-hero {
  background-image: url('./assets/background-contact.jpeg');
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 42, 47, 0.9) 0%,
    rgba(194, 178, 128, 0.6) 50%,
    rgba(52, 73, 94, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .btn {
  background: var(--accent-color);
  color: var(--white);
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    min-height: 350px;
    background-attachment: scroll;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 45vh;
    min-height: 300px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-content .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Services Detailed */
.services-detailed {
  padding: 80px 0;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Enhanced Service Cards */
.service-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: italic;
}

.service-card-detailed {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 30px;
}

.service-card-detailed:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-card-detailed .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-card-detailed .service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card-detailed h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.service-card-detailed ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: right;
}

.service-card-detailed ul li {
  padding: 8px 0;
  padding-right: 20px;
  position: relative;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card-detailed ul li:before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  right: 0;
  font-size: 1.1rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

/* Team Section Enhanced */
.team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--light-gray) 100%);
  position: relative;
}

.team-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* Enhanced Team Member Cards */
.team-member {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 42, 47, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(194, 178, 128, 0.1);
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 42, 47, 0.15);
  border-color: var(--accent-color);
}

/* Enhanced Member Image Section */
.member-image {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.member-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.member-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 42, 47, 0.3), transparent);
  pointer-events: none;
}

.member-image i {
  font-size: 5rem;
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.team-member:hover .member-image i {
  transform: scale(1.1) rotate(5deg);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Enhanced Member Info Section */
.member-info {
  padding: 35px 30px;
  position: relative;
}

.member-info h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.team-member:hover .member-info h3 {
  color: var(--secondary-color);
}

.member-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.member-title::before {
  content: '👔';
  font-size: 1rem;
}

.member-specialty {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 500;
}

.member-experience {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: linear-gradient(135deg, rgba(194, 178, 128, 0.1), rgba(194, 178, 128, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(194, 178, 128, 0.2);
  width: fit-content;
}

.member-experience::before {
  content: '⭐';
  font-size: 1rem;
}

.member-qualifications {
  margin-bottom: 25px;
}

.member-qualifications span {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.5;
}

.member-social {
  display: flex;
  gap: 15px;
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.member-social a:hover {
  background-color: var(--secondary-dark);
}

/* Our Values Section - Unified */
.our-values {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.our-values .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.our-values .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.values-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.values-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--accent-color)
  );
  transform: translateX(-50%);
  border-radius: 2px;
}

.value-item {
  position: relative;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item:nth-child(odd) {
  flex-direction: row;
}

.value-item:nth-child(even) {
  flex-direction: row-reverse;
}

.value-circle {
  width: 90px;
  height: 90px;
  background: white;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-circle:hover {
  transform: scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.value-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 1.4rem;
  color: white;
}

.value-content {
  flex: 1;
  max-width: 280px;
  padding: 0 35px;
  text-align: center;
}

[dir="ltr"] .value-item:nth-child(odd) .value-content {
  text-align: right;
  padding-left: 35px;
  padding-right: 0;
}

[dir="ltr"] .value-item:nth-child(even) .value-content {
  text-align: left;
  padding-right: 35px;
  padding-left: 0;
}

/* للاتجاه من اليمين إلى اليسار (RTL) */
[dir="rtl"] .value-item:nth-child(odd) .value-content {
  text-align: right;
  padding-left: 0;
  padding-right: 35px;
}

[dir="rtl"] .value-item:nth-child(even) .value-content {
  text-align: left;
  padding-right: 0;
  padding-left: 35px;
}

.value-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.4;
  background: white;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.value-content h3:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Why Us Section - Unified */
.why-us {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.why-us .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.why-us .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 0;
}

.why-us-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.why-us-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.why-us-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.why-us-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.why-us-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Certifications Section */
.certifications {
  padding: 80px 0;
  background-color: var(--white);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.certification-card {
  background: var(--bg-secondary);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.certification-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 10px 30px var(--shadow-light);
}

.cert-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cert-icon i {
  font-size: 2rem;
  color: var(--white);
}

.certification-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.certification-card p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Our Clients Section */
.our-clients {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
}

.our-clients .section-title,
.our-clients .section-subtitle {
  color: var(--white);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.client-category {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.client-category:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.client-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.client-icon i {
  font-size: 2rem;
  color: var(--white);
}

.client-category h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.client-category p {
  margin-bottom: 20px;
  line-height: 1.5;
  opacity: 0.9;
}

.client-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--shadow-light);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%
    );
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-menu.active li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-link {
    font-size: 1.5rem;
    color: var(--white) !important;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--secondary-color) !important;
    transform: scale(1.05);
  }

  /* إزالة الخطوط في mobile menu */
  .nav-link::after,
  .nav-link::before {
    display: none !important;
  }

  .nav-link.active::after {
    display: none !important;
  }

  /* تحسين الـ active state للـ mobile */
  .nav-link.active {
    background-color: rgba(212, 175, 55, 0.3) !important;
    border-radius: 8px;
  }

  .lang-toggle {
    font-size: 1.2rem;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
  }

  .lang-toggle:hover {
    background-color: transparent;
    color: var(--secondary-color);
  }

  .navbar {
    padding: 15px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .nav-container {
    height: 60px;
  }

  .navbar.scrolled .nav-container {
    height: 50px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .nav-logo i {
    font-size: 1.8rem;
  }

  .hero-content {
    padding-top: 80px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-text .section-title {
    text-align: center;
  }

  .about-image-container {
    width: 280px;
    height: 380px;
  }

  .about-main-image {
    width: 220px;
    height: 330px;
  }

  .about-image-container::before {
    width: 250px;
    height: 360px;
  }

  .circle-1 {
    width: 60px;
    height: 60px;
  }

  .circle-2 {
    width: 45px;
    height: 45px;
  }

  .circle-3 {
    width: 30px;
    height: 30px;
  }

  .about-icon {
    width: 200px;
    height: 200px;
  }

  .about-icon i {
    font-size: 5rem;
  }

  .vision-mission {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
  
  .service-card i {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
  
  .services-preview .section-title {
    font-size: 2.2rem;
  }
  
  .services-preview .section-subtitle {
    font-size: 1.1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .team-member {
    margin: 0 10px;
  }
  
  .member-info {
    padding: 25px 20px;
  }
  
  .member-info h3 {
    font-size: 1.6rem;
  }
  
  .member-specialties {
    padding: 20px 15px;
  }
  
  .team-summary {
    margin: 50px 10px 0;
    padding: 35px 25px;
  }
  
  .team-summary h3 {
    font-size: 1.8rem;
  }

  .services-grid-detailed {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .services-preview,
  .why-us,
  .our-values {
    padding: 60px 0;
  }

  .why-us-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* إزالة التعديلات المتجاوبة المعقدة */
  .values-timeline::before {
    left: 50% !important;
    width: 4px !important;
    transform: translateX(-50%) !important;
  }
  
  .value-item {
    flex-direction: row !important;
    margin: 30px 0 !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .value-item:nth-child(odd) {
    flex-direction: row !important;
  }
  
  .value-item:nth-child(even) {
    flex-direction: row-reverse !important;
  }
  
  .value-circle {
    width: 90px !important;
    height: 90px !important;
    border-width: 5px !important;
  }
  
  .value-icon {
    width: 45px !important;
    height: 45px !important;
  }
  
  .value-icon i {
    font-size: 1.4rem !important;
  }
  
  .value-content {
    max-width: 280px !important;
    padding: 0 35px !important;
    text-align: center !important;
  }
  
  [dir="ltr"] .value-item:nth-child(odd) .value-content {
    padding-right: 25px;
    padding-left: 0;
  }
  
  [dir="ltr"] .value-item:nth-child(even) .value-content {
    padding-left: 25px;
    padding-right: 0;
  }
  
  .value-content h3 {
    font-size: 1.2rem !important;
    padding: 12px 18px !important;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .why-us-grid,
  .certifications-grid,
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-card,
  .certification-card,
  .client-category {
    padding: 25px 20px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* تحسينات إضافية للـ responsive */
  @media (max-width: 480px) {
    .nav-logo img {
      width: 150px;
    }

    .hamburger span {
      width: 22px;
      height: 2px;
    }

    .nav-link {
      font-size: 1.3rem;
    }

    .hero-content {
      padding-top: 70px;
    }
  }

  /* تحسين الـ navbar للشاشات الكبيرة */
  @media (min-width: 769px) {
    .nav-menu {
      position: static;
      flex-direction: row;
      background: none;
      height: auto;
      width: auto;
    }

    .hamburger {
      display: none;
    }
  }

  /* إضافة تأثيرات hover محسنة */
  .nav-link {
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--secondary-color),
      var(--accent-color)
    );
    transition: left 0.3s ease;
  }

  .nav-link:hover::before,
  .nav-link.active::before {
    left: 0;
  }

  /* تحسين الشفافية والانتقالات */
  .navbar {
    backdrop-filter: blur(0px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar.scrolled {
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  /* تحسين الـ logo */
  .nav-logo {
    transition: all 0.4s ease;
  }

  .nav-logo img {
    transition: all 0.4s ease;
    filter: brightness(1.2);
  }

  .navbar.scrolled .nav-logo img {
    filter: brightness(1);
  }

  /* إضافة تأثير الظل للـ navbar */
  .navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 42, 47, 0.1);
  }

  /* Responsive Design for Hero Buttons */
  .floating-shape {
    opacity: 0.6;
  }
  
  .floating-shape.shape-1,
  .floating-shape.shape-3 {
    width: 80px;
    height: 80px;
  }
  
  .floating-shape.shape-2,
  .floating-shape.shape-4,
  .floating-shape.shape-6 {
    width: 50px;
    height: 50px;
  }
  
  .floating-shape.shape-5 {
    width: 60px;
    height: 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .hero-buttons .btn.enhanced {
    width: 100%;
    max-width: 300px;
    padding: 16px 35px;
    font-size: 1.1rem;
    min-width: auto;
  }

}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .about-image-container {
    width: 240px;
    height: 320px;
  }

  .about-main-image {
    width: 180px;
    height: 270px;
  }

  .about-image-container::before {
    width: 210px;
    height: 300px;
  }

  .about-icon {
    width: 150px;
    height: 150px;
  }

  .about-icon i {
    font-size: 4rem;
  }

  .contact-form {
    padding: 25px;
  }

  .team-member,
  .service-card-detailed {
    margin: 0 10px;
  }

  /* الاحتفاظ بنفس التصميم */
  .values-timeline::before {
    left: 50% !important;
    width: 4px !important;
    transform: translateX(-50%) !important;
  }
  
  .value-item {
    margin: 30px 0 !important;
  }
  
  .value-circle {
    width: 90px !important;
    height: 90px !important;
    border-width: 5px !important;
  }
  
  .value-icon {
    width: 45px !important;
    height: 45px !important;
  }
  
  .value-icon i {
    font-size: 1.4rem !important;
  }
  
  .value-content h3 {
    font-size: 1.2rem !important;
    padding: 12px 18px !important;
  }

  /* تحسين العناوين الرئيسية */
  .our-values .section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .our-values .section-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .our-values {
    padding: 40px 0;
  }
  
  .hero-buttons .btn.enhanced {
    padding: 14px 30px;
    font-size: 1rem;
    gap: 10px;
  }
  
  .hero-buttons .btn.enhanced .btn-icon {
    font-size: 1.1rem;
  }
}

/* تحسين للشاشات الصغيرة جداً فقط (أقل من 400px) */
@media (max-width: 400px) {
  .values-timeline {
    max-width: 95%;
    padding: 30px 0;
  }
  
  .value-circle {
    width: 75px;
    height: 75px;
    border-width: 4px;
  }
  
  .value-icon {
    width: 38px;
    height: 38px;
  }
  
  .value-icon i {
    font-size: 1.2rem;
  }
  
  .value-content {
    max-width: 220px;
    padding: 0 25px;
  }
  
 [dir="rtl"] .value-item:nth-child(odd) .value-content {
    padding-left: 25px;
    padding-right: 0;
  }
  
  [dir="rtl"] .value-item:nth-child(even) .value-content {
    padding-right: 25px;
    padding-left: 0;
  }
  
  .value-content h3 {
    font-size: 1rem;
    padding: 10px 14px;
  }
}

/* تحسين التصميم للتابلت */
@media (min-width: 769px) and (max-width: 1024px) {
  .values-timeline {
    max-width: 700px;
  }

  .value-circle {
    width: 80px;
    height: 80px;
  }

  .value-icon {
    width: 40px;
    height: 40px;
  }

  .value-icon i {
    font-size: 1.3rem;
  }

  .value-content {
    max-width: 250px;
    padding: 0 30px;
  }

  .value-content h3 {
    font-size: 1.1rem;
    padding: 10px 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .services-preview,
  .why-us,
  .our-values {
    padding: 50px 0;
  }

  .service-card {
    padding: 30px 20px;
  }
  
  .service-card i {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .service-card p {
    font-size: 0.95rem;
    padding: 0 5px;
  }
}

.contact-form {
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

.radio-label input[type="radio"] {
  width: auto;
  margin: 0;
}

/* Map Section Improvements */
.map-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--bg-secondary), var(--light-gray));
  padding: 60px 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px dashed var(--border-color);
  margin-top: 30px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.map-placeholder p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.map-placeholder small {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.team-member {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-image i {
  font-size: 4rem;
  color: var(--white);
}

.member-info {
  padding: 30px;
}

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.member-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.member-specialty {
  color: var(--gray);
  margin-bottom: 8px;
}

.member-experience {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.member-qualifications {
  margin-bottom: 20px;
}

.member-qualifications span {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 5px;
}

.member-social {
  display: flex;
  gap: 15px;
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.member-social a:hover {
  background-color: var(--secondary-dark);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 25px;
  }

  .team-member,
  .service-card-detailed {
    margin: 0 10px;
  }
}

/* Hero Floating Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(194, 178, 128, 0.2));
  backdrop-filter: blur(3px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.floating-shape.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation: float1 8s ease-in-out infinite;
}

.floating-shape.shape-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation: float2 6s ease-in-out infinite;
}

.floating-shape.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 8%;
  animation: float3 10s ease-in-out infinite;
}

.floating-shape.shape-4 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation: float4 7s ease-in-out infinite;
}

.floating-shape.shape-5 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 15%;
  animation: float5 9s ease-in-out infinite;
}

.floating-shape.shape-6 {
  width: 90px;
  height: 90px;
  bottom: 25%;
  right: 5%;
  animation: float6 8s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  33% { transform: translateX(15px) translateY(-15px); }
  66% { transform: translateX(-10px) translateY(-25px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-25px) scale(1.1); }
}

@keyframes float4 {
  0%, 100% { transform: rotate(0deg) translateY(0px); }
  25% { transform: rotate(90deg) translateY(-10px); }
  50% { transform: rotate(180deg) translateY(-20px); }
  75% { transform: rotate(270deg) translateY(-10px); }
}

@keyframes float5 {
  0%, 100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
  50% { transform: translateX(20px) translateY(-15px) rotate(180deg); }
}

@keyframes float6 {
  0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
  33% { transform: translateY(-15px) scale(1.05) rotate(120deg); }
  66% { transform: translateY(-5px) scale(0.95) rotate(240deg); }
}

/* Enhanced Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.hero-buttons .btn.enhanced {
  position: relative;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  justify-content: center;
  text-decoration: none;
  border: 3px solid transparent;
}

.hero-buttons .btn.enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.hero-buttons .btn.enhanced:hover::before {
  left: 100%;
}

.hero-buttons .btn.enhanced .btn-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.hero-buttons .btn.enhanced .btn-icon {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

/* Primary Button Enhanced - احجز استشارة مجانية */
.hero-buttons .btn-primary.enhanced {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #c2b280 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-primary.enhanced:hover {
  background: linear-gradient(135deg, #e6c866 0%, #d4af37 50%, #b8941f 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-primary.enhanced:hover .btn-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Secondary Button Enhanced - استكشف خدماتنا */
.hero-buttons .btn-secondary.enhanced {
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  backdrop-filter: blur(20px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-secondary.enhanced:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: var(--white);
  text-shadow: none;
}

.hero-buttons .btn-secondary.enhanced:hover .btn-text {
  color: var(--primary-color);
  font-weight: 800;
}

.hero-buttons .btn-secondary.enhanced:hover .btn-icon {
  transform: scale(1.2) rotate(-10deg);
}

/* Pulse Animation for Primary Button */
.hero-buttons .btn-primary.enhanced::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.hero-buttons .btn-primary.enhanced:hover::after {
  width: 300px;
  height: 300px;
}

/* Glow Effect */
.hero-buttons .btn.enhanced:hover {
  filter: brightness(1.1);
}

/* Active State */
.hero-buttons .btn.enhanced:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease-out;
}

.fade-in-down.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation */
.stagger-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.stagger-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation delays for staggered effect */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Hero Content Animation */
.hero-content h1 {
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover animations */
.service-card-detailed,
.team-member {
  transition: all 0.3s ease;
}

.service-card-detailed:hover,
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a3a3f 0%, #002a2f 50%, #001f24 100%);
  color: var(--text-light);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-section {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.footer-section:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 2px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
  position: relative;
  padding-right: 15px;
}

.footer-section ul li::before {
  content: "▸";
  position: absolute;
  right: 0;
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
  padding-right: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-info p:hover {
  background: rgba(212, 175, 55, 0.1);
  padding-right: 10px;
}

.contact-info i {
  color: var(--secondary-color);
  width: 20px;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 -20px -10px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-color);
}

/* Contact Section Layout */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info Section Styles */
.contact-info-section {
  background-color: var(--white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  height: fit-content;
}

.contact-info-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-color);
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 18px;
  background-color: var(--bg-secondary);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-item:hover {
  transform: translateX(5px);
  border-left-color: var(--secondary-color);
  box-shadow: 0 3px 15px var(--shadow-light);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-top: 3px;
  min-width: 28px;
  text-align: center;
}

.contact-item div {
  flex: 1;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Enhanced Contact Form Styles */
.contact-form-section {
  background-color: var(--white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  height: fit-content;
}

.contact-form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: var(--white);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: normal;
  padding: 8px 12px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.radio-label:hover {
  border-color: var(--primary-color);
  background-color: var(--bg-secondary);
}

.radio-label input[type="radio"] {
  width: auto;
  margin: 0;
}

.radio-label input[type="radio"]:checked + span {
  color: var(--primary-color);
  font-weight: 600;
}

/* Button Enhancements */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.service-btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Enhanced Member Description */
.member-description {
  margin: 25px 0;
  position: relative;
}

.member-description p {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: justify;
  padding: 20px;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(248, 249, 250, 0.4));
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.member-description p:hover {
  background: linear-gradient(135deg, rgba(194, 178, 128, 0.1), rgba(194, 178, 128, 0.05));
  transform: translateX(5px);
}

/* Enhanced Member Specialties */
.member-specialties {
  margin: 25px 0;
  background: linear-gradient(135deg, var(--bg-secondary), var(--light-gray));
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(194, 178, 128, 0.1);
}

.member-specialties h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-specialties h4::before {
  content: '🎯';
  font-size: 1.2rem;
}

.member-specialties ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.member-specialties li {
  padding: 12px 20px;
  position: relative;
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  background: var(--white);
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 42, 47, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-specialties li::before {
  content: '▶';
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.member-specialties li:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, var(--white), rgba(194, 178, 128, 0.05));
  border-left-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 42, 47, 0.1);
}

/* Enhanced Team Summary */
.team-summary {
  margin-top: 80px;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  border-radius: 25px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 42, 47, 0.2);
}

.team-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.team-summary h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.team-summary p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

/* Responsive Enhancements */
/* Responsive Design Updates */
@media (max-width: 768px) {

  .footer {
    padding: 40px 0 15px;
  }

  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-section {
    padding: 15px;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 25px 20px;
  }

  .contact-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .radio-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-placeholder {
    padding: 40px 20px;
  }

  .member-image {
    height: 180px;
  }
  
  .member-image i {
    font-size: 4rem;
  }
  
  .member-description p {
    padding: 15px;
    font-size: 1rem;
  }
  
  .member-specialties li {
    padding: 10px 15px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 45vh;
    min-height: 300px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-content .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 20px 15px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-item i {
    font-size: 1.8rem;
    margin-top: 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }



  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
