/* ============================================
   PUSHPANJALI DIET CARE — Responsive
   All Media Queries
   ============================================ */

/* ── Large Desktop: 1200px+ ── */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer-grid .footer-col:last-child {
        grid-column: span 2;
    }

    .hero h1 {
        font-size: var(--text-4xl);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Tablet: 992px ── */
@media (max-width: 992px) {
    :root {
        --navbar-height: 70px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-10);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-credential-card {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .hero-image-decor {
        right: auto;
        left: 50%;
        transform: translateX(-45%);
    }

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

    .blog-faq-grid {
        grid-template-columns: 1fr;
    }

    .journey-section .container {
        flex-direction: column;
        text-align: center;
    }

    .journey-title {
        min-width: auto;
    }

    .journey-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-preview-grid,
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

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

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

    .appointment-sidebar {
        position: relative;
        top: auto;
    }

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

    .transformations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .transformations-header .section-label,
    .transformations-header .section-title {
        text-align: center;
        width: 100%;
    }

    .transformations-header {
        align-items: center;
    }

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

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

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

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

/* ── Mobile Large: 768px ── */
@media (max-width: 768px) {
    /* Nav becomes slide-in */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--space-20) var(--space-8) var(--space-8);
        gap: var(--space-4);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right var(--transition-slow);
        z-index: calc(var(--z-navbar) + 10);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        font-size: var(--text-md);
        padding: var(--space-3) 0;
        display: block;
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-4);
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: calc(var(--z-navbar) + 5);
    }

    .nav-overlay.active {
        display: block;
    }

    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        display: flex;
    }

    /* WhatsApp float - move above sticky CTA */
    .whatsapp-float {
        bottom: 85px;
    }

    .back-to-top {
        bottom: 150px;
    }

    /* Top bar */
    .top-bar-left {
        gap: var(--space-3);
    }

    .top-bar-left span:last-child {
        display: none;
    }

    .top-bar-right span {
        display: none;
    }

    /* Hero */
    .hero {
        padding: var(--space-10) 0 var(--space-12);
    }

    .hero h1 {
        font-size: var(--text-3xl);
    }

    .hero-image-main {
        width: 300px;
        height: 380px;
    }

    .hero-image-decor {
        width: 300px;
        height: 380px;
    }

    .hero-stats {
        gap: var(--space-5);
    }

    .hero-stat-data .number {
        font-size: var(--text-lg);
    }

    /* Trust */
    .trust-logos-grid {
        gap: var(--space-8);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    /* Journey */
    .journey-steps {
        flex-direction: column;
        gap: var(--space-3);
    }

    .journey-step-divider {
        display: none;
    }

    .journey-title {
        font-size: var(--text-2xl);
    }

    /* Blog cards */
    .blog-card {
        flex-direction: column;
    }

    .blog-card-image {
        width: 100%;
        min-height: 160px;
    }

    .blog-card-body {
        padding: var(--space-4);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Page hero */
    .page-hero h1 {
        font-size: var(--text-3xl);
    }

    /* CTA */
    .cta-section {
        margin: 0 var(--space-4) var(--space-8);
        padding: var(--space-10) var(--space-6);
        border-radius: var(--radius-xl);
    }

    .cta-section h2 {
        font-size: var(--text-2xl);
    }

    /* Contact */
    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Credentials */
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .services-full-grid,
    .blog-listing-grid,
    .transformations-full-grid {
        grid-template-columns: 1fr;
    }

    /* Section titles */
    .section-title {
        font-size: var(--text-3xl);
    }
}

/* ── Mobile Small: 480px ── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: var(--text-2xl);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }

    .hero-image-main {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 260/340;
    }

    .hero-image-decor {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 260/340;
    }

    .hero-credential-card {
        width: 90%;
        min-width: auto;
        padding: var(--space-3) var(--space-4);
    }

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

    .trust-logos-grid {
        gap: var(--space-6);
    }

    .trust-badge .platform-name {
        font-size: var(--text-md);
    }

    .transformations-slider .transformation-card {
        min-width: 250px;
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ── Print ── */
@media print {
    .top-bar,
    .navbar,
    .mobile-sticky-cta,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
}
