.page-contact {
  color: #F3F8FF; /* Text Main for dark body background */
  background-color: #000; /* Body background color is #000 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
}

.page-contact__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-contact__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-contact__hero-content h1 {
  font-size: 48px;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-content p {
  font-size: 20px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.page-contact__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-contact__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__cta-button--secondary {
  background: #1B3357; /* Divider color for secondary button */
  margin-left: 20px;
  color: #AFC4E8;
}

.page-contact__cta-button--secondary:hover {
  background: #244D84; /* Border color for secondary hover */
  color: #F3F8FF;
}

.page-contact__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Contact Methods Section */
.page-contact__contact-methods {
  background-color: #08162B; /* Deep Navy */
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-contact__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-contact__method-card {
  background-color: #10233F; /* Card B G */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border color */
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-contact__method-card img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px #4FA8FF);
}

.page-contact__method-card .page-contact__card-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-contact__method-card p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-contact__email, .page-contact__phone {
  font-weight: bold;
  color: #F3F8FF;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

.page-contact__social-icon {
  color: #4FA8FF; /* Glow */
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__social-icon:hover {
  color: #F2C14E; /* Gold */
}

/* Contact Form Section */
.page-contact__contact-form-section {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-contact__form-container {
  background-color: #10233F; /* Card B G */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #244D84; /* Border color */
}

.page-contact__contact-form {
  text-align: left;
  margin-top: 30px;
}

.page-contact__form-group {
  margin-bottom: 25px;
}

.page-contact__form-label {
  display: block;
  font-size: 16px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #244D84; /* Border color */
  border-radius: 6px;
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF; /* Text Main */
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #AFC4E8; /* Text Secondary */
  opacity: 0.7;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #4FA8FF; /* Glow */
  outline: none;
}

.page-contact__submit-button {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__submit-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Why Contact Us Section */
.page-contact__why-contact-us {
  background-color: #08162B; /* Deep Navy */
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-contact__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-contact__advantage-card {
  background-color: #10233F; /* Card B G */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border color */
}

.page-contact__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-contact__advantage-card .page-contact__card-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-contact__advantage-card p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

/* FAQ Section */
.page-contact__faq-section {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-contact__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

details.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #244D84; /* Border color */
  overflow: hidden;
  background: #10233F; /* Card B G */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

details.page-contact__faq-item[open] {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #4FA8FF; /* Glow */
}

details.page-contact__faq-item summary.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F3F8FF; /* Text Main */
}

details.page-contact__faq-item summary.page-contact__faq-question::-webkit-details-marker {
  display: none;
}

details.page-contact__faq-item summary.page-contact__faq-question:hover {
  background: #1B3357; /* Divider */
}

.page-contact__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF; /* Text Main */
}

.page-contact__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #4FA8FF; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-contact__faq-item .page-contact__faq-answer {
  padding: 0 20px 20px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 10px 10px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
}

.page-contact__faq-answer p {
  margin-bottom: 0;
  color: #AFC4E8; /* Text Secondary */
}

/* Final CTA Section */
.page-contact__final-cta {
  background-color: #113B7A; /* Primary color */
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-contact__final-cta .page-contact__section-title {
  color: #F2C14E; /* Gold */
}

.page-contact__final-cta .page-contact__section-description {
  color: #F3F8FF; /* Text Main */
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-content h1 {
    font-size: 42px;
  }
  .page-contact__hero-content p {
    font-size: 18px;
  }
  .page-contact__section-title {
    font-size: 32px;
  }
  .page-contact__section-description {
    font-size: 16px;
  }
  .page-contact__method-card img {
    
    
  }
}

@media (max-width: 768px) {
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-contact__section, .page-contact__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding for mobile */
  }
  .page-contact__hero-content h1 {
    font-size: 32px;
  }
  .page-contact__hero-content p {
    font-size: 16px;
  }
  .page-contact__section-title {
    font-size: 28px;
  }
  .page-contact__section-description {
    font-size: 15px;
  }
  .page-contact__cta-button, .page-contact__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
    margin: 10px 0 !important;
  }
  .page-contact__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__method-grid,
  .page-contact__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__form-container {
    padding: 30px 20px;
  }
  .page-contact__form-input, .page-contact__form-textarea {
    width: calc(100% - 24px); /* Adjust for padding + border */
    padding: 10px 12px;
  }
  details.page-contact__faq-item summary.page-contact__faq-question {
    padding: 15px;
  }
  .page-contact__faq-qtext {
    font-size: 16px;
  }
  .page-contact__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-contact__faq-item .page-contact__faq-answer {
    padding: 0 15px 15px;
  }
  .page-contact__advantage-card, .page-contact__method-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-content h1 {
    font-size: 28px;
  }
  .page-contact__section-title {
    font-size: 24px;
  }
  .page-contact__hero-content p {
    font-size: 15px;
  }
  .page-contact__section-description {
    font-size: 14px;
  }
  .page-contact__method-card img {
    
    
  }
  .page-contact__faq-qtext {
    font-size: 15px;
  }
  .page-contact__faq-toggle {
    font-size: 20px;
    width: 20px;
  }
}