/* Media Queries for Responsive Design */

/* Extra Small Devices - Phones (Less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  h1, .hero-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .header-container {
    padding: 1rem 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background-color: var(--primary-color-3);
    width: 80%;
    height: 100vh;
    z-index: 999;
    padding-top: 80px;
    transition: 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }
  
  .hero {
    height: auto;
    padding: 7rem 0 3rem;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .hero-title {
    line-height: 1.2;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .section-desc {
    margin-bottom: 2rem;
  }
  
  .about-feature {
    padding: 1.2rem;
  }
  
  .service-card, .feature-item, .price-card, .team-member, .blog-item {
    margin-bottom: 2rem;
  }
  
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  #site-copyright {
    margin-top: 1rem;
  }
}

/* Small Devices - Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  h1, .hero-title {
    font-size: 3rem;
  }
  
  .header-container {
    padding: 1rem 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background-color: var(--primary-color-3);
    width: 70%;
    height: 100vh;
    z-index: 999;
    padding-top: 80px;
    transition: 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }
  
  .hero {
    height: auto;
    padding: 8rem 0 4rem;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .service-card, .feature-item, .price-card, .team-member, .blog-item {
    margin-bottom: 2rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Medium Devices - Desktops (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-container {
    padding: 1.2rem 0;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .hero {
    height: auto;
    padding: 10rem 0 5rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .service-card, .price-card, .team-member {
    margin-bottom: 2rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Large Devices - Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

/* Reduced Motion Preference */
@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-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
  }
}

/* Touch Screen Devices */
@media (hover: none) {
  .service-card:hover,
  .feature-item:hover,
  .price-card:hover,
  .team-member:hover,
  .blog-item:hover,
  .about-feature:hover,
  .core-info-item:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .hero-shape,
  .btn,
  .mobile-menu-btn,
  .gallery-overlay {
    display: none !important;
  }
  
  body {
overflow-x: hidden;
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
} 