/* ===== RESPONSIVE STYLES ===== */

/* Mobile First - Base styles for mobile */
@media (max-width: 576px) {
  body {
    overflow-x: hidden;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  .slide-content h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    margin-bottom: 1rem;
    max-width: 95%;
  }
  
  .slide-content p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 1.5rem;
    max-width: 95%;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 90%;
    max-width: 250px;
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
    min-width: auto;
  }
  
  .hero-buttons .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .service-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
  
  .gallery-filter-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .gallery-filter-btn {
    justify-content: center;
    width: 100%;
  }
  
  .mobile-menu-content {
    width: 280px;
    right: -280px;
  }
  
  .mobile-nav a {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  #services {
    padding-top: 2rem;
    margin-top: -1rem;
  }
}

/* Tablet styles */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px !important;
  }
  
  .slide-content {
    padding: 1.5rem;
  }
  
  .slide-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.25rem;
    max-width: 90%;
  }
  
  .slide-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    max-width: 85%;
  }
  
  .hero-buttons {
    gap: 1.25rem;
    flex-direction: row;
  }
  
  .hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    min-width: 160px;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .service-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
  
  .navbar-brand.logo {
    font-size: 1.5rem;
  }
  
  .navbar-brand.logo i {
    font-size: 1.75rem;
  }
  
  html {
    scroll-padding-top: 80px;
  }
  
  section {
    scroll-margin-top: 80px;
  }
  
  .mobile-menu-btn {
    width: 48px;
    height: 48px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2.5px;
  }
  
  .hero-buttons {
    padding: 0 1rem;
  }
  
  .gallery-filter-wrapper {
    gap: 0.25rem;
    padding: 0.375rem;
    border-radius: 16px;
  }
  
  .gallery-filter-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-radius: 12px;
  }
  
  .gallery-filter-btn i {
    font-size: 0.875rem;
  }
  
  .review-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .review-quote {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .gallery-filter-wrapper {
    gap: 0.25rem;
    padding: 0.375rem;
    border-radius: 16px;
  }
  
  .gallery-filter-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-radius: 12px;
  }
  
  .gallery-filter-btn i {
    font-size: 0.875rem;
  }
    
  .mobile-header {
    padding: 1.5rem 1.25rem 0.75rem;
  }
  
  .mobile-footer {
    padding: 1.25rem;
  }
  
  /* .hero-slider {
    height: auto;
    min-height: 60vh;
  } */
  
  #services {
    padding-top: 2rem;
    margin-top: 0;
  }
}

/* Desktop styles */
@media (max-width: 991px) {
  .mobile-menu-btn {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(15px) !important;
  }
}

/* Legacy responsive styles */
@media (max-width: 767px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .slide-content {
    max-width: 1000px;
  }
  
  .service-card:hover {
    transform: translateY(-20px) scale(1.03);
  }
}