* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

body {
  background-color: #ffffff;
  color: #2d2d2d;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 50px;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 50px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.logo-text-en {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
  color: #2d2d2d;
}

.navbar.scrolled .logo-text-en {
  color: #4a4a4a;
}

/* Logo SVG styling */
.logo-svg .logo-main,
.logo-svg .logo-accent {
  transition: fill 0.3s;
}

.navbar:not(.scrolled) .logo-svg .logo-main,
.navbar:not(.scrolled) .logo-svg .logo-accent {
  fill: #fff !important;
}

.navbar.scrolled .logo-svg .logo-main {
  fill: #363639 !important;
}

.navbar.scrolled .logo-svg .logo-accent {
  fill: #919396 !important;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

.navbar.scrolled .nav-links a {
  color: #2d2d2d;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6e6e6e 0%, #bdbdbd 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Header with Background */
.header {
  height: 100vh;
  background: linear-gradient(rgba(45, 45, 45, 0.7),
      rgba(45, 45, 45, 0.7)),
    url("../images/test.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center,
      rgba(201, 163, 58, 0.1) 0%,
      transparent 70%);
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3em;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  animation: wordFadeIn 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.15s);
}

@keyframes wordFadeIn {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 400;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #6e6e6e 0%, #bdbdbd 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  outline: none;
  transition: transform 0.3s ease;
}

.cta-button span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: skew(-20deg);
}

.cta-button:hover span {
  transform: skew(20deg);
  background: linear-gradient(90deg, #4a4a4a 0%, #a0a0a0 100%);
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

/* Sections */
.section {
  padding: 100px 50px;
}

.section:nth-child(even) {
  background-color: #f5f5f5;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #2d2d2d;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6e6e6e 0%, #bdbdbd 100%);
  margin: 20px auto;
  border-radius: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(128, 128, 128, 0.2);
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  border-color: #70634e;
}

.service-card:hover .service-icon {
  color: #5a5140;
}

.service-icon {
  font-size: 3rem;
  color: #70634e;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d2d2d;
}

.service-description {
  color: #4a4a4a;
  line-height: 1.7;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: #ffffff;
  border-radius: 1px solid rgba(128, 128, 128, 0.721);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #70634e;
  display: block;
}

.stat-label {
  color: #4a4a4a;
  font-weight: 600;
  margin-top: 10px;
}

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

.contact-info {
  background: #eeeeee;
  padding: 40px;
  color: #2d2d2d;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #70634e;
  margin-left: 15px;
  width: 30px;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border: 1px solid rgba(128, 128, 128, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d2d2d;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #f5f5f5;
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
  background: #2d2d2d;
  color: #c4c4c4;
  padding: 50px;
  text-align: center;
}

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

span.logo-svg {
  height: auto;
  width: 7rem;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container>img[src="assets/images/map.webp"] {
  cursor: pointer;
}

/* Map Zoom Styles */
.map-zoom-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f0f0f0;
}

.map-zoom-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-zoom-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

.map-zoom-img.active {
  opacity: 1;
}

.map-zoom-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(45, 45, 45, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.map-zoom-container:hover .map-zoom-hint {
  opacity: 0;
}

.map-zoom-container.zoomed-in {
  cursor: zoom-out;
}

.map-zoom-container.zoomed-out {
  cursor: zoom-in;
}

/* Map Center Tooltip */
.map-center-tooltip {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

.map-center-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.6) transparent transparent transparent;
}

/* Map Directions Button */
.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #70634e 0%, #8a7a5f 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(112, 99, 78, 0.3);
}

.map-directions-btn:hover {
  background: linear-gradient(135deg, #5a5140 0%, #70634e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 99, 78, 0.4);
}

.map-directions-btn i {
  font-size: 1.2rem;
}

/* --- Improved Mobile Nav & Hamburger Styles --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #70634e;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1101;
  transition: color 0.3s;
}

.nav-toggle:focus {
  outline: none;
  color: #bdbdbd;
}

.nav-toggle.open i,
.nav-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
  color: #2d2d2d;
  transition: transform 0.3s, color 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .logo-text {
    font-size: 0.75rem;
  }

  .logo-text-en {
    font-size: 0.6rem;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 75vw;
    max-width: 340px;
    height: 100vh;
    background: transparent;
    box-shadow: -2px 0 24px rgba(45, 45, 45, 0.08);
    z-index: 1100;
    padding: 90px 30px 30px 30px;
    opacity: 0;
    pointer-events: none;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
  }

  .nav-links.nav-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    right: 0;
    background-color: white;
  }

  .nav-links li {
    margin-bottom: 30px;
    text-align: right;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }

  .nav-links a {
    color: #363639;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 0;
    display: block;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }

  .nav-links a:hover {
    background: linear-gradient(90deg, #e3e3e3 0%, #f8f8f8 100%);
    color: #70634e;
  }

  .navbar.scrolled .nav-links a {
    color: #2d2d2d;
  }

  .navbar {
    background: transparent;
  }
}


/* Contact Title */
.contact-title {
  color: #70634e;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Form Title */
.form-title {
  color: #2d2d2d;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
}


/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


/* Contact Links */
.contact-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #70634e;
}

.contact-link:hover i {
  transform: scale(1.1);
}

.contact-item i {
  transition: transform 0.3s ease;
}


/* Map Zoom Controls */
.map-zoom-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 15;
}

.map-zoom-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #2d2d2d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-zoom-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.map-zoom-btn:active {
  transform: scale(0.95);
}
