/* ====================================
   RESPONSIVE CSS - Remote UX Audit Firm
   Mobile-First Approach
   ==================================== */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.91rem;
  }
  
  .section-subtitle {
    font-size: 1.27rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .hero-shape {
    display: none;
  }
  
  .navbar-brand {
    font-size: 1.36rem;
  }
  
  .service-price {
    font-size: 1.52rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .process-step::before {
    top: -18px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .team-photo {
    height: 180px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .blog-card .card-body {
    padding: 1.25rem;
  }
  
  .blog-title {
    font-size: 1.22rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.22rem;
  }
  
  .navbar-brand {
    font-size: 1.44rem;
  }
  
  .service-price {
    font-size: 1.79rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .team-photo {
    height: 190px;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .process-step {
    padding: 1.75rem;
    margin-bottom: 1.56rem;
  }
  
  .process-step::before {
    top: -12px;
    width: 35px;
    height: 35px;
    font-size: 1.14rem;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-title {
    font-size: 2.33rem;
  }
  
  .section-subtitle {
    font-size: 1.27rem;
  }
  
  .navbar-brand {
    font-size: 1.50rem;
  }
  
  .service-price {
    font-size: 1.97rem;
  }
  
  .section-padding {
    padding: 4.5rem 0;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .gallery-item img {
    height: 240px;
  }
  
  .process-step {
    padding: 2rem;
    margin-bottom: 1rem;
  }
  
  .process-step::before {
    top: -12px;
    width: 40px;
    height: 40px;
    font-size: 1.26rem;
  }
  
  .hero-shape:nth-child(1) {
    width: 80px;
    height: 80px;
  }
  
  .hero-shape:nth-child(2) {
    width: 120px;
    height: 120px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .section-title {
    font-size: 2.46rem;
  }
  
  .section-subtitle {
    font-size: 1.26rem;
  }
  
  .navbar-brand {
    font-size: 1.64rem;
  }
  
  .service-price {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .hero-shape:nth-child(1) {
    width: 90px;
    height: 90px;
  }
  
  .hero-shape:nth-child(2) {
    width: 130px;
    height: 130px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-title {
    font-size: 2.63rem;
  }
  
  .section-subtitle {
    font-size: 1.27rem;
  }
  
  .navbar-brand {
    font-size: 1.55rem;
  }
  
  .service-price {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .hero-shape:nth-child(1) {
    width: 100px;
    height: 100px;
  }
  
  .hero-shape:nth-child(2) {
    width: 150px;
    height: 150px;
  }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .hero-shape {
    display: none;
  }
}

/* High-DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-card,
  .team-card,
  .review-card,
  .faq-card,
  .contact-form,
  .blog-card,
  .process-step {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
}

/* Print Styles */
@media print {
  .hero-section::before,
  .hero-shape,
  .navbar,
  .footer {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: white;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .faq-card,
  .contact-form,
  .blog-card,
  .process-step {
    box-shadow: none;
    border: 1px solid #d5d5d5;
  }
  
  .btn-primary,
  .btn-secondary {
    background: white;
    color: black;
    border: 1px solid black;
  }
  
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  .team-photo,
  .gallery-item img {
    height: auto;
  }
}

/* Accessibility - Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .team-card,
  .review-card,
  .gallery-item,
  .blog-card,
  .btn-primary,
  .btn-secondary {
    transition: none;
  }
  
  .service-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .blog-card:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary:focus,
  .btn-secondary:focus,
  .form-control:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
  }
}

/* Dark Mode Support */

/* Container Fluid Adjustments */
@media (min-width: 1400px) {
  .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
  }
}

/* Navbar Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: rgba(136, 125, 253, 0.10);
  }
}

/* Grid System Responsive Adjustments */
@media (max-width: 767.98px) {
  .row > * {
    margin-bottom: 2rem;
  }
  
  .row > *:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .row > * {
    margin-bottom: 1.74rem;
  }
  
  .row > *:last-child {
    margin-bottom: 0;
  }
}

/* Services Grid Responsive */
@media (max-width: 575.98px) {
  .services-grid .col-md-4 {
    margin-bottom: 2rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .services-grid .col-md-4 {
    margin-bottom: 1.65rem;
  }
}

/* Team Grid Responsive */
@media (max-width: 575.98px) {
  .team-grid .col-md-4 {
    margin-bottom: 2rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .team-grid .col-md-4 {
    margin-bottom: 1.75rem;
  }
}

/* FAQ Grid Responsive */
@media (max-width: 575.98px) {
  .faq-grid .col-md-6 {
    margin-bottom: 1.66rem;
  }
}

/* Gallery Grid Responsive */
@media (max-width: 575.98px) {
  .gallery-grid .col-md-4 {
    margin-bottom: 1.73rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-grid .col-md-4 {
    margin-bottom: 1rem;
  }
} 

.hero-section h1 {
    padding-top: 225px;
}