.contact-section {
  background-color: #0c1624;
  color: #fff;
  padding: 100px 20px;
  font-family: 'Roboto', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.contact-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-quick {
    font-size: 45px;
    font-weight: bold;
}

.contact-logos {
  display: flex;
  align-items: center;
  margin-left: 40px;
  margin-top: 20px;            /* ✅ no push */
  gap: 20px;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.contact-logo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.contact-email {
  margin-top: 30px;
  display: flex;                /* enable flex layout */
  align-items: center;          /* vertically center logo + text */
  gap: 12px;                    /* optional spacing between logo and text */
}

.contact-elogo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.contact-mtext {
  color: #ffffff;
  font-size: 35px;
  font-family: 'Times New Roman', serif;  /* serif instead of sans */
}

/* Right: Form styling */
.contact-form-holder {
  flex: 1 1 400px;
  max-width: 600px;
}

.contact-form-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Orbitron', sans-serif;
  background-color: #08121c;
  color: #fff;
}

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

.contact-submit-btn {
  padding: 12px 30px;
  background-color: #Efc900;
  color: #0c1624;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #cfc000;
}

.contact-left {
  flex: 1 1 500px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Ensure spacing below the form for reCAPTCHA */
.contact-form-holder {
  padding-bottom: 100px; /* 💡 Increase if needed */
  position: relative;
}

/* Optional: keep recaptcha centered on mobile */
.grecaptcha-badge {
  transform: scale(1.1);
  transform-origin: bottom right;
}

/* 🌐 Tablet: 1080px to 769px */
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .contact-holder {
    flex-direction: row;
    gap: 30px;
  }

  .contact-left, .contact-form-holder {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contact-quick {
    font-size: 38px;
    text-align: left;
  }

  .contact-mtext {
    font-size: 30px;
  }

  .contact-logo {
    width: 90px;
    height: 90px;
  }

  .contact-elogo {
    width: 48px;
    height: 48px;
  }
}

/* 📱 Mobile: up to 768px */
@media screen and (max-width: 768px) {
  .contact-holder {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .contact-left, .contact-form-holder {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .contact-quick {
    font-size: 34px;
    text-align: left;
  }

  .contact-logos {
    justify-content: flex-start;
    margin-left: 0;
  }

  .contact-logo {
    width: 80px;
    height: 80px;
  }

  .contact-elogo {
    width: 40px;
    height: 40px;
  }

  .contact-mtext {
    font-size: 26px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-submit-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .contact-form-holder {
    padding-bottom: 90px;
  }
}

/* 📳 Small Mobile: max 410px */
@media screen and (max-width: 410px) {
  .contact-quick {
    font-size: 30px;
  }

  .contact-logo {
    width: 70px;
    height: 70px;
  }

  .contact-elogo {
    width: 36px;
    height: 36px;
  }

  .contact-mtext {
    font-size: 22px;
  }

  .contact-form-title {
    font-size: 22px;
  }

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

  .contact-submit-btn {
    font-size: 13px;
    padding: 8px 18px;
  }

  .contact-form-holder {
    padding-bottom: 80px;
  }
}
