/* CONTACT PAGE STYLES */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 84, 157, 0.85) 0%, rgba(230, 45, 54, 0.85) 100%);
  z-index: 1;
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.contact-hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

.contact-hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

/* Contact Section */
.contact-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

/* Sidebar - Contact Info */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.info-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #00549d;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  margin-bottom: 20px;
  border-bottom: 2px solid #e62d36;
  padding-bottom: 12px;
}

.info-item {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 13px;
  font-weight: 600;
  color: #00549d;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}

.info-text {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  line-height: 1.5;
}

.info-text a {
  color: #e62d36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #00549d;
}

.department-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.department-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.department-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

.department-email {
  font-size: 13px;
  color: #e62d36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.department-email:hover {
  color: #00549d;
}

.social-links-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link-item {
  font-size: 14px;
  color: #00549d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

.social-link-item:hover {
  color: #e62d36;
  padding-left: 8px;
}

/* Contact Form */
.contact-form-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 40px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #00549d;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  margin-bottom: 12px;
}

.form-description {
  font-size: 14px;
  color: #666;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #00549d;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00549d;
  box-shadow: 0 0 0 3px rgba(0, 84, 157, 0.1);
  background-color: #fafafa;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #00549d;
}

.checkbox-label {
  font-size: 13px;
  color: #333;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: #e62d36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-label a:hover {
  color: #00549d;
}

.submit-btn {
  background-color: #00549d;
  color: #fff;
  border: 2px solid #00549d;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-transform: uppercase;
}

.submit-btn:hover {
  background-color: #003d73;
  box-shadow: 0 5px 15px rgba(0, 84, 157, 0.3);
  transform: translateY(-2px);
}

.form-success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  margin-top: 20px;
}

/* Map Section */
.map-section {
  background-color: #fff;
  padding: 60px 0;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.map-title {
  font-size: 36px;
  font-weight: 700;
  color: #00549d;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  margin-bottom: 12px;
  text-align: center;
}

.map-description {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

.map-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

  .contact-hero-title {
    font-size: 36px;
  }

  .form-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-container {
    padding: 0 20px;
    gap: 30px;
  }

  .contact-hero {
    height: 400px;
  }

  .contact-hero-container {
    padding: 0 20px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 14px;
  }

  .info-card {
    padding: 20px;
  }

  .contact-form-section {
    padding: 30px;
  }

  .form-title {
    font-size: 20px;
  }

  .map-container {
    padding: 0 20px;
  }

  .map-title {
    font-size: 28px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 0;
  }

  .contact-container {
    padding: 0 16px;
  }

  .contact-hero {
    height: 300px;
  }

  .contact-hero-container {
    padding: 0 16px;
  }

  .contact-hero-title {
    font-size: 24px;
  }

  .contact-hero-subtitle {
    font-size: 13px;
  }

  .info-card {
    padding: 16px;
  }

  .info-card-title {
    font-size: 16px;
  }

  .contact-form-section {
    padding: 20px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-group {
    gap: 6px;
  }

  .contact-form {
    gap: 16px;
  }

  .map-container {
    padding: 0 16px;
  }

  .map-title {
    font-size: 22px;
  }

  .map-container iframe {
    height: 250px !important;
  }
}
