/* Full CSS extracted from temp.html */
body {
  box-sizing: border-box;
}

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

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* =====================================================
   PREMIUM AUTO-CAROUSEL STYLES
   ===================================================== */

.premium-carousel-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1A2F 0%, #1a3a5f 50%, #0A1A2F 100%);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide-item {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out, filter 0.5s ease;
  filter: brightness(0.7) saturate(1.2);
}

.carousel-slide-item.active img {
  transform: scale(1.1);
}

.carousel-slide-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 26, 47, 0.3) 0%,
    rgba(10, 26, 47, 0.1) 40%,
    rgba(10, 26, 47, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.carousel-slide-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 26, 47, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Slide Content Overlay */
.slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 90%;
  max-width: 800px;
}

.carousel-slide-item.active .slide-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.slide-content h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  letter-spacing: 1px;
}

.slide-content p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

/* Gradient Overlays */
.carousel-gradient-left,
.carousel-gradient-right {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.carousel-gradient-left {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 26, 47, 0.8) 0%, transparent 100%);
}

.carousel-gradient-right {
  right: 0;
  background: linear-gradient(-90deg, rgba(10, 26, 47, 0.8) 0%, transparent 100%);
}

/* Floating Particles */
.particles-container {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 165, 79, 0.6);
  border-radius: 50%;
  animation: floatParticle 15s infinite linear;
  box-shadow: 0 0 10px rgba(212, 165, 79, 0.8);
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Progress Bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 20;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4A54F, #f5d78e, #D4A54F);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  transition: width 0.1s linear;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Navigation Dots */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.carousel-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #D4A54F, #f5d78e);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: transparent;
  border-color: #D4A54F;
  transform: scale(1.3);
}

.carousel-dot.active::before {
  transform: scale(0.6);
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: white;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.carousel-nav:hover {
  background: rgba(212, 165, 79, 0.3);
  border-color: #D4A54F;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(212, 165, 79, 0.4);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 30px;
}

.carousel-prev:hover svg {
  transform: translateX(-3px);
}

.carousel-next {
  right: 30px;
}

.carousel-next:hover svg {
  transform: translateX(3px);
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  z-index: 20;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-counter #currentSlide {
  color: #D4A54F;
  font-size: 1.5rem;
  min-width: 1.5rem;
  text-align: center;
}

.counter-divider {
  color: rgba(255, 255, 255, 0.4);
}

/* Thumbnail Strip */
.thumbnail-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 26, 47, 0.95) 30%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  z-index: 15;
  overflow-x: auto;
  scrollbar-width: none;
}

.thumbnail-strip::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  width: 80px;
  height: 55px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  flex-shrink: 0;
  position: relative;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 165, 79, 0) 0%, rgba(212, 165, 79, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}

.thumbnail:hover img {
  transform: scale(1.1);
}

.thumbnail:hover::after {
  opacity: 1;
}

.thumbnail.active {
  opacity: 1;
  border-color: #D4A54F;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(212, 165, 79, 0.4);
}

