/* Responsive CSS */

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: 54px;
  }
}

/* Small Desktop and Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-content h1 {
    font-size: 48px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-light);
    transition: all 0.4s ease;
    z-index: 1001;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .main-menu.active {
    right: 0;
  }
  
  .main-menu ul {
    flex-direction: column;
  }
  
  .main-menu ul li {
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .hero-slide {
    text-align: center;
    min-height: 500px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-light);
    transition: all 0.4s ease;
    z-index: 1001;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .main-menu.active {
    right: 0;
  }
  
  .main-menu ul {
    flex-direction: column;
  }
  
  .main-menu ul li {
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .logo h1 {
    font-size: 20px;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  /* Swiper Navigation */
  .swiper-button-next, 
  .swiper-button-prev {
    display: none !important;
  }
  
  .price-item.featured {
    transform: scale(1);
  }
  
  .price-item.featured:hover {
    transform: translateY(-10px);
  }
  
  .review-author {
    flex-direction: column;
    text-align: center;
  }
  
  .review-author-img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  /* Additional page styles */
  .page-header {
    min-height: 200px;
  }
  
  .page-title h1 {
    font-size: 32px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
}

/* Prefers-reduced-motion */
@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;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: null;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  .fade-up, .fade-in, .service-item:hover, .feature-item:hover,
  .price-item:hover, .features-item:hover, .coreinfo-item:hover,
  .team-img img, .blog-img img {
    transition: none !important;
    transform: none !important;
  }
} 