:root {
  --primary-color: #098150;
  --button-color: #ecaa33;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
}

* {
  font-family: "Cairo", sans-serif;
}

body {
  direction: rtl;
  text-align: right;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-color), #0a9b5c);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(9, 129, 80, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color), #0a9b5c);
  color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.logo {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--button-color);
  border-radius: 2px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(9, 129, 80, 0.1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(9, 129, 80, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #0a9b5c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.btn-custom {
  background: var(--button-color);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-custom:hover {
  background: #d4941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(236, 170, 51, 0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128c7e;
  color: white;
}

.btn-location {
  background: var(--primary-color);
  color: white;
}

.btn-location:hover {
  background: #076b43;
  color: white;
}

.contact-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 4rem 0;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  top: 60%;
  right: 80%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  top: 40%;
  right: 60%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

footer {
  background: var(--text-dark);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    text-align: center;
  }

  .logo {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .service-card {
    margin-bottom: 2rem;
  }
}

.step-card {
  min-width: 200px;
  margin-right: 1rem;
}
.arrow {
  font-size: 2rem;
  color: #0d6efd;
  margin: auto 1rem;
}
.step-flow {
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 1rem;
}
