/* ================= CONTACT PAGE ================= */
.contact-page {
  background: #f8fafc;
}

/* HERO */
.contact-hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  padding-top: 201px;   
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 120px;
}

.contact-hero-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 17px;
  opacity: 0.95;
}

/* CONTAINER */
.contact-container {
  max-width: 1200px;
  margin: -60px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* INFO */
.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.contact-info h2 {
  font-size: 26px;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.info-item span {
  font-size: 22px;
}

.info-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #0f172a;
}

.info-item p {
  font-size: 14px;
  color: #64748b;
}

/* FORM */
.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
  font-size: 26px;
  color: #1e3a8a;
  margin-bottom: 20px;
}

/* FLOATING LABEL FORM */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 0 6px;
  font-size: 13px;
  color: #64748b;
  pointer-events: none;
  transition: 0.3s ease;
}

.form-group textarea + label {
  top: 18px;
  transform: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #2563eb;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}
