@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #007b5e;
  --secondary: #00a97f;
  --light: #f8f9fa;
  --dark: #003d2e;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  justify-content: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 98vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("travel-pattern.png") repeat;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 48px;
  margin: 20px 0;
  font-weight: 700;
}

.hero h2 {
  font-size: 24px;
  font-weight: 400;
}

.hero .arabic {
  font-family: "Arial", sans-serif;
  direction: rtl;
  font-size: 26px;
  margin-top: 15px;
  opacity: 0.9;
}

/* Section Styling */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
  font-size: 36px;
  position: relative;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

/* About Section Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  font-size: 18px;
  color: #555;
}

.about-logo-container {
  text-align: center;
}

.about-logo {
  max-width: 400px;
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Why Us */
.why-us {
  background: #f1f3f5;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-box {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
}

.why-box i {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 20px;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-container h2 {
  color: #fff;
}

.contact-container h2::after {
  background: #fff;
}

.contact a {
  color: white;
  text-decoration: none;
}

.contact .btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 35px;
  background: white;
  color: var(--primary);
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.contact .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* Float Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }
  .hero h1 {
    font-size: 36px;
  }

  .hero h2,
  .hero .arabic {
    font-size: 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-logo-container {
    order: 1;
    margin-bottom: 30px;
  }
}
