/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 12px !important;
  }
  
  .about-feature,
  .services-item,
  .price-item,
  .team-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .core-info-icon {
    flex: 0 0 50px;
    margin-right: 15px;
  }
  
  .core-info-icon i {
    font-size: 30px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .breadcrumb-area {
    padding: 120px 0 70px;
  }
  
  .breadcrumb-content h2 {
    font-size: 2rem;
  }
  
  .hero-shape {
    width: 100%;
    clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0% 100%);
    height: 50%;
    top: auto;
    bottom: 0;
  }
  
  .navbar-brand {
    font-size: 24px;
  }
  
  .about-feature,
  .services-item,
  .features-item,
  .price-item,
  .team-item,
  .core-info-item,
  .blog-item,
  .gallery-item {
    margin-bottom: 30px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  .contact-form {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .faq-accordion .btn-link {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  
  .faq-accordion .btn-link:after {
    right: 15px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .breadcrumb-area {
    padding: 100px 0 60px;
  }
  
  .breadcrumb-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-area {
    height: auto;
    padding: 140px 0 100px;
  }
  
  .hero-shape {
    width: 100%;
    clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0% 100%);
    height: 40%;
    top: auto;
    bottom: 0;
  }
  
  .navbar-brand {
    font-size: 22px;
  }
  
  .about-feature,
  .services-item,
  .features-item,
  .price-item,
  .team-item,
  .core-info-item,
  .blog-item,
  .gallery-item {
    margin-bottom: 30px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  .contact-form {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .faq-accordion .btn-link {
    padding: 15px;
    font-size: 0.85rem;
  }
  
  .faq-accordion .btn-link:after {
    right: 10px;
  }
  
  .faq-accordion .card-body {
    padding: 0 15px 15px;
  }
  
  .price-tag {
    font-size: 30px;
  }
  
  /* Disable animations on mobile */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* Fix buttons on mobile */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Better visibility for text on mobile */
  p {
    font-size: 0.95rem;
  }
  
  h4 {
    font-size: 1.2rem;
  }
}

/* Portrait orientation for phones */
@media (max-width: 767.98px) and (orientation: portrait) {
  .hero-area {
    min-height: 600px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-image {
    margin-top: 40px;
  }
}

/* Landscape orientation for phones */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-area {
    height: auto;
    padding: 120px 0 80px;
  }
} 