
/* Luxury Call to Action Section */
.cta-luxury {
    background: linear-gradient(rgba(24, 31, 32, 0.92), rgba(24, 31, 32, 0.85)), url('Image/DK8A0344.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 2rem; /* Reduced from 8rem */
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.cta-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(247, 181, 56, 0.3);
    margin: 1rem; /* Reduced margin */
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-luxury h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* Reduced from 3.5rem */
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.cta-luxury p {
    font-family: var(--font-body);
    font-size: 1.1rem; /* Reduced from 1.3rem */
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
}

@media (max-width: 768px) {
    .cta-luxury {
        padding: 3rem 1.5rem; /* Reduced from 6rem */
    }
    
    .cta-luxury h2 {
        font-size: 2rem; /* Reduced from 2.5rem */
    }
    
    .cta-luxury p {
        font-size: 1rem;
    }
}
