/* ===== Contact Section ===== */
.contact-section {
  padding: 50px 20px;
  margin: 50px 0;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-container h1 {
  text-align: center;
  color: #0b63d4;
  font-size: 40px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
  text-align: center;
  color: rgb(100, 100, 100);
  font-size: 16px;
  margin-bottom: 50px;
}




/* ===== Contact Wrapper ===== */
.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
}




/* ===== Contact Form Box ===== */
.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex: 1;
  max-width: 500px;
}

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

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

.form-group label {
  font-weight: bold;
  color: #0b63d4;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2b7cff;
  box-shadow: 0 0 8px rgba(43,124,255,0.3);
}

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

.submit-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #2b7cff, #1e5ed6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43,124,255,0.4);
  background: linear-gradient(135deg, #1e5ed6, #1960c8);
}

.submit-btn:active {
  transform: translateY(0);
}




/* ===== Contact Info Box ===== */
.contact-info-box {
  background: rgba(255, 255, 255, 0.563);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex: 1;
  max-width: 500px;
}


.contact-info-box h3 {
  color: #0b63d4;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184, 104, 202, 0.2);
}

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

.info-item h4 {
  color: #2b7cff;
  font-size: 14px;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.info-item p {
  color: #333;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

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

.info-item a:hover {
  color: #000000;
  text-decoration: underline;
}




/* login button next to search */
.search-login-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-login-button a {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #0b63d4, #1e5ed6);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.admin-login-button a:hover {
  background: linear-gradient(135deg, #1960c8, #2b7cff);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form-box,
  .contact-info-box {
    max-width: 100%;
  }
}

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

  .contact-container h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .contact-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 25px;
    max-width: 100%;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .contact-info-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .info-item {
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  .info-item h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .info-item p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 20px;
  }

  .contact-container h1 {
    font-size: 22px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 13px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .info-item {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
}
