/* =======================
   SUBSCRIBE SECTION (MATCH SITE STYLE)
======================= */
.subscribe-section{
  padding: 50px 0;
  background: #ffffff; /* matches testimonials/brands white sections */
  text-align: center;
}

/* Uses existing .section-title styling:
.section-title { text-align:center; font-size:28px; color:#ff6600; font-weight:bold; margin-bottom:20px; }
*/

.subscribe-wrapper{
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 25px;
  background: #f9f9f9; /* similar to testimonial slide background */
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.subscribe-subtitle{
  margin: 0 0 20px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* Form labels/inputs match your general clean style */
.subscribe-form label{
  display:block;
  margin: 12px 0 6px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.subscribe-form input,
.subscribe-form textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px; /* matches testimonials border radius */
  font-size: 14px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.subscribe-form input:focus,
.subscribe-form textarea:focus{
  border-color: #ff6600;
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.15);
}

.subscribe-form textarea{
  min-height: 90px;
  resize: vertical;
}

/* Layout */
.subscribe-row{
  display:flex;
  gap: 16px;
  margin-bottom: 6px;
}

.subscribe-col{
  flex: 1;
  min-width: 0;
}

/* Multiple fields */
.subscribe-multi{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.subscribe-item{
  display:flex;
  gap: 10px;
  align-items:center;
}

.subscribe-item input{
  flex: 1;
}

/* Small buttons (remove) */
.subscribe-mini-btn{
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: 0.2s;
}

.subscribe-mini-btn:hover{
  background: #f2f2f2;
}

/* Add another email/phone buttons */
.subscribe-add-btn{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f2f2f2;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: 0.2s;
}

.subscribe-add-btn:hover{
  background: #e9e9e9;
}

/* Main submit button (match site orange style) */
.subscribe-submit{
  width: 100%;
  margin-top: 18px;
  padding: 12px 18px;
  border: none;
  border-radius: 30px; /* like quote button */
  background: #ff6600;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe-submit:hover{
  background: #e55b00;
}

/* Terms + small note */
.subscribe-terms{
  margin-top: 12px;
  font-size: 13px;
  color: #555;
  text-align: center;
}

.subscribe-terms a{
  color: #007bff;
  text-decoration: underline;
}

.subscribe-small{
  margin: 6px 0 0;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* Honeypot hidden field */
.subscribe-hp{
  position:absolute;
  left:-9999px;
  top:-9999px;
}

/* Responsive */
@media (max-width: 900px){
  .subscribe-wrapper{ padding: 20px; }
}
@media (max-width: 768px){
  .subscribe-row{ flex-direction: column; }
}