/* Mobile Navigation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 253, 246, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(160, 82, 45, 0.2);
}

.mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
}

.mobile-menu-link {
    font-size: 24px;
    font-weight: 600;
    color: #3B2F2F;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: #fffaf0;
    color: #A0522D;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #A0522D;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #A0522D;
    cursor: pointer;
    padding: 8px;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 16px;
    }
    
    .nav-brand {
        font-size: 18px;
    }
    
    .nav-title {
        font-size: 18px;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
        background-color: white;
        border-radius: 8px;
        padding: 6px;
        opacity: 1 !important;
        transition: none !important;
    }
    
    /* Hero Section Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 32px;
        padding: 0 8px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 48px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
        padding: 0 8px;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.3;
    }
    
    /* Phone Mockup Mobile */
    .phone-mockup {
        width: 280px;
        height: 560px;
        margin: 0 auto;
        padding: 16px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
    
    .app-preview {
        padding: 16px;
    }
    
    .app-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .app-subtitle {
        font-size: 12px;
    }
    
    .listing-card {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    
    .listing-route {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .listing-price {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .listing-date {
        font-size: 11px;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
        padding: 0 16px;
        line-height: 1.5;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
        text-align: center;
        border-radius: 16px;
    }
    
    .feature-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .feature-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Steps Mobile */
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .step {
        padding: 0 8px;
        text-align: center;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 20px auto;
    }
    
    .step-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .step-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Pricing Mobile */
    .pricing-card {
        margin: 0 16px;
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .pricing-title {
        font-size: 20px;
    }
    
    .pricing-percentage {
        font-size: 36px;
    }
    
    .pricing-item {
        padding: 8px 0;
        font-size: 15px;
    }
    
    .pricing-total {
        font-size: 18px;
    }
    
    .pricing-note {
        padding: 12px;
        border-radius: 8px;
    }
    
    .pricing-note p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* CTA Mobile */
    .cta-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
        padding: 0 16px;
        line-height: 1.5;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding: 0 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .footer-link {
        display: block;
        padding: 8px 0;
        font-size: 15px;
    }
    
    .footer-copyright {
        font-size: 13px;
        text-align: center;
        padding: 0 16px;
    }
    
    /* Legal Pages Mobile */
    .legal-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 16px;
    }
    
    .legal-content h2 {
        font-size: 22px;
        line-height: 1.3;
        margin: 24px 0 16px 0;
        padding: 0 16px;
    }
    
    .legal-content h3 {
        font-size: 18px;
        line-height: 1.4;
        margin: 20px 0 12px 0;
        padding: 0 16px;
    }
    
    .legal-content p {
        padding: 0 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .legal-content ul, .legal-content ol {
        padding: 0 16px 0 32px;
        margin-bottom: 16px;
    }
    
    .legal-content li {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .legal-content .container {
        padding: 0;
    }
    
    /* Contact Page Mobile */
    .contact-methods {
        padding: 0 16px;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px;
        background-color: #fffaf0;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .method-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .method-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .method-description {
        font-size: 14px;
        margin-bottom: 12px;
        color: #6B4C3B;
    }
    
    .method-link {
        font-size: 16px;
        font-weight: 600;
        color: #A0522D;
        text-decoration: none;
        word-break: break-all;
    }
    
    
}

/* Payment Success Mobile */
@media (max-width: 768px) {
    .payment-success {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .payment-success-content {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .success-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .success-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .success-message {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .success-details {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .success-details p {
        font-size: 14px;
    }
    
    .redirect-info p {
        font-size: 14px;
    }
    
    .redirect-info .btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
}
