/* ==========================================================================
   Ashok LED TV Repairing Jaipur - Responsive Enhancements
   Tablet & Desktop Media Queries
   ========================================================================== */

/* Tablet Breakpoint (768px and up) */
@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.2rem;
  }
  
  .hero-subheadline {
    font-size: 3rem;
  }
  
  .hero-cta-stack {
    flex-direction: row;
  }
  
  .btn-hero-call, .btn-hero-whatsapp {
    flex: 1;
  }
  
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
  
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-group.full-width {
    grid-column: span 2;
  }
  
  .btn-form-submit {
    grid-column: span 2;
  }
}

/* Desktop Breakpoint (992px and up) */
@media (min-width: 992px) {
  .hamburger-btn {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .header-cta-group {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3.5rem;
    padding: 2rem 0;
  }
  
  .hero-image-wrapper {
    display: block;
  }
  
  .hero-headline {
    font-size: 3.6rem;
  }
  
  .hero-subheadline {
    font-size: 3.2rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
    max-width: 580px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Floating quick action buttons on desktop */
  .desktop-floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
  }
  
  .desktop-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
  }
  
  .desktop-float-whatsapp {
    background: var(--accent-green);
    color: #ffffff;
  }
  
  .desktop-float-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  }
  
  .desktop-float-call {
    background: #0b1528;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .desktop-float-call:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(11, 21, 40, 0.45);
  }
}

@media (max-width: 991px) {
  .desktop-floating-actions {
    display: none;
  }
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(245, 158, 11, 0.8);
  }
}

.btn-hero-call {
  animation: pulseGlow 2.5s infinite;
}