/* Glowing Ring Animation for Active Thumbnail */
.thumbnail.active::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  background: linear-gradient(135deg, #D4A54F, #f5d78e, #D4A54F);
  z-index: -1;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    filter: blur(3px);
  }
  50% {
    opacity: 1;
    filter: blur(5px);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .premium-carousel-section {
    height: 70vh;
    min-height: 450px;
  }

  .carousel-nav {
    width: 44px;
    height: 44px;
  }

  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .carousel-prev {
    left: 15px;
  }

  .carousel-next {
    right: 15px;
  }

  .carousel-dots {
    bottom: 25px;
    gap: 10px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .carousel-gradient-left,
  .carousel-gradient-right {
    width: 50px;
  }

  .slide-content {
    bottom: 20%;
  }
}

@media (max-width: 480px) {
  .premium-carousel-section {
    height: 60vh;
    min-height: 350px;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .carousel-nav svg {
    width: 16px;
    height: 16px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .carousel-dots {
    bottom: 20px;
    gap: 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .slide-content {
    bottom: 15%;
    width: 95%;
  }

  .slide-content h2 {
    font-size: 1.2rem;
  }

  .slide-content p {
    font-size: 0.8rem;
  }

  .carousel-gradient-left,
  .carousel-gradient-right {
    width: 30px;
  }
}

/* =====================================================
   END PREMIUM AUTO-CAROUSEL STYLES
   ===================================================== */

body {
  font-family: 'Cairo', sans-serif;
  color: #0A1A2F;
  background: #ffffff;
  line-height: 1.6;
}

body.en {
  font-family: 'Poppins', sans-serif;
}

.main-wrapper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 26, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #25D366;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #0ec97b;
  border-bottom-color: #D4A54F;
}

.lang-toggle {
  background: #006E41;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.lang-toggle:hover {
  background: #005532;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  width: 40px;
  height: 40px;
  position: relative;
}

.mobile-menu-btn:hover {
  opacity: 0.8;
}

/* Hamburger Icon Animation */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 20px;
  position: relative;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  color: white;
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero Carousel Background */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.85) 0%, rgba(26, 58, 95, 0.85) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23D4A54F" opacity="0.1"/></svg>');
  opacity: 0.1;
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  max-width: 425px;
}

.btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-primary {
  background: #D4A54F;
  color: #0A1A2F;
}

.btn-primary:hover {
  background: #c59540;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Button Specific Styling */
.whatsapp-link {
  position: relative;
  overflow: hidden;
}

.whatsapp-link::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;
}

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

/* Section Styles */
.section {
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-alt {
  background: #f8f9fa;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #0A1A2F;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D4A54F;
}

/* About Section */
.about-content {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 3rem;
  align-items: center;
  text-align: justify;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.why-choose {
  margin-top: 3rem;
}

.why-choose h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0A1A2F;
}

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

.reason-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.reason-icon {
  font-size: 2rem;
  color: #006E41;
  flex-shrink: 0;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-top: 4px solid #006E41;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: #D4A54F;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0A1A2F;
}

.service-card p {
  color: #555;
  line-height: 1.7;
}

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

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: scale(1.03);
}

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

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0A1A2F;
}

.project-content p {
  color: #555;
  line-height: 1.6;
}

/* Clients Section */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client-logo {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #006E41;
  transition: transform 0.3s;
}

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

/* Certificates Section */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.certificate-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

.certificate-card:hover {
  transform: translateY(-5px);
}

.certificate-icon {
  font-size: 3rem;
  color: #D4A54F;
  margin-bottom: 1rem;
}

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

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #006E41 0%, #0A1A2F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0A1A2F;
}

.blog-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: #006E41;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact Section */
/* .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-icon {
  font-size: 1.5rem;
  color: #006E41;
  flex-shrink: 0;
}

.contact-form {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0A1A2F;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #006E41;
}

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

.recaptcha-placeholder {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  color: #888;
  margin-bottom: 1.5rem;
  border: 1px dashed #ddd;
} */

/* Quote Section */
/* .quote-section {
  background: linear-gradient(135deg, #0A1A2F 0%, #1a3a5f 100%);
  color: white;
  text-align: center;
}

.quote-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.quote-form .form-group input,
.quote-form .form-group textarea {
  background: rgba(255, 255, 255, 0.9);
} */

/* Footer */
.footer {
  background: #0A1A2F;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #0ec97b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a:not(.social-link) {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #D4A54F;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #006E41;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #005532;
}

.footer-map {
  width: 100%;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

[dir="rtl"] .floating-buttons {
  right: auto;
  left: 2rem;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #006E41;
}

/* Ad Spaces */
.ad-space {
  background: #f8f9fa;
  border: 2px dashed #ddd;
  padding: 2rem;
  text-align: center;
  color: #888;
  margin: 2rem 0;
  border-radius: 8px;
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.5rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 970px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: #0A1A2F;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    z-index: 1000;
    align-items: flex-start;
    /* Default for LTR (English): slide from right */
    right: -100%;
    left: auto;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
  }

  [dir="rtl"] .nav-menu {
    /* RTL (Arabic): slide from left */
    right: auto;
    left: -100%;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  [dir="rtl"] .nav-menu.active {
    right: auto;
    left: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:hover,
  .nav-link.active {
    border-bottom-color: #D4A54F;
    padding-left: 0.5rem;
  }

  [dir="rtl"] .nav-link:hover,
  [dir="rtl"] .nav-link.active {
    padding-left: 0;
    padding-right: 0.5rem;
  }

  .lang-toggle {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 1rem;
  }

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

  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }

  [dir="rtl"] .floating-buttons {
    right: auto;
    left: 1rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .nav-menu {
    width: 85%;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

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

  .service-card,
  .project-card,
  .blog-card {
    margin: 0;
  }
}

