/* ================= RESPONSIVE STYLES ================= */
/* All responsive styles are already included in individual CSS files above */
/* This file is for additional responsive overrides if needed */

/* Tablet Devices (max-width: 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
  
  .services-showcase__grid,
  .expertise-grid__container,
  .client-feedback__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .services-showcase__grid,
  .expertise-grid__container,
  .client-feedback__grid {
    grid-template-columns: 1fr;
  }
  
  .section-header__title {
    font-size: 28px;
  }
  
  .financial-hero__title {
    font-size: 32px;
  }
}

/* Small Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
  .btn {
    padding: 10px 25px;
    font-size: 13px;
  }
  
  .stats-container {
    padding: 20px;
  }
  
  .stats-card__number {
    font-size: 28px;
  }
  
  .commitment-section__image {
    width: 260px;
    height: 260px;
  }
}

/* Fix for animations on mobile */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .top-bar,
  .footer,
  .float,
  .cta-banner {
    display: none;
  }
  
  body {
    color: var(--black);
  }
}