/* --- Global Containers --- */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* --- Contact Hero --- */
.hero-contact {
  background: linear-gradient(rgba(9, 13, 150, 0.9), rgba(9, 13, 150, 0.7)), url('images/GreenIllustrativeAccountingServiceWebsite-5.png') center/cover;
  padding: 120px 0;
  text-align: center;
  color: white;
}

.hero-contact h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-contact p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0;
  background: #f9fbff;
}

.contact-info {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.contact-info h2 {
  color: #090d96;
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

/* --- Info Grid --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-10px);
}

.info-item .icon {
  width: 60px;
  height: 60px;
  background: #f0f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090d96;
  margin: 0 auto 20px;
}

.info-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #090d96;
  text-transform: uppercase;
}

.info-item p {
  color: #555;
  font-weight: 600;
}

/* --- Map --- */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid white;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact h1 {
    font-size: 2.5rem;
  }
}

/* RTL */
[lang="ar"] .contact-info,
[lang="ar"] .info-item {
  text-align: center;
}