/* General Styles */
body {
  font-family: 'Cairo', sans-serif; /* Assuming Cairo is available or a similar Arabic font */
  margin: 0;
  padding: 0;
  background-color: #f9f9f9; /* Light grey for overall background */
  color: #333; /* Dark grey for general text */
  direction: rtl; /* Right-to-left for Arabic content */
  text-align: right;
}

/* Header */
header {
  background-color: #1A2B42; /* Dark blue/navy from Egy Tal */
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #FDCB00; /* Gold/yellow accent color */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('https://picsum.photos/1920/800?random=1') no-repeat center/cover; /* Placeholder image */
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: white;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero .btn {
  padding: 12px 30px;
  background-color: #FDCB00; /* Gold/yellow accent color */
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  color: #1A2B42; /* Dark text on gold button */
}

.hero .btn:hover {
  background-color: #e0b300;
  transform: translateY(-3px);
}

/* Sections */
.section-padding {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  font-size: 36px;
  color: #1A2B42; /* Dark blue/navy */
  margin-bottom: 40px;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FDCB00; /* Gold/yellow accent */
  border-radius: 2px;
}

/* Feature/Service Cards */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

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

.card h3 {
  color: #1A2B42; /* Dark blue/navy */
  margin-bottom: 15px;
  font-size: 22px;
}

.card p {
  line-height: 1.8;
  font-size: 16px;
  color: #555;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Contact Form */
.contact-form, .booking-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 40px auto;
}

.contact-form input, .contact-form textarea, .contact-form button,
.booking-form input, .booking-form select, .booking-form button {
  width: calc(100% - 24px); /* Account for padding */
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
  direction: rtl;
  text-align: right;
}

.contact-form button, .booking-form button {
  background-color: #FDCB00; /* Gold/yellow accent */
  color: #1A2B42; /* Dark text */
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  width: 100%;
}

.contact-form button:hover, .booking-form button:hover {
  background-color: #e0b300;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: white;
  border-radius: 50%; /* Circular icons */
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.fa-facebook { background:#3b5998; }
.fa-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.fa-linkedin { background:#0A66C2; }
.fa-whatsapp { background:#25D366; }

/* Footer */
footer {
  background-color: #1A2B42; /* Dark blue/navy */
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 14px;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h2 {
    font-size: 32px;
  }
  .section-heading {
    font-size: 28px;
  }
  .grid-container {
    grid-template-columns: 1fr;
  }
}

