@media (max-width: 900px) {
    .hamburger { display: flex; }
    .cta-button { display: none; }
    
    .nav-links {
        position: fixed !important;
        top: 72px !important;
        right: -100% !important;
        width: 250px !important;
        height: calc(100vh - 72px) !important;
        background: white !important;
        flex-direction: column !important;
        display: flex !important;
        padding: 2rem 1rem !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease !important;
        gap: 1.5rem !important;
        z-index: 1002 !important;
    }

    .nav-links.active {
        right: 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .services,
    .journey,
    .cta-section,
    .partnership-section { padding: 4.5rem 5%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-content h2 { font-size: 2.2rem; }
    .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.9rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.25rem; }
    .cta-content h2 { font-size: 1.9rem; }
}