/* Responsive Styles */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .shape {
    display: none;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .float-animation {
    animation: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .contact-form {
    margin-top: 2rem;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 3.25rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
  
  .price-card.featured {
    transform: scale(1.03);
  }
  
  .price-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3.25rem;
  }
  
  .price-card {
    padding: 2.5rem 1.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .float-animation {
    animation: none !important;
  }
  
  .service-card:hover,
  .feature-card:hover,
  .price-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: none !important;
  }
  
  .gallery-item:hover .gallery-image {
    transform: none !important;
  }
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .nav-link {
    padding: 0.75rem 1rem;
  }
  
  .nav-link:after {
    display: none;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

/* Swiper slider responsive adjustments */
@media (max-width: 767.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  .review-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  /* Disable autoplay on mobile */
  .swiper-container-autoplay {
    autoplay: false;
  }
}

/* Print styles */
@media print {
  header, 
  footer, 
  .hero-section,
  .contact-section,
  .breadcrumb-section {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  .row {
    display: block;
  }
  
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
  .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
  .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
} 