/* Responsive Styles - Mobile First Approach */

/* Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max-width);
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .service-card {
    padding: 2.5rem;
  }
  
  .contact-form {
    padding: 4rem;
  }
}

/* Medium Devices (Tablets, 768px to 1199px) */
@media (max-width: 1199.98px) and (min-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
    margin-top: 1rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Small Devices (Landscape phones, 576px to 767px) */
@media (max-width: 767.98px) and (min-width: 576px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .service-card,
  .feature-item,
  .team-card,
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
    margin-top: 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .process-number {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto 1rem;
  }
  
  .process-item {
    border-left: none;
    border-top: 4px solid var(--primary-teal);
    text-align: center;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Mobile Devices - NO ANIMATIONS (up to 767px) */
@media (max-width: 767.98px) {
  /* DISABLE ALL ANIMATIONS AND TRANSITIONS ON MOBILE */
  *,
  *::before,
  *::after,
  .sal-animate,
  .card,
  .card:hover,
  .service-card,
  .service-card:hover,
  .gallery-item,
  .gallery-item:hover,
  .blog-card,
  .blog-card:hover,
  .btn-primary,
  .btn-primary:hover,
  .team-card,
  .team-card:hover,
  .pricing-card,
  .pricing-card:hover,
  .review-card,
  .process-item,
  .contact-form,
  .faq-card,
  .navbar-nav .nav-link,
  .navbar-nav .nav-link:hover,
  .feature-item,
  .social-link,
  .social-link:hover,
  .animated-icon,
  .team-photo-hover,
  .fade-in,
  .notification {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  
  body {
    font-size: 14px;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    min-height: 60vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  h5 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .card {
    margin-bottom: 1.5rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .team-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
    border-width: 3px;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    transform: none !important;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .process-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: none;
    border-top: 3px solid var(--primary-teal);
    text-align: center;
  }
  
  .process-number {
    position: relative;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    margin: 0 auto 1rem;
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-control {
    padding: 0.6rem 0.8rem;
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
  }
  
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-answer {
    font-size: 0.85rem;
  }
  
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-card img {
    height: 150px;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  
  /* Mobile Navigation Adjustments */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }
}

/* Extra Small Mobile Devices (less than 400px) */
@media (max-width: 399.98px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .service-card,
  .team-card,
  .pricing-card,
  .review-card,
  .process-item,
  .contact-form,
  .faq-card {
    padding: 1rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .service-icon,
  .feature-icon {
    font-size: 2rem;
  }
  
  .pricing-price {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 70px;
    height: 70px;
  }
  
  .process-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .card,
  .service-card,
  .team-card,
  .pricing-card {
    box-shadow: none;
    border: 1px solid var(--medium-gray);
  }
  
  * {
    color: var(--black) !important;
    background: var(--white) !important;
  }
}

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