/* CONTACT PAGE SPECIFIC STYLES */

/* Contact Hero Section */
.contact-hero {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../image/contact-hero-pattern.jpg') repeat;
  opacity: 0.1;
  z-index: 0;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero-text-stack {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-main-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.text-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out forwards;
}

.text-line:nth-child(1) { animation-delay: 0.2s; }
.text-line:nth-child(2) { animation-delay: 0.4s; }
.text-line:nth-child(3) { animation-delay: 0.6s; }

.accent-text {
  color: #ffe600;
  font-weight: 700;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: #ccc;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.8s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffe600;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Contact Main Section */
.contact-main {
  padding: 6rem 0;
  background: #fff;
}

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

/* Contact Information */
.contact-info-section {
  padding: 2rem;
}

.contact-info-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.contact-info-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 3rem;
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
  background: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

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

.contact-details a:hover {
  color: #ffe600;
}

.contact-details span {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Social Media */
.contact-social {
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
}

.contact-social h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background: #ffe600;
  transform: translateY(-2px);
}

.social-links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-links a:hover img {
  filter: brightness(0) invert(0);
}

/* Contact Form */
.contact-form-section {
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
}

.contact-form-container {
  padding: 3rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #666;
  font-size: 1rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffe600;
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.submit-btn {
  padding: 1.2rem 2rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: #ffe600;
  color: #000;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

/* Map Section */
.map-section {
  position: relative;
}

.map-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.map-info h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-info p {
  margin-bottom: 1rem;
  color: #ccc;
}

.directions-btn {
  background: #ffe600;
  color: #000;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}

.directions-btn:hover {
  background: #fff;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #f8f8f8;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.faq-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-icon {
  font-size: 1.5rem;
  color: #ffe600;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 0 4rem 0;
    margin-top: 70px;
  }
  
  .contact-main {
    padding: 4rem 0;
  }
  
  .contact-info-section,
  .contact-form-container {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .map-overlay {
    position: relative;
    top: auto;
    left: auto;
    margin: 1rem;
  }
  
  .faq-section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-info-header h2,
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-methods {
    gap: 1rem;
  }
  
  .contact-method {
    padding: 1rem;
  }
}