/* AR Interior Design - Responsive Styles */
/* Mobile-first approach with Bootstrap 5 breakpoints */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* No animations on mobile per rules */
  .sal-animate,
  [data-sal] {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Conservative mobile font sizes */
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  h1 {
    font-size: 1.4rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Hero section mobile adjustments */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-decorative::before,
  .hero-decorative::after {
    display: none;
  }
  
  /* Section padding reduction */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Card spacing */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-study-card,
  .process-card,
  .timeline-card,
  .career-card,
  .coreinfo-card,
  .faq-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* Price cards mobile */
  .price-card.featured {
    transform: none;
    margin-bottom: 1.5rem;
  }
  
  /* Contact form mobile */
  .contact-form,
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  /* Team photos mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Process number mobile */
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Button mobile */
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form,
  .contact-info {
    padding: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-decorative::before,
  .hero-decorative::after {
    display: block;
  }
}

/* Navigation mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Form responsive adjustments */
@media (max-width: 767.98px) {
  .form-control {
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .contact-form .row {
    margin: 0;
  }
  
  .contact-form .col-md-6 {
    padding: 0;
    margin-bottom: 1rem;
  }
}

/* Blog responsive */
@media (max-width: 575.98px) {
  .blog-card .card-body {
    padding: 1rem;
  }
}

/* Price plan responsive */
@media (max-width: 767.98px) {
  .price-card {
    margin-bottom: 2rem;
  }
  
  .price-card .price {
    font-size: 2rem;
  }
}

/* Team section responsive */
@media (max-width: 575.98px) {
  .team-card {
    padding: 1rem;
  }
}

/* Service cards responsive */
@media (max-width: 575.98px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.1rem;
  }
}

/* Process section responsive */
@media (max-width: 575.98px) {
  .process-card {
    padding: 1rem;
  }
}

/* Timeline responsive */
@media (max-width: 575.98px) {
  .timeline-card {
    padding: 1rem;
  }
}

/* FAQ responsive */
@media (max-width: 575.98px) {
  .faq-card {
    padding: 1rem;
  }
}

/* Space page responsive */
@media (max-width: 575.98px) {
  #space {
    min-height: 60vh;
    margin: 1rem 0;
  }
}

/* Additional page sections responsive */
@media (max-width: 575.98px) {
  .additional-section {
    padding: 2rem 0;
  }
  
  .additional-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}

.hero-section h1 {
    padding-top: 100px;
}