/* Contact Page Specific Styles */

.secondary-page {
  min-height: 70vh;
}

#secondary-hero {
  padding: 8vw 4vw 4vw 4vw;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.secondary-heading {
  font-size: 8vw;
  line-height: 7.5vw;
  margin-bottom: 3vw;
  color: #ffffff;
  font-weight: 500;
}

.secondary-subheading {
  font-size: 1.8vw;
  line-height: 2.5vw;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 200;
}

/* Contact Info Cards Grid */
#contact-grid-section {
  padding: 8vw 4vw;
  background-color: #000000;
  border-top: 1px solid #333333;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  max-width: 1400px;
  margin: 0 auto;
}

.info-card {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 3vw 2vw;
  text-align: center;
  transition: all ease 0.3s;
}

.info-card:hover {
  border-color: #ffffff;
  transform: translateY(-5px);
}

.card-icon {
  margin-bottom: 1.5vw;
}

.card-icon svg {
  color: #ffffff;
}

.info-card h3 {
  font-size: 1.5vw;
  margin-bottom: 1vw;
  color: #ffffff;
  font-weight: 500;
}

.info-card a {
  display: block;
  font-size: 1.2vw;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.5vw;
  transition: color 0.3s;
}

.info-card a:hover {
  color: #aaaaaa;
}

.info-card p,
.location-text {
  font-size: 1vw;
  color: #cccccc;
  font-weight: 200;
  line-height: 1.5;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5vw;
  margin-bottom: 0.5vw;
}

.social-links a {
  display: inline;
  font-size: 1.1vw;
}

/* Contact Form Section */
#contact-form-section {
  padding: 8vw 4vw;
  background-color: #000000;
  border-top: 1px solid #333333;
}

.form-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5vw auto;
}

.form-header h2 {
  font-size: 5vw;
  margin-bottom: 2vw;
  color: #ffffff;
  font-weight: 500;
}

.form-header p {
  font-size: 1.5vw;
  line-height: 2.2vw;
  color: #cccccc;
  font-weight: 200;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin-bottom: 2vw;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 2vw;
}

.form-group label {
  font-size: 1.1vw;
  margin-bottom: 0.8vw;
  color: #ffffff;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 1vw 1.5vw;
  font-size: 1.1vw;
  color: #ffffff;
  font-family: neu;
  transition: all ease 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
  background-color: #0f0f0f;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666666;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 1vw;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ffffff;
}

.checkbox-label {
  font-size: 1vw !important;
  font-weight: 200 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
}

.form-submit {
  text-align: center;
  margin-top: 3vw;
}

.submit-button {
  background-color: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 1.2vw 3vw;
  font-size: 1.2vw;
  font-family: neu;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all ease 0.4s;
  display: inline-flex;
  align-items: center;
  gap: 1vw;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  z-index: -1;
}

.submit-button:hover::after {
  bottom: 0;
  border-radius: 0;
}

.submit-button:hover {
  color: #000000;
}

.submit-button svg {
  transition: transform 0.3s;
}

.submit-button:hover svg {
  transform: translateX(5px);
  stroke: #000000;
}

.form-note {
  margin-top: 1.5vw;
  font-size: 0.9vw;
  color: #888888;
  font-weight: 200;
}

/* FAQ Section */
#contact-faq {
  padding: 8vw 4vw;
  background-color: #000000;
  border-top: 1px solid #333333;
}

#contact-faq h2 {
  font-size: 5vw;
  text-align: center;
  margin-bottom: 5vw;
  color: #ffffff;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3vw;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-item {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 2.5vw;
  transition: all ease 0.3s;
}

.faq-item:hover {
  border-color: #555555;
  transform: translateY(-3px);
}

.faq-item h3 {
  font-size: 1.8vw;
  margin-bottom: 1vw;
  color: #ffffff;
  font-weight: 500;
}

.faq-item p {
  font-size: 1.1vw;
  line-height: 1.8vw;
  color: #cccccc;
  font-weight: 200;
}

