/* Contact Page Specific Styles */

.page-header {
  background: linear-gradient(135deg, #00294C 0%, #01366C 100%);
  position: relative;
  overflow: hidden;
}

.page-hero {
  padding: 150px 0 100px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 181, 6, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title .colorized {
  color: #FFB506;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  color: #01366C;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  font-weight: 600;
  color: #01366C;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #FFB506;
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 6, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

select.form-control {
  cursor: pointer;
}

.submit-button {
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 250px;
}

.submit-button:hover {
  background: linear-gradient(135deg, #01366C 0%, #00294C 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 181, 6, 0.4);
}

.submit-button i {
  font-size: 1rem;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #FFB506;
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.1);
}

.info-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  transform: rotate(5deg) scale(1.1);
}

.info-icon i {
  font-size: 1.5rem;
  color: white;
}

.info-content h4 {
  font-size: 1.3rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 500;
}

.info-content span {
  font-size: 0.95rem;
  color: #666;
}

/* Social Links */
.social-links {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  border-radius: 15px;
  text-align: center;
}

.social-links h4 {
  font-size: 1.5rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01366C;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-color: #FFB506;
  color: white;
  transform: translateY(-5px);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #FFB506;
  transition: all 0.3s ease;
  height: 100%;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 41, 76, 0.1);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h4 i {
  color: #FFB506;
  font-size: 1.1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .submit-button {
    max-width: 100%;
  }

  .social-icons {
    flex-wrap: wrap;
  }
}
