/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  padding: 10rem 2rem 6rem;
  margin-top: 70px;
  text-align: center;
  color: white;
}

.contact-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.contact-hero .gradient-text {
  color: var(--dark-bg);
}

.contact-hero .hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-subtitle {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Contact Info */
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-subtitle {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 179, 71, 0.05));
  border-radius: 12px;
  transition: transform 0.3s;
}

.contact-method:hover {
  transform: translateX(5px);
}

.contact-method.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.whatsapp .method-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.method-content p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.method-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.method-link:hover {
  color: var(--primary-yellow);
}

/* Business Hours */
.business-hours {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 179, 71, 0.05));
  border-radius: 12px;
}

.business-hours h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
}

.hours-item:last-of-type {
  border-bottom: none;
}

.hours-note {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.hours-note strong {
  color: var(--primary-orange);
}

/* Map Section */
.map-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 122, 0, 0.9);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 2rem;
  background: white;
}

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

.faq-card {
  padding: 2rem;
}

.faq-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.faq-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 7rem 1rem 4rem;
  }

  .contact-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-overlay {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
