/* Main container with flex */
.container {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1200px;
  padding: 40px 20px;
  flex-wrap: wrap;
  /* For responsiveness */
}

/* Map box */
.map-box {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background-color: #f0f0f0;
  background-image: url('/images/map.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Info box */
.info {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.8;
}

/* Icon styling */
.info i {
  color: #c59d5f;
  /* Luxurious gold tone */
  margin-right: 10px;
  font-size: 1.2rem;
  vertical-align: middle;
}

/* Paragraphs inside info */
.info p {
  margin: 15px 0;
  font-size: 1rem;
}

/* Button group */
.button-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Contact buttons */
.contact-btn {
  padding: 12px 24px;
  background-color: #c59d5f;
  /* Gold tone */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.3s ease, transform 0.2s ease;
  min-width: 160px;
}

.contact-btn:hover {
  background-color: #a67c36;
  /* Darker gold on hover */
  transform: translateY(-2px);
}

/* WhatsApp specific */
.contact-btn.whatsapp {
  background-color: #25d366;
  /* WhatsApp green */
}

.contact-btn.whatsapp:hover {
  background-color: #1ebe57;
  /* Darker green */
}

/* Call specific */
.contact-btn.call {
  background-color: #c59d5f;
  /* Gold tone */
}

.contact-btn.call:hover {
  background-color: #a67c36;
  /* Darker gold */
}

/* ------------------------------------ */
/* RESPONSIVE MOBILE IMPROVEMENTS BELOW */
/* ------------------------------------ */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 50px 15px;
    gap: 20px;
    margin-top: 100px;
  }

  .map-box {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
    background-color: #ffff;
    background-image: url('/images/map.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    display: block;
  }

  .info {
    width: 100%;
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .button-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .contact-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}
