/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Adjust as needed */
  z-index: 1;
  margin-bottom: 40px;
  border-radius: 8px;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-contact__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-contact__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

/* Section Titles and Intros */
.page-contact__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-intro {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

/* Contact Information Section */
.page-contact__information-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__method-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-contact__method-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-contact__method-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-contact__method-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-contact__email-address,
.page-contact__phone-number {
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2C14E;
}

/* CTA Button Styles */
.page-contact__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
  color: #111111; /* Dark text for contrast on gold */
  border: 2px solid transparent;
}

.page-contact__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
  background: linear-gradient(180deg, #FFE080 0%, #E8B020 100%);
}

.page-contact__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-contact__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
  background-color: rgba(242, 193, 78, 0.1);
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-contact__faq-list {
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: rgba(255, 211, 107, 0.05);
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 0.95rem;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px 25px;
}

.page-contact__faq-answer p {
  margin-bottom: 10px;
}

/* Social Media Section */
.page-contact__social-media-section {
  padding: 60px 0;
  background-color: #0A0A0A;
  text-align: center;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.page-contact__social-icon-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.page-contact__social-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Corporate Inquiries Section */
.page-contact__corporate-inquiries-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-contact__address-details {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-contact__detail-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-contact__detail-item strong {
  color: #F2C14E;
}

.page-contact__closing-statement {
  font-size: 1rem;
  text-align: center;
  margin-top: 30px;
  color: #FFF6D6;
}

/* Call to Action Section */
.page-contact__cta-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG */
  text-align: center;
  border-top: 1px solid #3A2A12;
}

.page-contact__cta-container {
  max-width: 900px;
}

.page-contact__cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-bottom: 40px;
  }

  .page-contact__hero-image {
    margin-bottom: 20px;
    max-height: 400px;
  }

  .page-contact__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .page-contact__hero-description {
    font-size: 1rem;
  }

  .page-contact__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .page-contact__section-intro {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-contact__method-card {
    padding: 25px;
  }

  .page-contact__method-icon {
    width: 150px;
  }

  .page-contact__method-title {
    font-size: 1.3rem;
  }

  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-contact__faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }

  .page-contact__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 12px 20px 20px 20px;
  }

  .page-contact__social-links {
    gap: 15px;
  }

  .page-contact__social-icon {
    width: 50px;
    height: 50px;
  }

  .page-contact__cta-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .page-contact__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Mobile specific overrides for images, buttons, and sections */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-contact__section, 
  .page-contact__card, 
  .page-contact__container, 
  .page-contact__hero-section, 
  .page-contact__information-section, 
  .page-contact__faq-section, 
  .page-contact__social-media-section, 
  .page-contact__corporate-inquiries-section, 
  .page-contact__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-contact__hero-section {
    padding-top: 10px !important;
  }

  .page-contact__cta-button,
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-contact__cta-buttons,
  .page-contact__button-group,
  .page-contact__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-contact__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-image {
    max-height: 300px;
  }

  .page-contact__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-contact__cta-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .page-contact__social-icon {
    width: 40px;
    height: 40px;
  }
}