/* Contact Page Styles */

/* General Section Spacing */
.contact-section {
  padding: 60px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.section-label.dark { color: white; }
.section-label.light { color: #111827; }
.section-label.centered {
  display: block;
  text-align: center;
  width: max-content;
  margin: 0 auto 24px auto;
}

.section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange) 0%, rgba(232,93,36,0) 100%);
}
.section-label.centered::after {
  background: linear-gradient(90deg, rgba(232,93,36,0) 0%, var(--primary-orange) 50%, rgba(232,93,36,0) 100%);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}
.section-title.centered { text-align: center; margin-bottom: 48px; }
.section-title.dark { color: white; }

.section-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Hero Section */
.contact-hero-section {
  margin: 0 24px 24px 24px;
  border-radius: 24px;
  overflow: hidden;
  padding: 140px 0;
  background-image: linear-gradient(to right, rgba(11, 19, 40, 0.95) 0%, rgba(11, 19, 40, 0.8) 50%, rgba(11, 19, 40, 0.2) 100%),
    url('../assets/Images/home_hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.contact-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.contact-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

/* Requisition Domain Selection */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.domain-card {
  background-color: #0b1328;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 24px 20px;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
}

.domain-card:hover {
  background-color: #1a2744;
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.domain-card.active {
  border-color: var(--primary-orange);
}

.domain-icon {
  margin-bottom: 24px;
  color: #6b7280;
  transition: color 0.2s ease;
}
.domain-card.active .domain-icon,
.domain-card:hover .domain-icon {
  color: var(--primary-orange);
}

.domain-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* Submission Framework */
.submission-section {
  background-color: #111827;
  border-radius: 24px;
  padding: 60px 40px;
  margin: 40px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group-section {
  background-color: #0F1C3B;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px;
}

.form-section-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-section-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 20px;
}
.form-field:last-child { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.form-label span.req { color: var(--primary-orange); }

.form-input {
  width: 100%;
  background-color: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: #6b7280; }
.form-input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.file-upload-zone {
  border: 1px dashed var(--primary-orange);
  border-radius: 8px;
  background-color: rgba(232, 93, 36, 0.05);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.file-upload-zone:hover {
  background-color: rgba(232, 93, 36, 0.1);
}

.file-upload-text {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.file-upload-text span {
  color: var(--primary-orange);
  font-weight: 600;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-submit {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 93, 36, 0.4);
  transition: all 0.2s ease;
}
.btn-submit:hover {
  background-color: #d14d17;
  box-shadow: 0 6px 20px rgba(232, 93, 36, 0.6);
  transform: translateY(-2px);
}

/* Global Presence Section */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.presence-card {
  background-color: #0b1328;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.presence-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.presence-content {
  padding: 24px;
  color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.presence-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.presence-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.presence-address {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.presence-tel {
  font-size: 11px;
  color: #6b7280;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info-bar {
  background-color: #111827;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.info-item .icon {
  color: var(--primary-orange);
  display: flex;
  align-items: center;
}
.info-item .val {
  color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 992px) {
  .domain-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .presence-grid { grid-template-columns: 1fr; }
  .contact-info-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-hero-title { font-size: 40px; }
  .submission-section { padding: 40px 24px; }
}


/* Confirmation Modal */
.confirmation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 21, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.confirmation-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.confirmation-modal {
  background: #0b1328;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.confirmation-modal-overlay.active .confirmation-modal {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(242, 104, 34, 0.1);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.modal-desc {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-close-btn {
  width: 100%;
  justify-content: center;
}
