/* ===================================================================
   Wartek Kotamobagu - Responsive Styles
   =================================================================== */

/* Desktop footer adjustments */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--cream);
        padding: 1rem;
        gap: 0.25rem;
        border-top: 1px solid var(--gray-100);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        transform: translateY(-120%);
        transition: transform 0.25s ease;
    }

    .nav-list.open {
        transform: translateY(0);
    }

    .nav-list a {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .services-grid,
    .features-grid,
    .testimonial-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .notice-banner {
        right: 24px;
        max-width: none;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .wa-float {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }

    .back-to-top {
        bottom: 84px;
        right: 22px;
        width: 40px;
        height: 40px;
    }

    .service-hero {
        padding: 2.25rem 0 2.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Print */
@media print {
    .header,
    .footer,
    .wa-float,
    .back-to-top,
    .notice-banner,
    .cta-section {
        display: none !important;
    }

    body {
        background: var(--white);
    }
}
