/* Contact Page Specific Styles */

/* Contact Form Section */
.contact_form_section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}

.contact_form_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,230,251,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
  opacity: 0.3;
}

.contact_form_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form_content {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.form_h3 {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -2%;
  text-transform: uppercase;
  color: #022762;
  margin-bottom: 15px;
}

.form_description {
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 40px;
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form_label {
  font-family: var(--text-font);
  font-weight: 600;
  font-size: 14px;
  color: #022762;
  text-transform: uppercase;
}

.form_input,
.form_select,
.form_textarea {
  padding: 15px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  background: #FFFFFF;
  font-family: var(--text-font);
  font-size: 14px;
  color: #022762;
  transition: all 0.3s ease;
  outline: none;
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
  border-color: #00E6FB;
  box-shadow: 0 0 0 3px rgba(0, 230, 251, 0.1);
}

.form_textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox_group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox_label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--text-font);
  font-size: 14px;
  color: #666;
  cursor: pointer;
  line-height: 1.4;
}

.form_checkbox {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e8e8e8;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.form_checkbox:checked + .checkmark {
  background: #00E6FB;
  border-color: #00E6FB;
}

.form_checkbox:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #022762;
  font-size: 12px;
  font-weight: bold;
}

.terms_link {
  color: #00E6FB;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms_link:hover {
  color: #022762;
  text-decoration: underline;
}

.submit_btn {
  background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 18px 30px;
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(2, 39, 98, 0.3);
}

.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(2, 39, 98, 0.4);
}

.submit_btn i {
  transition: transform 0.3s ease;
}

.submit_btn:hover i {
  transform: translateX(3px);
}

/* Contact Info Section */
.contact_info {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: fit-content;
}

.contact_info_h3 {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -2%;
  text-transform: uppercase;
  color: #022762;
  margin-bottom: 80px;
  position: relative;
}

.contact_info_h3::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
  border-radius: 2px;
}

.contact_info_items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact_info_item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.contact_info_item:hover {
  background: rgba(0, 230, 251, 0.05);
  border-color: rgba(0, 230, 251, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 230, 251, 0.1);
}

.contact_info_icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 230, 251, 0.3);
}

.contact_info_icon i {
  font-size: 20px;
  color: #022762;
}

.contact_info_content h4 {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 16px;
  color: #022762;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact_info_content a,
.contact_info_content span {
  font-family: var(--text-font);
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact_info_content a:hover {
  color: #00E6FB;
  transform: translateY(-1px);
}

.contact_social {
  border-top: 1px solid #e8e8e8;
  padding-top: 30px;
}

.contact_social h4 {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 18px;
  color: #022762;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.social_links {
  display: flex;
  gap: 15px;
}

.social_link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 39, 98, 0.3);
}

.social_link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 39, 98, 0.4);
  background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
  color: #022762;
}

.social_link i {
  font-size: 18px;
}

/* FAQ Section */
.faq_section {
  background: #FFFFFF;
  padding: 80px 50px;
}

.faq_container {
  max-width: 800px;
  margin: 0 auto;
}

.faq_h3 {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 42px;
  line-height: 110%;
  letter-spacing: -3%;
  text-transform: uppercase;
  color: #022762;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.faq_h3::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
  border-radius: 2px;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq_item {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.faq_item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 230, 251, 0.3);
}

