/*---------------------------------------
  CONTACT US PAGE STYLES             
-----------------------------------------*/

/* Page Header */
.contact-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #000000 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/nicholas-green-unsplash-blur.jpg') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.contact-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  opacity: 0.9;
  font-weight: 300;
}

.page-description {
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.8;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Main Section */
.contact-main {
  background-color: var(--white-color);
  padding: 80px 0;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #DA7501 0%, #EE5007 50%, #3b82f6 100%);
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.form-subtitle {
  font-size: 1.1rem;
  color: var(--p-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  flex: 1;
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  color: var(--dark-color);
  font-size: 16px;
  padding: 15px 0;
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--body-font-family);
}

.form-input:focus {
  border-bottom-color: #DA7501;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-25px);
  font-size: 12px;
  color: #DA7501;
}

.form-input.error {
  border-bottom-color: #dc3545;
}

.form-label {
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--p-color);
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 400;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  /* border: 2px solid #e0e0e0; */
  /* border-radius: 10px; */
  padding: 15px;
  /* background-color: #f8f9fa; */
}

.form-textarea:focus {
  border-color: #DA7501;
  background-color: #ffffff;
}

.form-textarea + .form-label {
  top: 15px;
  left: 15px;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  transform: translateY(-25px);
  font-size: 12px;
  color: #DA7501;
  left: 0;
}

.form-footer {
  margin-top: 40px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.consent-checkbox input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #DA7501;
  margin-top: 2px;
}

.consent-checkbox label {
  font-size: 14px;
  color: var(--p-color);
  line-height: 1.5;
  cursor: pointer;
}

.consent-checkbox a {
  color: #DA7501;
  text-decoration: none;
  font-weight: 500;
}

.consent-checkbox a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, #DA7501, #EE5007);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(218, 117, 1, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(218, 117, 1, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Contact Information */
.contact-info-wrapper {
  padding-left: 40px;
}

.info-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.method-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.method-content p {
  font-size: 1rem;
  color: var(--p-color);
  line-height: 1.6;
  margin: 0 0 5px 0;
}

.method-content a {
  color: #DA7501;
  text-decoration: none;
  font-weight: 500;
}

.method-content a:hover {
  text-decoration: underline;
}

.method-content small {
  font-size: 0.85rem;
  color: var(--p-color);
  font-style: italic;
}

/* Social Links */
.social-links {
  margin-top: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
}

.social-links h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 2px solid #DA7501;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DA7501;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: #DA7501;
  color: #ffffff;
  transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--p-color);
  font-weight: 400;
  margin: 0;
}

.faq-accordion {
  margin-top: 40px;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background-color: #f8f9fa;
}

.faq-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.faq-icon i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #EE5007, #DA7501);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f8f9fa;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--p-color);
  margin: 0;
  padding-top: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #000000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/nicholas-green-unsplash-blur.jpg') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(218, 117, 1, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(218, 117, 1, 0.4);
  color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .page-title {
    font-size: 3rem;
  }
  
  .contact-form-wrapper {
    padding: 40px;
    margin-bottom: 40px;
  }
  
  .contact-info-wrapper {
    padding-left: 0;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-header {
    padding: 100px 0 60px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  .page-description {
    font-size: 1rem;
  }
  
  .contact-main {
    padding: 60px 0;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .info-title {
    font-size: 1.8rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .method-icon {
    align-self: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .faq-header {
    padding: 20px;
  }
  
  .faq-header h3 {
    font-size: 1.1rem;
  }
  
  .faq-item.active .faq-content {
    padding: 0 20px 20px;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
  
  .cta-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 25px 15px;
  }
  
  .form-title {
    font-size: 1.6rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .info-title {
    font-size: 1.6rem;
  }
  
  .contact-method {
    padding: 20px;
  }
  
  .method-content h3 {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .faq-header {
    padding: 15px;
  }
  
  .faq-header h3 {
    font-size: 1rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
}
