:root {
  --primary-color: #094000;
  --accent-color: #74c69d;
  --text-color: #2c2c2c;
  --light-bg: #f2f7f5;
  --white: #fff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tajawal", sans-serif;
  background: linear-gradient(to bottom right, #e8f5e9, #f1f8f6);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.container {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 130px;
  height: auto;
  margin-bottom: 1rem;
  animation: fadeIn 1.5s ease;
}

.logo p {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 500;
}

.coming-soon {
  margin: 2rem 0;
  animation: slideUp 1s ease-out;
}

.coming-soon img {
  width: 90px;
  margin-bottom: 1rem;
}

.coming-soon h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #555;
}

.contact-info {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  width: 100%;
  max-width: 700px;
  animation: fadeIn 2s ease;
}

.contact-section {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-section h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  /* width: 400px; */
}

.phone,
.website {
  color: var(--text-color);
  transition: 0.3s ease;
}

.website {
  text-decoration: none;
  font-weight: bold;
  color: var(--primary-color);
}

.website:hover,
.phone:hover {
  color: var(--accent-color);
  transform: scale(1.05);
}

.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-color),
    transparent
  );
  margin: 1.5rem 0;
}

.footer {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.icon {
  margin-left: 6px;
  color: var(--primary-color);
}
