/* General Layout */
.layout_padding {
  padding: 60px 0;
}

.contact_section {
  background: #f9f9f9;
}

.contact_box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left Side Content */
.contact_content {
  padding: 40px;
}

.contact_taital {
  font-size: 36px;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 20px;
  position: relative;
}

.contact_taital::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6600;
  margin-top: 8px;
}

.contact_intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.contact-details li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
}

.contact-details strong {
  color: #ff6600;
}

/* WhatsApp Button */
.whatsapp-text {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Map */
.map_main {
  padding: 0;
}

.map-responsive {
  border-left: 1px solid #eee;
  height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .contact_box {
    flex-direction: column;
  }
  .map_main {
    border-left: none;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .contact_taital {
    font-size: 28px;
  }
  .contact_intro,
  .contact-details li,
  .whatsapp-text {
    font-size: 14px;
  }
  .whatsapp-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
