@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  text-align: right;
}

/* Dark Navbar with semi-transparent background */
.transparent-navbar {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(0, 0, 0, 0.8) 100%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228, 185, 91, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
}

.transparent-navbar:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%) !important;
  border-bottom: 1px solid rgba(228, 185, 91, 0.3);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

/* Add semi-transparent background only when mobile menu is open */
.transparent-navbar .navbar-collapse.show {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  margin-top: 10px;
  padding: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(228, 185, 91, 0.2);
}

.transparent-navbar .navbar-collapse.collapsing {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  margin-top: 10px;
  padding: 15px;
}

/* Enhanced mobile menu styling */
.transparent-navbar .navbar-collapse.show .navbar-nav .nav-link {
  padding: 12px 20px !important;
  margin: 5px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9) !important;
}

.transparent-navbar .navbar-collapse.show .navbar-nav .nav-link:hover {
  background: rgba(228, 185, 91, 0.2) !important;
  border-color: rgba(228, 185, 91, 0.4);
  transform: translateY(-2px);
  color: #e4b95b !important;
}

.transparent-navbar .navbar-collapse.show .navbar-nav .nav-link.active {
  background: rgba(228, 185, 91, 0.3) !important;
  border-color: rgba(228, 185, 91, 0.6);
  color: #e4b95b !important;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("./img/دجاج مضغوط.jpg"),
    linear-gradient(135deg, #8B4513 0%, #654321 50%, #8B4513 100%);
  background-position: center 60%, center 60%, center;
  background-size: 75% auto, 75% auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.hero-section .row {
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
  color: #ffffff;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Navbar Brand */
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95) !important;
  transition: all 0.3s ease;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.navbar-brand:hover {
  color: #e4b95b !important;
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 20px rgba(228, 185, 91, 0.8);
}

.navbar-brand img {
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
}

.navbar-brand:hover img {
  border-color: #e4b95b;
  box-shadow: 0 0 20px rgba(228, 185, 91, 0.8);
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1rem;
  padding: 0.6rem 0.8rem !important;
  border-radius: 6px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.navbar-nav .nav-link:hover {
  color: #e4b95b !important;
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 15px rgba(228, 185, 91, 0.8);
}

.navbar-nav .nav-link.active {
  color: #e4b95b !important;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(228, 185, 91, 0.5);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 15px rgba(228, 185, 91, 0.9);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(228, 185, 91, 0.7);
}

/* Button Styling */
.btn-primary {
  background-color: #e4b95b;
  border-color: #e4b95b;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #d4a54a;
  border-color: #d4a54a;
  transform: translateY(-2px);
}

/* Section Spacing */
section {
  padding-top: 80px;
  min-height: 100vh;
}

#home {
  padding-top: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    background-size: 90% auto, 90% auto, cover;
    background-position: center 50%, center 50%, center;
  }
  
  .hero-section .container {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .transparent-navbar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(0, 0, 0, 0.9) 100%) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  
  .transparent-navbar .navbar-collapse.show {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  }
  
  .transparent-navbar .navbar-collapse.collapsing {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
  }
  
  .navbar-nav .nav-link {
    margin: 5px 10px;
    font-size: 1rem;
    text-align: center;
    border-radius: 8px;
  }
  
  .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 185, 91, 0.3);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  section {
    min-height: auto;
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    background-size: 95% auto, 95% auto, cover;
    background-position: center 45%, center 45%, center;
  }
  
  .hero-section .container {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .navbar-nav .nav-link {
    margin: 5px 0;
    text-align: center;
  }
}
/* Contact Section - Dark Theme */
.contact-section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(228, 185, 91, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228, 185, 91, 0.05) 0%, transparent 50%),
    url("./img/مشكل مقبلات.jpg");
  background-size: cover, cover, cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(228, 185, 91, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
  50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}

.contact-section-dark .container {
  position: relative;
  z-index: 3;
}

.contact-main-title-dark {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, #ffffff, #e4b95b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.title-underline-dark {
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  margin: 0 auto 4rem;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(228, 185, 91, 0.5);
}

