/* Mobile First Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Tablets */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  /* Disable autoplay and effects for Swiper on mobile */
  .swiper-container {
    --swiper-autoplay-delay: 0;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  /* Header */
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .navbar-nav {
    gap: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  /* Hero */
  .hero {
    min-height: 90vh;
    padding-top: 100px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 1.1rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  /* Sections */
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Team */
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  /* Price Plans */
  .priceplan-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .priceplan-item.featured {
    transform: none;
  }
  
  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  :root {
    --section-padding: 2rem 0;
    --container-padding: 0 0.5rem;
  }
  
  /* Header */
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Hero */
  .hero {
    min-height: 80vh;
    padding-top: 120px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero h2 {
    font-size: 1rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  /* Sections */
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-desc {
    font-size: 0.9rem;
  }
  
  /* Feature Items */
  .feature-item {
    padding: 1.5rem;
  }
  
  .feature-item i {
    font-size: 2rem;
  }
  
  /* Service Items */
  .service-item {
    padding: 1.5rem;
  }
  
  /* Team Members */
  .team-member {
    padding: 1rem;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  /* Process Numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /* Contact Form */
  .form-control {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  /* FAQ */
  .faq-question {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  /* Reviews */
  .review-item {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  /* Price Plans */
  .priceplan-item {
    padding: 1.5rem;
  }
  
  /* Blog */
  .blog-item img {
    height: 150px;
  }
  
  .blog-content {
    padding: 1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .navbar-nav {
    font-size: 0.9rem;
  }
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .navbar,
  .btn-primary,
  .gallery,
  .reviews-slider {
    display: none;
  }
  
  .hero {
    min-height: auto;
    page-break-after: always;
  }
  
  section {
    page-break-inside: avoid;
  }
} 