.text-hero h1{
  margin-bottom: 2rem;
}
/* FORM SECTION */
.form-section {
  padding: 1.5rem 0 5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  padding: 4.5rem;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,123,255,0.12);
  backdrop-filter: blur(25px);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 26px;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  font-family: 'Sintony', sans-serif !important;
  font-size: 1.15rem;
  color: #2d3748;
  background: #fafbfc;
  transition: all 0.4s ease;
  resize: vertical;
  margin-bottom: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(0,123,255,0.12);
  transform: translateY(-3px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
  font-style: italic;
  font-weight: 400;
}

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

.privacy-checkbox {
  display: flex;
  align-items: center;
  text-align: justify;
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 8px;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.privacy-checkbox input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
  accent-color: #3498db;
}

.privacy-checkbox a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.privacy-checkbox a:hover {
  text-decoration: underline;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .privacy-popup {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

.btn-submit {
  width: 100%;
  padding: 24px;
  background: linear-gradient(135deg, #0804df, #0056b3);
  color: #ffffff;
  border: none;
  border-radius: 22px;
  font-family: 'Sintony', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 15px 50px rgba(0,123,255,0.45);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-submit:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0,123,255,0.55);
}

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

@media (max-width: 992px) {
  .contact-form { margin: 0 1rem; }
}

@media (max-width: 768px) {
  .contact-form { 
    padding: 3.5rem 3rem !important; 
    margin: 0 1.5rem; 
  }
}

@media (max-width: 480px) {
  .contact-form { 
    padding: 3rem 2.5rem !important; 
    margin: 0 1rem; 
  }
  .btn-submit { 
    padding: 22px !important; 
    font-size: 1.35rem !important; 
  }
  .form-group input,
  .form-group textarea {
    padding: 18px 22px !important;
  }
}
