/* Home Hero Component - Variant 2 (Stouffville Snow Removal) */

.home-hero-2 {
  padding: 80px 20px;
  background: #ffffff;
}

.home-hero-2 .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content Section */
.home-hero-2 .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-hero-2 .hero-eyebrow {
  font-family: 'Mulish', sans-serif;
  font-size: var(--section-eyebrow-size);
  font-weight: 400;
  color: rgb(120, 104, 230);
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

.home-hero-2 .hero-heading {
  font-family: 'Mulish', sans-serif;
  font-size: var(--hero-heading-size);
  font-weight: 900;
  line-height: 1.1;
  color: #232325;
  margin: 0;
}

.home-hero-2 .hero-highlight {
  color: rgb(120, 104, 230);
}

.home-hero-2 .hero-description {
  font-family: 'Mulish', sans-serif;
  font-size: var(--section-body-size);
  font-weight: 400;
  line-height: var(--section-body-line-height);
  color: #5a5a5a;
  margin: 0;
}

/* CTA Buttons */
.home-hero-2 .hero-cta-group {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.home-hero-2 .hero-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.home-hero-2 .hero-cta-primary {
  background: rgb(120, 104, 230);
  color: #ffffff;
  border: none;
}

.home-hero-2 .hero-cta-primary:hover {
  background: rgb(100, 84, 210);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120, 104, 230, 0.3);
}

.home-hero-2 .hero-cta-secondary {
  background: transparent;
  color: rgb(120, 104, 230);
  border: 2px solid rgb(120, 104, 230);
}

.home-hero-2 .hero-cta-secondary:hover {
  background: rgb(120, 104, 230);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120, 104, 230, 0.2);
}

/* Right Form Section */
.home-hero-2 .hero-form-container {
  background: #2d2e32;
  padding: 50px;
  border-radius: 20px;
}

.home-hero-2 .hero-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-hero-2 .hero-form-input,
.home-hero-2 .hero-form-textarea {
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.home-hero-2 .hero-form-input::placeholder,
.home-hero-2 .hero-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.home-hero-2 .hero-form-input:focus,
.home-hero-2 .hero-form-textarea:focus {
  outline: none;
  border-bottom-color: rgb(120, 104, 230);
}

.home-hero-2 .hero-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.home-hero-2 .hero-form-submit {
  background: #ffffff;
  color: rgb(120, 104, 230);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.home-hero-2 .hero-form-submit:hover {
  background: rgb(120, 104, 230);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120, 104, 230, 0.3);
}

/* Tablet Layout (1024px - 1199px) */
@media (max-width: 1199px) {
  .home-hero-2 .hero-container {
    gap: 40px;
  }

  .home-hero-2 .hero-heading {
    font-size: var(--hero-heading-size-tablet);
  }

  .home-hero-2 .hero-form-container {
    padding: 40px;
  }
}

/* Mobile Layout (< 1024px) */
@media (max-width: 1023px) {
  .home-hero-2 {
    padding: 60px 20px;
  }

  .home-hero-2 .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .home-hero-2 .hero-heading {
    font-size: var(--hero-heading-size-mobile);
  }

  .home-hero-2 .hero-description {
    font-size: 16px;
  }

  .home-hero-2 .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .home-hero-2 .hero-cta {
    width: 100%;
  }

  .home-hero-2 .hero-form-container {
    padding: 35px 25px;
  }
}

/* Small Mobile (< 768px) */
@media (max-width: 767px) {
  .home-hero-2 {
    padding: 50px 20px;
  }

  .home-hero-2 .hero-heading {
    font-size: 32px;
  }

  .home-hero-2 .hero-eyebrow {
    font-size: 14px;
  }

  .home-hero-2 .hero-cta {
    font-size: 14px;
    padding: 16px 28px;
  }
}
