/* :#root74513c #74513c;
#533a2b #533a2b;
  --accent: #e74c3c;
  --light: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
} */

body {
  background-color: white;
}

main {
  color: black;
}

main {
  padding: 120px 20px 60px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #333;
}

h2 {
  color: #74513c;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

/* h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #533a2b;
  margin: 20px auto 0;
  border-radius: 2px;
} */

h2 {
  font-size: 2rem;
}

/* Contact Section */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(83, 58, 43, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(116, 81, 60, 0.1);
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(83, 58, 43, 0.15);
  border-color: rgba(116, 81, 60, 0.3);
}

.contact-card:active {
  transform: translateY(-2px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(116, 81, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #74513c;
  font-size: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(116, 81, 60, 0.2);
  color: #533a2b;
}

.contact-content h3 {
  font-size: 1.25rem;
  color: #74513c;
  margin-bottom: 15px;
  font-weight: 600;
  user-select: none;
}

.contact-text {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  cursor: text;
}

.contact-text:hover {
  color: #6c757d;
}

.contact-strong {
  font-weight: 600;
  color: #533a2b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .contact-content h3 {
    font-size: 1.1rem;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #533a2b;
  transform: translateY(-3px);
}

.social-links img {
  width: 20px;
  height: 20px;
}

.contact-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.contact-image:hover img {
  transform: scale(1.03);
}

.map-container {
  margin-bottom: 4rem;
}

.map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-container {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.faq-question {
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #74513c;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #533a2b;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #533a2b;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: #6c757d;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.contact-container {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .map {
    height: 300px;
  }
}

.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-decoration: none !important;
}

.float-whatsapp:hover {
  background: #128C7E;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 25px rgba(18, 140, 126, 0.4);
}

.float-whatsapp i {
  text-decoration: none !important;
  display: inline-block;
  line-height: 1;
}

.float-whatsapp .tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  width: max-content;
}

.float-whatsapp:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

/* Animasi */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
