/* Tablet View */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        margin: 5px 0;
    }
    
    .popup-content {
        margin: 20px auto;
        width: 90%;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-call,
    .floating-booking {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}