/* ============================================
   BOCHI CILACAP - CONTACT PAGE STYLES
   ============================================ */

/* Contact Header Styling */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #333;
}

.contact-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

body.dark-mode .contact-header h2 {
  color: #e0e0e0;
}

body.dark-mode .contact-header p {
  color: #b0b0b0;
}

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

.contact-info {
  margin-top: 40px;
}

/* Contact Method Cards */
.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-method:hover {
  background: rgba(106, 181, 71, 0.1);
  border-color: rgba(106, 181, 71, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 28px;
  margin-right: 20px;
  color: #6ab547;
  min-width: 40px;
  text-align: center;
}

body.dark-mode .contact-icon {
  color: #8bc34a;
}

.contact-details h4 {
  margin-bottom: 8px;
  color: #333;
  font-size: 18px;
}

.contact-details p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #6ab547;
}

body.dark-mode .contact-method {
  background: rgba(50, 50, 50, 0.7);
}

body.dark-mode .contact-method:hover {
  background: rgba(139, 195, 74, 0.1);
  border-color: rgba(139, 195, 74, 0.3);
}

body.dark-mode .contact-details h4 {
  color: #e0e0e0;
}

body.dark-mode .contact-details p {
  color: #b0b0b0;
}

body.dark-mode .contact-details a:hover {
  color: #8bc34a;
}

/* Map Container Styling */
.map-container {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 20px;
}

.map-placeholder i {
  font-size: 48px;
  margin-bottom: 20px;
  color: #6ab547;
}

.map-placeholder h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.map-placeholder p {
  font-size: 16px;
  max-width: 400px;
  line-height: 1.6;
}

body.dark-mode .map-container {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

body.dark-mode .map-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  color: #e0e0e0;
}

body.dark-mode .map-placeholder i {
  color: #8bc34a;
}

body.dark-mode .map-placeholder h3 {
  color: #e0e0e0;
}

body.dark-mode .map-placeholder p {
  color: #b0b0b0;
}

/* Quick Contact Section */
.quick-contact {
  background: linear-gradient(135deg, #6ab547 0%, #8bc34a 100%);
  color: white;
  padding: 50px 30px;
  margin: 60px 0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(106, 181, 71, 0.3);
  position: relative;
  overflow: hidden;
}

.quick-contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}

.quick-contact h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.quick-contact p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  opacity: 0.95;
}

.quick-contact .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #25d366;
  font-weight: 700;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
}

.quick-contact .whatsapp-btn:hover {
  background: #f8f9fa;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  color: #25d366;
}

.quick-contact .whatsapp-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.quick-contact .whatsapp-btn i {
  font-size: 24px;
  margin-right: 12px;
}

/* Dark mode untuk quick contact */
body.dark-mode .quick-contact {
  background: linear-gradient(135deg, #2d5016 0%, #3a6c1a 100%);
  box-shadow: 0 10px 30px rgba(42, 80, 22, 0.4);
}

body.dark-mode .quick-contact .whatsapp-btn {
  background: #1a1a1a;
  color: #25d366;
  border: 2px solid #25d366;
}

body.dark-mode .quick-contact .whatsapp-btn:hover {
  background: #25d366;
  color: #1a1a1a;
}

/* Social Media Section */
.social-media-section {
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eee;
}

body.dark-mode .social-media-section {
  border-top: 1px solid #333;
}

.social-media-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

body.dark-mode .social-media-section h3 {
  color: #e0e0e0;
}

.social-media-section .social-icons {
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 20px;
}

.social-media-section .social-icons li {
  margin: 0 12px;
}

.social-media-section .social-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 20px;
  color: #666;
  transition: all 0.3s ease;
}

.social-media-section .social-icons a:hover {
  background: #6ab547;
  color: white;
  transform: translateY(-5px);
}

body.dark-mode .social-media-section .social-icons a {
  background: #2a2a2a;
  color: #b0b0b0;
}

body.dark-mode .social-media-section .social-icons a:hover {
  background: #8bc34a;
  color: #1a1a1a;
}

/* Dark mode for hero section */
body.dark-mode .site-hero_2 .big-title,
body.dark-mode .site-hero_2 .small-title {
  color: #000000 !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .col-md-6 {
    margin-bottom: 30px;
  }

  .map-container {
    height: 300px;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .quick-contact {
    padding: 40px 20px;
    margin: 40px 0;
  }

  .quick-contact h3 {
    font-size: 26px;
  }

  .quick-contact p {
    font-size: 16px;
  }

  .quick-contact .whatsapp-btn {
    padding: 14px 30px;
    font-size: 16px;
  }

  .social-media-section h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .contact-header h2 {
    font-size: 24px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .quick-contact h3 {
    font-size: 22px;
  }

  .quick-contact .whatsapp-btn {
    padding: 12px 25px;
    font-size: 15px;
  }

  .quick-contact .whatsapp-btn i {
    font-size: 20px;
    margin-right: 8px;
  }

  .social-media-section .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
