/* ========================================
   BEEMYE - Contact Page Styles
   ======================================== */

/* Contact Slider */
.contact-slider {
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  padding: 0 24px;
}

.contact-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.contact-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.contact-slider-slide {
  flex: 0 0 100%;
  width: 100%;
}

.contact-slider-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.contact-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(80, 80, 80, 0.7);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10;
}

.contact-slider-nav:hover {
  background: rgba(60, 60, 60, 0.9);
}

.contact-slider-nav svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.contact-slider-prev {
  left: 36px;
}

.contact-slider-next {
  right: 36px;
}

.contact-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.contact-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-slider-dot.active {
  background: #1a2744;
}

/* Contact Info Section */
.contact-info-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.contact-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #333;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-address {
  margin-top: 16px;
}

.contact-address p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
}

.contact-mtr {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Google Map */
.contact-map {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  border-top: 1px solid #eee;
}

.faq-icon {
  flex-shrink: 0;
  width: 200px;
}

.faq-icon svg {
  width: 100%;
  height: auto;
}

.faq-content {
  flex: 1;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
}

.faq-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.faq-link {
  color: #1a2744;
  text-decoration: underline;
  font-weight: 500;
}

.faq-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  background: #1a2744;
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 1rem;
  margin-top: 24px;
  transition: background 0.2s;
}

.faq-btn:hover {
  background: #2a3a5a;
}

/* Back Button */
.back-btn-wrapper {
  text-align: center;
  padding: 40px 24px 80px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .faq-icon {
    width: 150px;
  }

  .faq-btn {
    margin: 24px auto 0;
  }

  .contact-map iframe {
    height: 300px;
  }
}