/* CTA Section */
#contact-cta {
  padding: 8vw 4vw;
  text-align: center;
  background-color: #000000;
  border-top: 1px solid #333333;
}

#contact-cta h2 {
  font-size: 4vw;
  margin-bottom: 2vw;
  color: #ffffff;
  font-weight: 500;
}

#contact-cta p {
  font-size: 1.5vw;
  line-height: 2.2vw;
  margin-bottom: 3vw;
  color: #cccccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 200;
}

.cta-button-secondary {
  display: inline-block;
  padding: 1.2vw 3vw;
  border: 1px solid #333333;
  background-color: #0a0a0a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2vw;
  transition: all ease 0.3s;
  font-weight: 500;
}

.cta-button-secondary:hover {
  border-color: #ffffff;
  background-color: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .secondary-page {
    min-height: 50vh;
  }

  #secondary-hero {
    padding: 12vw 5vw 8vw 5vw;
  }

  .secondary-heading {
    font-size: 14vw;
    line-height: 13vw;
    margin-bottom: 5vw;
  }

  .secondary-subheading {
    font-size: 4.5vw;
    line-height: 6.5vw;
  }

  #contact-grid-section {
    padding: 12vw 5vw;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .info-card {
    padding: 8vw 5vw;
  }

  .card-icon {
    margin-bottom: 3vw;
  }

  .card-icon svg {
    width: 40px;
    height: 40px;
  }

  .info-card h3 {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .info-card a {
    font-size: 4vw;
    margin-bottom: 1vw;
  }

  .info-card p,
  .location-text {
    font-size: 3.5vw;
  }

  .social-links {
    gap: 4vw;
  }

  .social-links a {
    font-size: 4vw;
  }

  #contact-form-section {
    padding: 12vw 5vw;
  }

  .form-header {
    margin-bottom: 8vw;
  }

  .form-header h2 {
    font-size: 10vw;
    margin-bottom: 4vw;
  }

  .form-header p {
    font-size: 4vw;
    line-height: 6vw;
  }

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

  .form-group {
    margin-bottom: 5vw;
  }

  .form-group label {
    font-size: 4vw;
    margin-bottom: 2vw;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 4vw;
    font-size: 4vw;
    border-radius: 10px;
  }

  .form-group textarea {
    min-height: 200px;
  }

  .checkbox-group {
    gap: 3vw;
    align-items: flex-start;
  }

  .checkbox-group input[type="checkbox"] {
    width: 25px;
    height: 25px;
    margin-top: 1vw;
  }

  .checkbox-label {
    font-size: 3.5vw !important;
  }

  .form-submit {
    margin-top: 6vw;
  }

  .submit-button {
    padding: 4vw 8vw;
    font-size: 4vw;
    gap: 2vw;
  }

  .submit-button svg {
    width: 24px;
    height: 24px;
  }

  .form-note {
    margin-top: 3vw;
    font-size: 3vw;
  }

  #contact-faq {
    padding: 12vw 5vw;
  }

  #contact-faq h2 {
    font-size: 10vw;
    margin-bottom: 8vw;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .faq-item {
    padding: 6vw;
  }

  .faq-item h3 {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .faq-item p {
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  #contact-cta {
    padding: 12vw 5vw;
  }

  #contact-cta h2 {
    font-size: 9vw;
    margin-bottom: 4vw;
  }

  #contact-cta p {
    font-size: 4vw;
    line-height: 6vw;
    margin-bottom: 6vw;
  }

  .cta-button-secondary {
    padding: 4vw 8vw;
    font-size: 4vw;
  }
}

/* Tablet Responsive */
@media (min-width: 601px) and (max-width: 1024px) {
  .secondary-heading {
    font-size: 7vw;
    line-height: 6.5vw;
  }

  .secondary-subheading {
    font-size: 2.2vw;
    line-height: 3vw;
  }

  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }

  .info-card {
    padding: 4vw 3vw;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
