.contact-page {
  background-color: #ffffff;
}

.contact-top {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.contact-text {
  flex: 1 1 300px;
}

.contact-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 900;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.detail-item i {
  font-size: 1.5rem;
  color: #4a7c8c;
  width: 30px;
  text-align: center;
}

.detail-item strong {
  display: block;
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 1px;
}

.detail-item p {
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-action {
  flex: 1 1 200px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
}

.btn-call {
  background-color: #1a1a1a;
  color: white;
  padding: 20px 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
  border-radius: 6px;
}

.btn-call:hover {
  background-color: #4a7c8c;
}

.map-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

.map-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-container {
  width: 100%;
  line-height: 0;
  border-top: 1px solid #eee;
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 400px; /* Desktop */
  display: block;
  border: 0;
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
  .contact-grid {
    flex-direction: column;
    gap: 20px;
  }

  .contact-action {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .map-container iframe {
    height: 350px;
  }
  .contact-top {
    padding: 120px 20px 40px 20px;
  }
}

@media (max-width: 600px) {
  .contact-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .contact-top {
    padding: 100px 15px 30px 15px;
  }

  .detail-item p {
    font-size: 1rem;
  }

  .detail-item strong {
    font-size: 0.7rem;
  }

  .btn-call {
    padding: 15px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .map-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .map-container iframe {
    height: 300px;
  }
  .map-section {
    padding: 30px 15px 30px 15px;
  }
}
