.home-cta-banner {
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-attachment: fixed; /* Hiệu ứng Parallax */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: #fff;
}

.home-cta-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85); /* Xanh Navy đậm */
    z-index: 1;
}

.home-cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn-luxury, .cta-buttons .btn-outline {
    margin: 0 10px;
    min-width: 200px;
}

@media (max-width: 768px) {
    .cta-title { font-size: 1.8rem; }
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cta-buttons .btn-luxury, 
    .cta-buttons .btn-outline {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 !important;
        width: 100% !important;
        max-width: 300px !important; /* Độ rộng bằng nhau */
        box-sizing: border-box;
    }
}
