/* Mobile Responsive Styles */

@media (max-width: 1024px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .deals-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

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

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

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

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Sections */
    .section-header h2 {
        font-size: 2.2rem;
    }

    .problem h2,
    .solution h2,
    .how-it-works h2,
    .testimonials h2 {
        font-size: 2.2rem;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

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

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

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

    /* Deals & Destinations */
    .deals-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .problem,
    .solution,
    .how-it-works,
    .testimonials,
    .cta-section {
        padding: 60px 20px;
    }

    .quiz-container,
    .cta-form,
    .demo-search-widget {
        padding: 25px;
    }

    .lead-magnet-form,
    .newsletter-form {
        flex-direction: column;
    }
}
