/* Mobile Responsive CSS for Caretrip */
/* Styles for mobile devices (max-width: 768px) */

@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Hero section adjustments */
    .hero-section {
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Main content adjustments */
    .welcome-section h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Service cards */
    .service-card,
    .feature {
        padding: 20px;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Newsletter form */
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    /* Login modal */
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: 2rem;
    }
    
    .welcome-section h2,
    .why-choose-us h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .feature {
        padding: 15px;
    }
    
    .container {
        padding: 0 10px;
    }
}
