body {
  background: black !important;
  color: white;
  font-family: 'apple-system-ui', 'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol';
  min-height: 100vh;
  overflow-x: hidden;
}

.newsletter-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:black;
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 600px;
  background: url('../images/heli.png') center/contain no-repeat;
  opacity: 0.4;
  z-index: 2;
}

.newsletter-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.contact-content{
  padding: 0 20px;
}
@media(max-width:425px){
  .contact-content{
    padding: 0 0;
  }
  .newsletter-content{
    padding:0;
  }
}
.newsletter-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 120, 0));
  color: black;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  
  letter-spacing: 1px;
  margin-bottom: 20px;
  transform: rotate(-2deg);
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.newsletter-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white !important;
}

.newsletter-title .highlight {
  color: white;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.newsletter-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  background: white;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
  display: block;
  text-align: left;
}

.form-control, .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  padding: 15px 20px;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgb(255, 153, 0);
  box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.25);
  color: white;
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-select option {
  background-color: #333;
  color: white;
}

.subscribe-btn {
  background: white;
  border: black ;
  border-radius: 12px;
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 18px 40px;
  width: 100%;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, rgb(255, 120, 0), rgb(255, 153, 0));
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 153, 0, 0.4);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.benefits-list {
  margin-top: 10px;
  padding-top: 10px;
}

.benefits-title {
  /* color: rgb(255, 153, 0); */
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #ccc;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  background: rgb(255, 153, 0);
  border-radius: 50%;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: black;
  font-weight: bold;
}

.success-message, .error-message {
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  display: none;
}

.success-message {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.error-message {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(220, 53, 69, 0.1));
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }

  .hero-background {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }

  .newsletter-form {
    margin: 20px;
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .newsletter-hero {
    min-height: auto;
    padding-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .newsletter-form {
    margin: 15px;
    padding: 25px 20px;
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}