/* Mobile CSS - Responsive styles for mobile devices */

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    .nav-toggle {
        display: flex;
    }

    /* Section spacing */
    .home-page section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 320px;
    }

    .card-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Payment Section */
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment-info {
        order: 2;
    }

    .payment-form-container {
        order: 1;
        padding: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    /* Data Furnishing Section */
    .data-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .data-visual {
        order: -1;
    }

    .data-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .data-features {
        gap: 1.5rem;
    }

    .feature {
        gap: 0.75rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    /* Debt Buying Section */
    .debt-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
        gap: 0.75rem;
    }

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

    .type-card {
        padding: 1.5rem;
    }

    .type-card i {
        font-size: 1.5rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods {
        order: 2;
    }

    .contact-form-container {
        order: 1;
        padding: 2rem;
    }

    .method-card {
        padding: 1.5rem;
    }

    /* Forms */
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .payment-form-container,
    .contact-form-container,
    .info-card,
    .method-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .hero-card {
        padding: 1.5rem;
    }

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

    .data-info h3,
    .debt-info h3 {
        font-size: 1.5rem;
    }

    .data-info > p,
    .debt-info > p {
        font-size: 1rem;
    }

    /* Navigation adjustments for very small screens */
    .nav-logo span {
        font-size: 1.25rem;
    }

    .nav-menu {
        padding: 1.5rem;
    }

    /* Form adjustments */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .input-with-icon input {
        padding-left: 2rem;
    }

    .input-icon {
        left: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2.5rem 0 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .home-page section {
        padding: 1.5rem 0;
    }
}

/* Touch interactions */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .type-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .btn-primary:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }

    .nav-link::after {
        display: none;
    }

    .service-link:hover {
        gap: 0.5rem;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        padding: 0.75rem 0;
        display: block;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
    }

    /* Better form spacing on mobile */
    .form-group {
        margin-bottom: 1.25rem;
    }

    /* Improved readability */
    .feature p,
    .service-description,
    .type-card p,
    .service-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
} 