.contact-form-container-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(228, 185, 91, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.contact-form-container-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(228, 185, 91, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.form-control-dark {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  text-align: right;
  direction: rtl;
}

.form-control-dark:focus {
  border-color: #e4b95b;
  background: rgba(255,255,255,0.1);
  box-shadow: 
    0 0 0 3px rgba(228, 185, 91, 0.2),
    0 0 20px rgba(228, 185, 91, 0.3);
  transform: translateY(-2px);
}

.form-control-dark::placeholder {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  text-align: right;
  direction: rtl;
}

.textarea-dark {
  resize: vertical;
  min-height: 140px;
  text-align: right;
  direction: rtl;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.input-focus-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  transition: width 0.4s ease;
}

.form-control-dark:focus + .input-focus-effect {
  width: 100%;
}

.btn-send-dark {
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(228, 185, 91, 0.3);
}

.btn-send-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(228, 185, 91, 0.4);
  background: linear-gradient(135deg, #d4a54a, #c4954a);
}

.btn-send-dark:active {
  transform: translateY(-2px);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-send-dark:hover .btn-icon {
  transform: translateX(-5px);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.contact-info-card-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(228, 185, 91, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card-dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border-color: #e4b95b;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 185, 91, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card-dark:hover .card-glow {
  opacity: 1;
}

.contact-info-icon-dark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.contact-info-icon-dark.location {
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  box-shadow: 0 10px 30px rgba(228, 185, 91, 0.3);
}

.contact-info-icon-dark.phone {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.contact-info-icon-dark.email {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.contact-info-icon-dark i {
  color: white;
  font-size: 1.8rem;
}

.contact-info-card-dark:hover .contact-info-icon-dark {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-title-dark {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-info-details-dark {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-info-details-dark p {
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info-card-dark:hover .contact-info-details-dark p {
  color: rgba(255,255,255,0.95);
}

.contact-info-details-dark strong {
  color: #e4b95b;
  font-weight: 600;
  flex-shrink: 0;
}

/* Fix Phone Numbers Direction in Contact Section */
.contact-info-details-dark span[dir="ltr"] {
  direction: ltr;
  display: inline-block;
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-weight: 500;
  unicode-bidi: embed;
}

/* Special styling for address section */
.contact-info-card-dark.location-card .contact-info-details-dark p {
  justify-content: center;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

/* Special styling for phone section */
.contact-info-card-dark.phone-card .contact-info-details-dark p {
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.contact-info-card-dark.phone-card .contact-info-details-dark strong {
  margin-left: 0.5rem;
}

/* Special styling for email section */
.contact-info-card-dark.email-card .contact-info-details-dark p {
  word-break: break-word;
  justify-content: center;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}
/* About Section - Dark Theme */
.about-section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(228, 185, 91, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228, 185, 91, 0.05) 0%, transparent 50%),
    url("./img/معصوب.jpg");
  background-size: cover, cover, cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.about-section-dark .container {
  position: relative;
  z-index: 3;
}

.about-content-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(228, 185, 91, 0.2);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-text-container {
  position: relative;
  z-index: 2;
}

.about-main-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 2rem;
  text-align: justify;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(228, 185, 91, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(228, 185, 91, 0.1);
  transform: translateX(-5px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 1rem;
}

.feature-text {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

.image-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 185, 91, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-container:hover .image-glow {
  opacity: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(228, 185, 91, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #e4b95b;
}

.overlay-content span {
  font-size: 1.2rem;
  font-weight: 600;
}
/* Services Section - Dark Theme */
.services-section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(228, 185, 91, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228, 185, 91, 0.05) 0%, transparent 50%),
    url("./img/مشكل فرن.jpg");
  background-size: cover, cover, cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.services-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.services-section-dark .container {
  position: relative;
  z-index: 3;
}

.service-card-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(228, 185, 91, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

/* تحسين بطاقات الخدمات في وضع الهاتف */
@media (max-width: 768px) {
  .service-card-dark {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(228, 185, 91, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .service-card-dark:hover {
    background: rgba(0, 0, 0, 0.6) !important;
    border-color: #e4b95b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
}

.service-card-dark:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border-color: #e4b95b;
}

.service-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 185, 91, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-dark:hover .service-card-glow {
  opacity: 1;
}

.service-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-dark:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(228, 185, 91, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-dark:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(228, 185, 91, 0.3);
}

.service-icon i {
  color: white;
  font-size: 2rem;
}

.service-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.service-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-description {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(228, 185, 91, 0.2);
  color: #e4b95b;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(228, 185, 91, 0.3);
}
/* Menu Section - Dark Theme */
.menu-section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(228, 185, 91, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228, 185, 91, 0.05) 0%, transparent 50%),
    url("./img/مشكل خضار.jpg");
  background-size: cover, cover, cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.menu-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.menu-section-dark .container {
  position: relative;
  z-index: 3;
}

.menu-card-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(228, 185, 91, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

/* تحسين البطاقات في وضع الهاتف */
@media (max-width: 768px) {
  .menu-card-dark {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(228, 185, 91, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .menu-card-dark:hover {
    background: rgba(0, 0, 0, 0.6) !important;
    border-color: #e4b95b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
}

.menu-card-dark:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border-color: #e4b95b;
}

.menu-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 185, 91, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-card-dark:hover .menu-card-glow {
  opacity: 1;
}

.menu-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card-dark:hover .menu-image {
  transform: scale(1.1);
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(228, 185, 91, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-card-dark:hover .menu-overlay {
  opacity: 1;
}

.menu-hover-content {
  text-align: center;
  color: white;
}

.menu-hover-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #e4b95b;
}

.menu-hover-content span {
  font-size: 1rem;
  font-weight: 600;
}

.menu-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.menu-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.menu-rating {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.menu-rating i {
  color: #e4b95b;
  font-size: 0.9rem;
}
/* Branches Section - Dark Theme */
.branches-section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(228, 185, 91, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228, 185, 91, 0.05) 0%, transparent 50%),
    url("./img/ذبائح مندي.jpg");
  background-size: cover, cover, cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.branches-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.branches-section-dark .container {
  position: relative;
  z-index: 3;
}

.branch-card-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(228, 185, 91, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* تحسين بطاقات الفروع في وضع الهاتف */
@media (max-width: 768px) {
  .branch-card-dark {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(228, 185, 91, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .branch-card-dark:hover {
    background: rgba(0, 0, 0, 0.6) !important;
    border-color: #e4b95b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
}

.branch-card-dark:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border-color: #e4b95b;
}

.branch-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 185, 91, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.branch-card-dark:hover .branch-card-glow {
  opacity: 1;
}

.branch-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(228, 185, 91, 0.3);
  transition: all 0.4s ease;
}

.branch-card-dark:hover .branch-icon {
  transform: scale(1.1) rotate(5deg);
}

.branch-icon i {
  color: white;
  font-size: 2rem;
}

.branch-content {
  position: relative;
  z-index: 2;
}

.branch-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.branch-address {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.branch-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.branch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid;
}

.branch-btn.call {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border-color: #4CAF50;
}

.branch-btn.call:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.branch-btn.location {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  border-color: #2196F3;
}

.branch-btn.location:hover {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.branch-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 4.5rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(228, 185, 91, 0.3);
  position: relative;
  overflow: hidden;
}

.branch-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(228, 185, 91, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e4b95b;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #f4d03f, #e4b95b, #d4a54a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(228, 185, 91, 0.5);
  position: relative;
}

.stat-number::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(228, 185, 91, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover .stat-number::before {
  opacity: 1;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: rgba(228, 185, 91, 0.9);
}
/* Footer - Dark Theme */
.footer-dark {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(228, 185, 91, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228, 185, 91, 0.03) 0%, transparent 50%);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(228, 185, 91, 0.2);
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(26,26,26,0.9));
  z-index: 1;
}

.footer-dark .container {
  position: relative;
  z-index: 2;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e4b95b;
}

.footer-brand {
  color: #e4b95b;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.footer-description {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877F2, #166FE5);
  border-color: #1877F2;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
  border-color: #E4405F;
}

.social-icon.snapchat {
  background: linear-gradient(135deg, #FFFC00, #FFF700);
  border-color: #FFFC00;
  color: #333;
}

.social-icon i {
  color: white;
  font-size: 1rem;
}

.social-icon.snapchat i {
  color: #333;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.footer-title {
  color: #e4b95b;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #e4b95b, #d4a54a);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-right: 1rem;
}

.footer-links a::before {
  content: '▶';
  position: absolute;
  right: 0;
  color: #e4b95b;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: #e4b95b;
  padding-right: 1.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.contact-item i {
  color: #e4b95b;
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.contact-item span {
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #e4b95b;
}

/* Fix Phone Numbers Direction in Footer */
.footer-contact .contact-item span[dir="ltr"] {
  direction: ltr;
  display: inline-block;
  text-align: left;
  font-family: 'Arial', sans-serif;
  font-weight: 500;
  unicode-bidi: embed;
}

/* Fix Copyright Text Direction */
.copyright-text[dir="rtl"] {
  direction: rtl;
  text-align: right;
  unicode-bidi: embed;
}

.copyright-text span[dir="ltr"] {
  direction: ltr;
  display: inline;
  unicode-bidi: embed;
}

/* Common Dark Section Styles */
.section-title-dark {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, #ffffff, #e4b95b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.floating-particles-about,
.floating-particles-services,
.floating-particles-menu,
.floating-particles-branches {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-main-title-dark,
  .section-title-dark {
    font-size: 2.5rem;
  }
  
  .contact-form-container-dark,
  .about-content-dark,
  .service-card-dark,
  .menu-card-dark,
  .branch-card-dark {
    margin-bottom: 2rem;
  }
  
  .contact-info-card-dark {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .btn-send-dark {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: 300px;
  }
  
  .service-content,
  .menu-content {
    padding: 1.5rem;
  }
  
  .branch-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .branch-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-dark {
    padding: 40px 0 20px;
  }
  
  .footer-logo {
    justify-content: center;
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-contact {
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .copyright-text[dir="rtl"] {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-main-title-dark,
  .section-title-dark {
    font-size: 2rem;
  }
  
  .contact-form-container-dark,
  .about-content-dark {
    padding: 1.5rem;
  }
  
  .form-control-dark {
    padding: 1rem 1.2rem;
  }
  
  .about-main-text {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 0.8rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .copyright-text {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-social {
    gap: 0.8rem;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
}