/* ==========================================
   Responsive Design
========================================== */

/* Large Devices */
@media (max-width: 1200px) {
  .container {
    width: 92%;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}

/* Medium Devices */
@media (max-width: 992px) {

  .header-container {
    position: relative;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }

  .navbar {
    display: none;
    width: 100%;
    background: #0b1c2d;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px;
    border-radius: 0 0 12px 12px;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

  .header-btn {
    display: none;
  }

  .hero-section {
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .categories-grid,
  .work-grid,
  .packages-grid,
  .why-grid,
  .contact-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .finder-form,
  .property-form,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Small Devices */
@media (max-width: 768px) {

  .section-title h2 {
    font-size: 30px;
  }

  .hero-section {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }

  .categories-grid,
  .work-grid,
  .packages-grid,
  .why-grid,
  .contact-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .package-card,
  .work-card,
  .category-card,
  .why-card,
  .contact-card {
    padding: 25px;
  }

  .footer-container {
    text-align: center;
    gap: 20px;
  }
}

/* Extra Small Devices */
@media (max-width: 576px) {

  .header {
    padding: 15px 0;
  }

  .logo a {
    font-size: 22px;
  }

  .hero-section {
    padding: 70px 0;
  }

  .hero-tag {
    font-size: 13px;
    padding: 6px 12px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn,
  .header-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .hero-buttons {
    width: 100%;
  }

  .section-title span {
    font-size: 13px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .price {
    font-size: 32px;
  }

  .footer-left h3 {
    font-size: 22px;
  }
}