/* Subscribe Page Styles */

.subscribe-page-container {
  width: 100%;
  position: relative;
  min-height: 100vh;
}

/* Full Page Background */
.subscribe-page-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/subscribe-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

.subscribe-page-container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(237,219,128,0.7) 0%, 
    rgba(161,174,28,0.8) 33%, 
    rgba(77,101,40,0.8) 66%, 
    rgba(19,44,23,0.9) 100%
  );
  z-index: -1;
}

/* Subscribe Form Section */
.subscribe-form-section {
  padding: 2rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.subscribe-intro {
  text-align: center;
  align-items: center;
  max-width: 100%;
  margin: 0 2rem;
  padding: 0 20px
}

.subscribe-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffff;
  margin-bottom: 1rem;
}

.subscribe-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ffff;
}

/* Form Wrapper */
.subscribe-form-wrapper {
  max-width: 800px;
  margin: 0 auto 4rem;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-notice {
  text-align: center;
  padding: 2rem;
}

.form-notice p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Forminator Form Overrides */
.subscribe-form-wrapper .forminator-ui {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.subscribe-form-wrapper .forminator-row {
  margin-bottom: 1.5rem;
}

.subscribe-form-wrapper .forminator-field {
  margin-bottom: 1rem;
}

.subscribe-form-wrapper .forminator-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.subscribe-form-wrapper input[type="text"],
.subscribe-form-wrapper input[type="email"],
.subscribe-form-wrapper input[type="tel"],
.subscribe-form-wrapper textarea,
.subscribe-form-wrapper select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.subscribe-form-wrapper input:focus,
.subscribe-form-wrapper textarea:focus,
.subscribe-form-wrapper select:focus {
  border-color: #a1ae1c;
  box-shadow: 0 0 0 3px rgba(161, 174, 28, 0.1);
  outline: none;
}

.subscribe-form-wrapper .forminator-button {
  background: linear-gradient(135deg, #a1ae1c 0%, #4d6528 100%);
  color: #fff;
  padding: 1rem 3rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.subscribe-form-wrapper .forminator-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(161, 174, 28, 0.3);
}

/* Benefits Section */
.subscribe-benefits {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-benefits h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .subscribe-hero-section {
    padding: 0 2rem;
  }

  .subscribe-hero-title {
    font-size: 2.5rem;
  }

  .subscribe-hero-subtitle {
    font-size: 1.2rem;
  }

  .subscribe-form-section {
    padding: 3rem 2rem;
  }

  .subscribe-intro h2 {
    font-size: 2rem;
  }

  .subscribe-form-wrapper {
    padding: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .subscribe-hero-title {
    font-size: 2rem;
  }

  .subscribe-hero-subtitle {
    font-size: 1rem;
  }

  .subscribe-intro h2 {
    font-size: 1.8rem;
  }

  .subscribe-intro p {
    font-size: 1rem;
  }

  .subscribe-form-wrapper {
    padding: 1.5rem;
  }

  .subscribe-benefits h3 {
    font-size: 1.6rem;
  }
}
