/* Import Arabic Google Font */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

:root {
  --primary-color: #1a365d; /* Dark Blue */
  --secondary-color: #f59e0b; /* Warm Amber */
  --success-color: #25d366; /* WhatsApp Green */
  --success-hover: #20ba5a;
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header/Navigation */
header {
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-weight: 800;
  font-size: 24px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text span {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 80vh;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.badge {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

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

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: translateY(-8px);
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-whatsapp {
  background-color: var(--success-color);
  color: white;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: var(--success-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Service Highlights Section */
.features-section {
  background-color: white;
  padding: 80px 20px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(26, 54, 93, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(26, 54, 93, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-size: 28px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Locations Section */
.locations-section {
  padding: 80px 20px;
  background-color: var(--bg-color);
}

.locations-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.locations-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.location-tag {
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.location-tag:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.1);
}

.location-tag svg {
  color: var(--secondary-color);
  width: 20px;
  height: 20px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  color: white;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: var(--success-hover);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

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

.footer-content p {
  opacity: 0.8;
  font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .feature-card {
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    align-self: center;
  }
}
