/* ==========================================================================
   ICON AXIS - RESPONSIVE STYLESHEET
   Breakpoints: 1200px (Desktop), 992px (Laptop), 768px (Tablet), 480px (Mobile)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. LARGE SCREENS & DESKTOPS (Max 1200px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  :root {
    --container-max: 1100px;
  }
  
  .section-padding {
    padding: 100px 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   2. LAPTOPS & SMALL DESKTOPS (Max 992px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
  :root {
    --header-height: 85px;
  }

  .navbar-logo-img {
    height: 48px;
  }

  .section-padding {
    padding: 80px 0;
  }

  /* Navigation */
  .navbar-nav, .navbar-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero Section */
  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* About Us Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text-content {
    padding-right: 0;
  }

  .about-showcase-card {
    height: 420px;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Brand Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Stats Counter Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Working Process Timeline */
  .timeline-wrapper::before {
    left: 30px;
  }

  .timeline-step, .timeline-step:nth-child(even) {
    flex-direction: row;
    justify-content: flex-start;
  }

  .timeline-step-badge {
    left: 30px;
  }

  .timeline-content-box {
    width: calc(100% - 90px);
    margin-left: 90px;
  }

  /* Insights Grid */
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   3. TABLETS & PHABLETS (Max 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* Hero Section */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 30px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    height: 320px;
  }

  /* About Features */
  .about-features-list {
    grid-template-columns: 1fr;
  }

  /* Testimonial Card */
  .testimonial-card {
    padding: 35px 20px;
  }

  .testimonial-text {
    font-size: 1.2rem;
  }

  /* Insights Grid */
  .insights-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Details Card */
  .contact-info-card, .contact-form-box {
    padding: 35px 25px;
  }

  /* Floating WhatsApp & Back to Top */
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* --------------------------------------------------------------------------
   4. MOBILE PHONES (Max 480px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  :root {
    --header-height: 75px;
  }

  .preloader-logo {
    width: 190px;
  }

  .navbar-logo-img {
    height: 42px;
  }

  .navbar.scrolled .navbar-logo-img {
    height: 36px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 0.72rem;
    letter-spacing: 2px;
    padding: 8px 16px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .showcase-split {
    grid-template-columns: 1fr;
  }

  .split-img-box:nth-child(2) {
    display: none;
  }

  .showcase-overlay-banner {
    width: 90%;
    padding: 20px 15px;
  }

  .showcase-overlay-banner h3 {
    font-size: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
