/* =============================================
   RESPONSIVE STYLES
   Palmist Bajrang — Mobile-First Adaptation
   ============================================= */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-heading {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

/* Tablets */
@media (max-width: 992px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 0 3rem;
    }
    
    .hero-text-column {
        order: 1;
    }
    
    .hero-image-column {
        order: 0;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .authority-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image-column {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 1px;
        height: 30px;
        margin: 0.5rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-deep-indigo);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .main-nav.mobile-nav-open {
        right: 0;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: white;
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0.5rem;
    }
    
    .hamburger-line {
        width: 28px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
    }
    
    .site-header.scrolled .hamburger-line {
        background: var(--color-deep-indigo);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-section {
        min-height: 100svh;
    }
    
    .hero-content {
        padding: 5rem 0 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}