/* Fullscreen Contact Section */
.contact-fullscreen {
  position: relative;
  min-height: 100vh;
  padding: 60px 15px;
  background: url('../Images/contact-us-communication-support-service-assistance-concept.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.contact-fullscreen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

/* Cards */
.info-card, .contact-form-card {
  position: relative;
  z-index: 2;
  border: none;
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}

.info-card {
  background: rgba(0, 0, 0, 0);
  color: #fff;
  transform: none;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  transform: none;
}

.info-card:hover, .contact-form-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.info-card p, .info-card h4 {
  color: #fff;
}

/* Button Colors */
.text-orange {
  color: #ff6e40;
}

.btn-orange,
button[type="submit"] {
  background-color: #ff6e40;
  color: white;
  transition: background 0.3s ease;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.btn-orange:hover,
button[type="submit"]:hover {
  background-color: #ff3d00;
}

/* Inputs */
textarea.form-control,
input.form-control,
select.form-control {
  box-shadow: none;
  border: 1px solid #ccc;
  transition: all 0.3s ease-in-out;
}

textarea.form-control:focus,
input.form-control:focus,
select.form-control:focus {
  border-color: #ff6e40;
  box-shadow: 0 0 0 0.2rem rgba(255, 110, 64, 0.25);
}

/* Section Specific */
#contact {
  padding: 60px 0;
  background-image: url('../Images/pexels-pixabay-326576.jpg');
}

#contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

#contact .info-card {
  flex: 1 1 40%;
  background: #111;
  color: #fff;
}

#contact .contact-form-card {
  flex: 1 1 58%;
  background: #fff;
}

#contact .contact-form-card h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  #contact .container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .info-card,
  .contact-form-card {
    width: 100% !important;
    margin: 10px 0;
    transform: none !important;
    padding: 20px !important;
    text-align: center;
  }

  .contact-form-card form {
    display: flex;
    flex-direction: column;
  }

  .contact-form-card input,
  .contact-form-card textarea,
  .contact-form-card button {
    width: 100% !important;
    margin: 8px 0 !important;
  }
}