.faq_question {
  padding: 25px 30px;
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.faq_question:hover {
  background: rgba(0, 230, 251, 0.05);
}

.faq_question span {
  font-family: var(--text-font);
  font-weight: 600;
  font-size: 16px;
  color: #022762;
  flex: 1;
}

.faq_question i {
  color: #00E6FB;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq_item.active .faq_question i {
  transform: rotate(180deg);
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq_item.active .faq_answer {
  max-height: 200px;
}

.faq_answer p {
  padding: 0 30px 25px 30px;
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Office Hours Section */
.office_hours_section {
  background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
  padding: 80px 50px;
  color: #FFFFFF;
}

.office_hours_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.office_hours_h3 {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -2%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.hours_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.hour_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour_item:last-child {
  border-bottom: none;
}

.day {
  font-family: var(--text-font);
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
}

.time {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 16px;
  color: #00E6FB;
}

.office_note {
  font-family: var(--text-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.office_map {
  background: #FFFFFF;
  border-radius: 16px;
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.office_map iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact_form_container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .office_hours_container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact_form_section {
    padding: 60px 30px;
  }

  .form_content {
    padding: 30px 25px;
  }

  .form_h3 {
    font-size: 28px;
  }

  .form_row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact_info {
    padding: 30px 25px;
  }

  .contact_info_h3 {
    font-size: 24px;
  }

  .contact_info_items {
    gap: 20px;
  }

  .contact_info_item {
    padding: 15px;
  }

  .contact_info_icon {
    width: 40px;
    height: 40px;
  }

  .contact_info_icon i {
    font-size: 16px;
  }

  .social_links {
    gap: 12px;
  }

  .social_link {
    width: 45px;
    height: 45px;
  }

  .social_link i {
    font-size: 16px;
  }

  .faq_section {
    padding: 60px 30px;
  }

  .faq_h3 {
    font-size: 32px;
  }

  .office_hours_section {
    padding: 60px 30px;
  }

  .office_hours_h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact_form_section {
    padding: 30px 15px;
  }

  .form_content {
    padding: 20px 15px;
  }

  .form_h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .form_description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .contact_form {
    gap: 15px;
  }

  .form_group {
    gap: 6px;
  }

  .form_label {
    font-size: 12px;
  }

  .form_input,
  .form_select,
  .form_textarea {
    padding: 12px 15px;
    font-size: 13px;
  }

  .form_textarea {
    min-height: 100px;
  }

  .checkbox_label {
    font-size: 12px;
    gap: 8px;
  }

  .checkmark {
    width: 16px;
    height: 16px;
  }

  .submit_btn {
    padding: 14px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .contact_info {
    padding: 20px 15px;
  }

  .contact_info_h3 {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .contact_info_h3::after {
    bottom: -30px;
    width: 80px;
    height: 3px;
  }

  .contact_info_items {
    gap: 15px;
    margin-bottom: 25px;
  }

  .contact_info_item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    padding: 15px;
  }

  .contact_info_icon {
    margin: 0;
    width: 40px;
    height: 40px;
  }

  .contact_info_icon i {
    font-size: 16px;
  }

  .contact_info_content h4 {
    font-size: 14px;
  }

  .contact_info_content a,
  .contact_info_content span {
    font-size: 14px;
  }

  .contact_social {
    padding-top: 20px;
  }

  .contact_social h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .social_links {
    justify-content: center;
    gap: 10px;
  }

  .social_link {
    width: 40px;
    height: 40px;
  }

  .social_link i {
    font-size: 16px;
  }

  .faq_section {
    padding: 30px 15px;
  }

  .faq_h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .faq_question {
    padding: 15px 20px;
  }

  .faq_question span {
    font-size: 13px;
  }

  .faq_answer p {
    padding: 0 20px 15px 20px;
    font-size: 13px;
  }

  .office_hours_section {
    padding: 30px 15px;
  }

  .office_hours_h3 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .hour_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 10px 0;
  }

  .day,
  .time {
    font-size: 14px;
  }

  .office_note {
    font-size: 12px;
  }

  .office_map {
    height: 250px;
  }
}

@media (max-width: 375px) {
  .contact_form_section {
    padding: 20px 10px;
  }

  .form_content {
    padding: 15px 10px;
  }

  .form_h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .form_description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact_form {
    gap: 12px;
  }

  .form_group {
    gap: 4px;
  }

  .form_label {
    font-size: 11px;
  }

  .form_input,
  .form_select,
  .form_textarea {
    padding: 10px 12px;
    font-size: 12px;
  }

  .form_textarea {
    min-height: 80px;
  }

  .checkbox_label {
    font-size: 11px;
    gap: 6px;
  }

  .checkmark {
    width: 14px;
    height: 14px;
  }

  .submit_btn {
    padding: 12px 16px;
    font-size: 13px;
    gap: 6px;
  }

  .contact_info {
    padding: 15px 10px;
  }

  .contact_info_h3 {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .contact_info_h3::after {
    bottom: -25px;
    width: 70px;
    height: 3px;
  }

  .contact_info_items {
    gap: 12px;
    margin-bottom: 20px;
  }

  .contact_info_item {
    gap: 10px;
    padding: 12px;
  }

  .contact_info_icon {
    width: 35px;
    height: 35px;
  }

  .contact_info_icon i {
    font-size: 14px;
  }

  .contact_info_content h4 {
    font-size: 12px;
  }

  .contact_info_content a,
  .contact_info_content span {
    font-size: 12px;
  }

  .contact_social {
    padding-top: 15px;
  }

  .contact_social h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .social_links {
    gap: 8px;
  }

  .social_link {
    width: 35px;
    height: 35px;
  }

  .social_link i {
    font-size: 14px;
  }

  .faq_section {
    padding: 20px 10px;
  }

  .faq_h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .faq_question {
    padding: 12px 15px;
  }

  .faq_question span {
    font-size: 12px;
  }

  .faq_answer p {
    padding: 0 15px 12px 15px;
    font-size: 12px;
  }

  .office_hours_section {
    padding: 20px 10px;
  }

  .office_hours_h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hour_item {
    padding: 8px 0;
  }

  .day,
  .time {
    font-size: 12px;
  }

  .office_note {
    font-size: 11px;
  }

  .office_map {
    height: 200px;
  }
} 