/* ===== HERO SECTION RESPONSIVE ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .hero-section {
    width: 95%;
    min-height: 350px;
    padding: 40px 0;
  }

  .hero-image-container {
    height: 350px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta-btn {
    width: 180px;
    height: 50px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* Mobile Landscape (481px - 767px) */
@media (max-width: 767px) {
  .hero-section {
    width: 98%;
    min-height: 320px;
    padding: 30px 0;
    margin: 15px auto;
    border-radius: 20px;
  }

  .hero-image-container {
    height: 280px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-btn {
    width: 160px;
    height: 38px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero-section {
    width: 95%;
    min-height: 280px;
    padding: 20px 0;
    margin: 10px auto;
    border-radius: 15px;
  }

  .hero-image-container {
    height: 220px;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-cta-btn {
    width: 140px;
    height: 35px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
