/* ===== BASE STYLES ===== */
html, body {
  overflow-x: hidden;
  background: #0a0a0a;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
  padding-top: 0 !important;
  position: relative;
}

/* ===== ENHANCED CURSOR EFFECT ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: rgba(212, 175, 55, 0.8); /* دهبي شفاف */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.05s ease;
}




.cursor.hover {
  transform: scale(1.5);
  background: rgba(212, 175, 55, 0.2);
  border-color: #fff;
}

/* ===== ENHANCED NAVIGATION ===== */
.fixed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
   justify-content: space-between; /* يوسط كل العناصر أفقيًا */
  align-items: center;
  padding: 0.6em 2vw 0.6em 2vw;
  z-index: 1000;
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.fixed-navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(30px);
  padding: 0.5rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #d4af37;
  font-weight: bold;
  letter-spacing: 2px;
  animation: logoGlow 3s ease-in-out infinite alternate;
  order: 1;
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5)); }
  100% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8)); }
}

.logo-image {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.6));
}

.nav-links {
  order: 2;
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-links li {
  position: relative;
  overflow: hidden;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, transparent, transparent);
  border: 1px solid transparent;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links li 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;
}

.nav-links li a:hover::before {
  left: 100%;
}

.nav-links li a:hover {
  color: #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* ===== ENHANCED HERO SLIDER ===== */
.hero-slider-section {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-slider {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  z-index: 1;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 1;
}

.hero-overlay {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.hero-slider-content {
  margin-left: 8vw;
  max-width: 700px;
  animation: heroContentSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes heroContentSlideIn {
  from {
    opacity: 0;
    transform: translateX(-100px) translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.hero-slider-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d4af37;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% { text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3); }
  100% { text-shadow: 0 4px 30px rgba(212, 175, 55, 0.6); }
}

.hero-slider-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 4px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes titleSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 500px;
  animation: descFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

@keyframes descFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a0a0a;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  animation: btnSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

@keyframes btnSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-slider-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.hero-slider-btn:hover::before {
  left: 100%;
}

.hero-slider-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.play-icon {
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== ENHANCED WELCOME SECTION ===== */
.welcome-section-pixel {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}

.welcome-img {
  flex: 1;
  background: url('images/about.jpg') center center/cover no-repeat;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.3) 100%);
  transition: opacity 0.6s ease;
}

.welcome-img:hover::before {
  opacity: 0.5;
}

.welcome-content {
  flex: 1;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.welcome-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.welcome-main {
  padding: 4rem;
  max-width: 600px;
}

.welcome-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  position: relative;
}

.welcome-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  animation: titleUnderline 1s ease-out 0.5s both;
}

@keyframes titleUnderline {
  to { width: 200px; }
}

.welcome-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  border-radius: 2px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.welcome-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.welcome-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.welcome-text p {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.welcome-text p:nth-child(1) { animation-delay: 0.2s; }
.welcome-text p:nth-child(2) { animation-delay: 0.4s; }
.welcome-text p:nth-child(3) { animation-delay: 0.6s; }
.welcome-text p:nth-child(4) { animation-delay: 0.8s; }

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

/* ===== ENHANCED SERVICE SECTION ===== */
.service-section-pixel {
  width: 100%;
  min-height: 100vh;
   box-sizing: border-box;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 6rem 3rem;
  position: relative;
}

.service-section-pixel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.service-header-row-pixel {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.service-title-pixel {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.service-underline-pixel {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  border-radius: 2px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.service-desc-block-pixel {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin:0 auto;
}

.service-stat-block-pixel {
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  flex-shrink: 0;
}

.service-stat-block-pixel::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #d4af37, transparent, #d4af37);
  border-radius: 20px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.service-stat-pixel {
  font-size: 4rem;
  font-weight: 800;
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.service-stat-label-pixel {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 500;
}

/* ===== ENHANCED SERVICE VIDEOS ===== */
.service-images-row-pixel {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 4rem;
   flex-wrap: wrap;
}

.service-video {
  flex: 1;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.service-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%, rgba(212, 175, 55, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.service-video:hover {
  transform: translateY(-20px) scale(1.08);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

/* ===== ENHANCED TWO COLUMN SECTION ===== */
.twocol-section-pixel {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.twocol-images-row {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.twocol-image-block {
  flex: 1;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(10, 10, 10, 0.8));
  border-radius: 25px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.twocol-image-block::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  transition: top 0.6s ease;
}

.twocol-image-block:hover::before {
  top: 0;
}

.twocol-image-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.twocol-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

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

.twocol-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.twocol-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

/* ===== ENHANCED PORTFOLIO SECTION ===== */
.portfolio-section-pixel {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.portfolio-images-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.portfolio-img-main-custom {
  width: 500px;
  height: 600px;
  object-fit: cover;
  border-radius: 25px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.portfolio-img-main-custom:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
}

.portfolio-img-side-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-img-side-custom {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-img-side-custom:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.portfolio-title-highlight {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  border-radius: 2px;
  margin: 0 auto 2rem;
}

.portfolio-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== ENHANCED TEAM SECTION ===== */
.team-section-pixel {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.team-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.team-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  border-radius: 2px;
  margin: 0 auto 4rem;
}

.team-members-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.team-member-block {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(10, 10, 10, 0.8));
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.team-member-block::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
  transition: top 0.6s ease;
}

.team-member-block:hover::before {
  top: 0;
}

.team-member-block:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.team-member-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #d4af37;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.team-member-img:hover {
  transform: scale(1.1);
  border-color: #f4d03f;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.team-member-name {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.team-member-role {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-section-pixel {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.contact-imgs-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}

.custom-contact-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.custom-contact-img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
}

.contact-content-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(10, 10, 10, 0.95));
  position: relative;
}

.contact-content-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.contact-info-list-pixel {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list-pixel li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-list-pixel li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
}

.contact-info-list-pixel li:hover::before {
  left: 100%;
}

.contact-info-list-pixel li:hover {
  transform: translateX(10px);
  background: rgba(212, 175, 55, 0.1);
}

.contact-icon-pixel {
  font-size: 1.5rem;
  color: #d4af37;
  margin-right: 1rem;
  animation: iconFloat 2s ease-in-out infinite alternate;
}

@keyframes iconFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-5px); }
}

.contact-info-list-pixel li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ===== ENHANCED FOOTER ===== */
.footer-pixel {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 4rem 2rem 2rem;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-pixel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0a0a0a;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.footer-contact {
  text-align: center;
}

.contact-item {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.contact-label {
  color: #d4af37;
  font-weight: 600;
  margin-right: 0.5rem;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  width: 100%;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

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

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #d4af37;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.particle:nth-child(odd) {
  animation-duration: 12s;
  animation-delay: -2s;
}

.particle:nth-child(even) {
  animation-duration: 18s;
  animation-delay: -5s;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 1200px) {
  .hero-slider-title { font-size: 3.5rem; }
  .service-title-pixel, .contact-title, .portfolio-title { font-size: 3rem; }
}

@media (max-width: 900px) {
  .fixed-navbar { padding: 0.8rem 2rem; }
  .nav-links { display: none; }
  .nav-menu-toggle { display: flex !important; }
  
  .hero-slider-content { margin-left: 2rem; }
  .hero-slider-title { font-size: 2.5rem; }
  .hero-slider-subtitle { font-size: 1.5rem; }
  
  .welcome-section-pixel { flex-direction: column; }
  .welcome-main { padding: 2rem; }
  .welcome-title { font-size: 2.5rem; }
  
  .service-header-row-pixel { 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 2rem; 
  }
  .service-images-row-pixel { flex-direction: column; }
  
  .twocol-images-row { flex-direction: column; gap: 2rem; }
  .portfolio-images-row { flex-direction: column; align-items: center; }
  .team-members-row { flex-direction: column; align-items: center; }
  .contact-section-pixel { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero-slider-title { font-size: 1.8rem; }
  .hero-slider-subtitle { font-size: 1.2rem; }
  .hero-slider-content { margin-left: 1rem; padding: 0 1rem; }
  
  .welcome-title { font-size: 2rem; }
  .service-title-pixel, .contact-title, .portfolio-title { font-size: 2rem; }
  .team-title { font-size: 2rem; }
  
  .service-video { height: 200px; }
  .twocol-img { height: 200px; }
  .portfolio-img-main-custom { width: 300px; height: 300px; }
  .portfolio-img-side-custom { width: 120px; height: 100px; }
  
  .team-member-img { width: 100px; height: 100px; }
  .custom-contact-img { height: 250px; }
}

/* ===== ENHANCED HAMBURGER MENU ===== */
.nav-menu-toggle {
   order: 3; /* يمين */
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 1101;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
}

.sliding-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sliding-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sliding-menu {
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(20px);
  padding: 4rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.sliding-menu-overlay.open .sliding-menu {
  transform: translateX(0);
}

.close-menu-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-menu-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  transform: rotate(90deg);
}

.sliding-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sliding-menu-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.sliding-menu-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.sliding-menu-links li a:hover::before {
  width: 100%;
}

.sliding-menu-links li a:hover {
  color: #d4af37;
  transform: translateX(10px);
}

/* ===== VIDEO OVERLAY ENHANCED ===== */
#video-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#video-overlay.show {
  opacity: 1;
  visibility: visible;
}

#video-overlay video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#video-overlay.show video {
  transform: scale(1);
}

#video-overlay .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #fff;
  background: rgba(212, 175, 55, 0.2);
  border: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#video-overlay .close-btn:hover {
  background: rgba(212, 175, 55, 0.4);
  transform: scale(1.1) rotate(90deg);
}

@media (max-width: 900px) {
  .fixed-navbar { padding: 0.8rem 2rem; }
  .nav-links { display: none; }
}
/* ===== BODY PADDING FOR NAVBAR ===== */
body { padding-top: 80px; }

/* ===== SUBTLE MOUSE HOVER EFFECTS ===== */
.subtle-hover {
  transition: all 0.3s ease;
}

.subtle-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced hover effects for images */
img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Subtle hover for cards and sections */
.twocol-image-block,
.team-member-block,
.project-card {
  transition: all 0.3s ease;
}

.twocol-image-block:hover,
.team-member-block:hover,
.project-card:hover {
  transform: translateY(-3px);
}

/* Enhanced button hover effects */
.hero-slider-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Subtle glow effect for interactive elements */
.nav-links li a:hover,
.social-link:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Smooth transitions for all interactive elements */
* {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .service-header-row-pixel {
    flex-direction: column;
    align-items: center; /* وسط العناصر */
    text-align: center;  /* وسط النصوص */
  }

  .service-desc-block-pixel {
    max-width: 100%;
    margin-top: 1rem;
  }

  .service-stat-block-pixel {
    margin-top: 2rem;
  }

  .service-images-row-pixel {
    flex-direction: column;
    align-items: center;
  }

  .service-video {
    max-width: 90%;
  }
}
