/* Mobile First Responsive Design */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Services */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  /* Price Plans */
  .price-plan-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  /* Team Cards */
  .team-photo {
    height: 200px;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  /* Sections */
  .section {
    padding: 2rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  /* Contact */
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-plan-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;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .price-plan-card.featured {
    transform: scale(1.03);
  }
}

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

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Accessibility - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .price-plan-card.featured {
    transform: none;
  }
  
  /* Disable all animations and transitions on mobile when reduced motion is preferred */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile specific - No animations on scroll */
@media (max-width: 767.98px) {
  /* Remove hover effects on mobile */
  .service-card:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  /* Ensure touch targets are large enough */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
  
  /* Better spacing for mobile forms */
  .form-control {
    margin-bottom: 1rem;
  }
  
  /* Mobile typography adjustments */
  .lead {
    font-size: 1.1rem;
  }
  
  /* Mobile footer adjustments */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .row > div {
    margin-bottom: 1.5rem;
  }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Better column spacing for tablets */
  .col-md-6:not(:last-child) {
    margin-bottom: 2rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
} 

.hero-content {
    padding-top: 225px;
}