/* Luxury Sections Styles */
.luxury-section {
    background-color: #f2efe9;
    /* Light beige/cream background */
    padding: 6rem 0;
    position: relative;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.luxury-section .container-fluid {
    padding: 0 4%;
}

/* Header Pills */
.luxury-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.luxury-title-pill {
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.luxury-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.luxury-phone-pill {
    background: #b4926d;
    /* Bronze/Gold */
    padding: 10px 20px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(180, 146, 109, 0.3);
}

.luxury-phone-pill:hover {
    background: #9a7b58;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Content Styling */
.luxury-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.luxury-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Location Specifics */
.luxury-map-container {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.luxury-map-container:hover {
    transform: translateY(-5px);
}

.luxury-map-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Developer Specifics */
.luxury-logo-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.luxury-developer-logo {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.luxury-developer-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .luxury-section {
        padding: 4rem 0;
    }

    .luxury-header-row {
        flex-direction: row;
        /* Keep row but maybe adjust size */
        margin-bottom: 3rem;
    }

    .luxury-title-pill {
        padding: 10px 18px;
    }

    .luxury-title {
        font-size: 0.8rem;
    }

    .luxury-phone-pill {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}