/* =========================================
   INDEX PAGE - RESPONSIVE STYLES
   ========================================= */

@media (max-width: 991px) {
  /* Services Grid (Tablet) */
  .section > .container > div[style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  /* Projects Grid (Tablet) */
  .section > .container > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero-split {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .hero-left h1 {
    font-size: 2.2rem !important;
  }
  
  /* Stats Grid */
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  /* Services Grid (Mobile) */
  .section > .container > div[style*="grid-template-columns: repeat(5"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Projects Grid (Mobile) */
  .section > .container > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Trust & Process Grid */
  .trust-process-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  /* Process Steps vertical */
  .process-steps {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .ps-arrow {
    transform: rotate(90deg) !important;
    margin: 5px 0 5px 20px !important;
  }
  
  /* Reviews Row */
  .reviews-row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* FAQ Layout */
  .faq-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  /* Stats Grid (Small Mobile) */
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  
  .hero-left h1 {
    font-size: 1.8rem !important;
  }
}
