/* === ALBUKARAOQUE WEBSITE - CONTACT PAGE === */
/* Contact page specific styles and components */

/* === CONTACT PAGE STYLES === */
.contact-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #40B5A3 100%);
  color: white;
  padding: 10rem 0 8rem;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
  z-index: 1;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.contact-hero .page-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  transform: scale(1);
  transition: transform 0.3s ease;
  display: inline-block;
}

.contact-hero:hover .page-title {
  transform: scale(1.02);
}

.contact-hero .page-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* === CONTACT INFO SECTION === */
.contact-info-section {
  padding: 4rem 2rem;
  text-align: center;
  background: white;
}

.contact-logo {
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 0;
  opacity: 1;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-details p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: #40B5A3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: #2c3e50;
  text-decoration: underline;
}

.other-inquiries {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.other-inquiries p {
  font-size: 1.1rem;
  color: #666;
}

.other-inquiries a {
  color: #40B5A3;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.other-inquiries a:hover {
  color: #2c3e50;
  text-decoration: underline;
}

/* === CONTACT FORM === */
.contact-form-container {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .contact-hero {
    padding: 7rem 0 5rem;
  }
  
  .contact-hero .page-title {
    font-size: 3rem;
  }
  
  .contact-hero .page-subtitle {
    font-size: 1.2rem;
  }
  
  .contact-logo {
    width: 120px;
  }
  
  .contact-details h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 6rem 0 4rem;
  }
  
  .contact-hero .page-title {
    font-size: 2.5rem;
  }
  
  .contact-hero .page-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-info-section {
    padding: 3rem 1rem;
  }
  
  .contact-logo {
    width: 100px;
  }
  
  .contact-details h2 {
    font-size: 1.5rem;
  }
  
  .contact-details p {
    font-size: 1.1rem;
  }
}
