/* ===========================
   Contact Page Styles
   =========================== */

/* Contact SEO Section */
.contact-seo {
  padding: 50px 20px;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  text-align: center;
}

.contact-seo .container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-seo h2 {
  color: #d97706;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-seo p {
  color: #6e6456;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-section {
  padding: 60px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  color: #c9983e;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2rem;
}

.contact-info > p {
  color: #fffefe;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(232, 184, 92, 0.15);
  border-color: #f5e6d3;
}

.contact-icon {
  font-size: 2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9983e, #e8b85c);
  color: white;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(201, 152, 62, 0.3);
}

.contact-text h3 {
  color: #c9983e;
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-text p {
  color: #333;
  margin: 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-text a {
  color: #c9983e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #e8b85c;
  text-decoration: underline;
}

.quick-book {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #4a4139;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #f5e6d3;
}

.quick-book h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #c9983e;
  font-weight: 700;
}

.quick-book p {
  margin-bottom: 20px;
  opacity: 0.9;
  color: #6e6456;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(22, 160, 133, 0.1);
  border: 2px solid #e8f8f5;
}

.contact-form-container h2 {
  color: #16a085;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: white;
}

.map-section h2 {
  text-align: center;
  color: #16a085;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.12),
    rgba(255, 255, 255, 1) 50%,
    rgba(20, 184, 166, 0.08)
  );
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(20, 184, 166, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(20, 184, 166, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 50px;
  font-size: 2.8rem;
  font-weight: 800;
  background: transparent !important;
  text-shadow: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-left: 5px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(15, 118, 110, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #e6fcf5 100%);
}

.faq-item h3 {
  color: #16a085;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.faq-item p {
  color: #374151;
  line-height: 1.8;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

/* Footer Styles */
.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 0;
  background: #f8f9fa;
}

.footer-section {
  flex: 1 1 200px;
  margin: 0 20px;
}

.footer-section h2 {
  color: #343a40;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #0056b3;
}

/* Media Queries */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 0;
    justify-items: center;
    padding-left: 0;
    margin: 0;
  }
  .footer-section ul li {
    list-style: none;
    margin: 0;
    text-align: center;
    padding: 0;
  }
  .footer-section ul li a {
    display: block;
    padding: 6px 2px;
    font-size: 1em;
    word-break: break-word;
  }
  .contact-section h2,
  .contact-section .section-title,
  h2.section-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}
