/* kontak-style.css */

/* Styling khusus untuk halaman kontak */

/* Layout Utama */
.contact-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Form Styling */
.contact-form h2 {
  color: #1a3a8f;
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-form p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a3a8f;
  outline: none;
  box-shadow: 0 0 0 2px rgba(26, 58, 143, 0.1);
  background: #fff;
}

.submit-btn {
  background: #1a3a8f;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #152b6e;
}

/* Contact Info Styling */
.contact-info h2 {
  color: #1a3a8f;
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-info p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-icon {
  background: #eef4ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #1a3a8f;
  font-size: 20px;
}

.contact-text h3 {
  margin-bottom: 8px;
  color: #333;
  font-size: 18px;
}

.contact-text p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.social-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.social-contact h3 {
  margin-bottom: 15px;
  color: #333;
}

.social-contact p {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-icon span {
  font-size: 14px;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.facebook { background: #3b5998; }
.instagram { background: #e1306c; }
.youtube { background: #ff0000; }
.whatsapp { background: #25d366; }

.emergency-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.emergency-contact h3 {
  margin-bottom: 15px;
  color: #333;
}

.emergency-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 12px;
  background: #fff8f8;
  border-radius: 6px;
  border-left: 4px solid #e74c3c;
}

.emergency-item i {
  color: #e74c3c;
  font-size: 20px;
  min-width: 30px;
}

.emergency-item h4 {
  margin-bottom: 5px;
  color: #333;
}

.emergency-item p {
  margin: 0;
  color: #666;
}

/* Map Container */
.map-container {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}

.map-container h2 {
  color: #1a3a8f;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Additional Info */
.additional-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.info-card {
  flex: 1;
  min-width: 250px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-card i {
  font-size: 40px;
  color: #1a3a8f;
  margin-bottom: 15px;
}

.info-card h3 {
  color: #1a3a8f;
  margin-bottom: 10px;
}

.info-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-form, .contact-info {
    width: 100%;
  }
  
  .map-container {
    padding: 20px;
  }
  
  .additional-info {
    flex-direction: column;
  }
}