/* Consolidated styles extracted from index.php */
:root {
    /* Font Families */
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-cinzel: 'Cinzel', serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-spectral: 'Spectral', serif;
    --font-ui: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Core Colors */
    --color-black: #000000;
    --text-dark: #333;
    --text-light: #666;
    --text-extra-light: #999;
    --color-navy: #c5a059;
    --navy: #c5a059;
    --accent-maroon: #c5a059;
    --white: #ffffff;

    /* Gold & Accent Palette */
    --gold-primary: #c5a059;
    /* Used in multiple components */
    --gold-dark: #a38345;
    --gold-legacy: #b1915a;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7e08b 50%, #b8860b 100%);

    /* Status & Brand Colors */
    --color-success: #28a745;
    --color-status-online: #4dfd4d;
    --brand-whatsapp: #25D366;
    --shadow-whatsapp: rgba(37, 211, 102, 0.4);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --shadow-navy: rgba(0, 31, 63, 0.25);

    /* Background & Border Colors */
    --bg-white: #fafaf7;
    --bg-parchment: #fdf6e3;
    --bg-success-light: #f0fff4;
    --bg-light-gray: #f9f9f9;
    --border-light: #f2f2f2;
    --border-medium: #ddd;
    --border-dark: #e5e7eb;
    --border-parchment: rgba(61, 43, 31, 0.15);

    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    padding-bottom: 0;
}

h1,
h2,
h3,
.tower-label {
    font-family: var(--font-serif);
}

/* CTA */
.cta-btn {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--color-black);
    padding: 14px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Gallery responsive & layout */
.gold-underline {
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin: 0 auto;
}

.section-padding {
    padding: 80px 20px;
}

.text-maroon {
    color: var(--accent-maroon);
}

.border-maroon {
    border-color: var(--accent-maroon);
}

/* About Section Text Color */
.about-section p {
    color: var(--text-light);
}



.lead-form input,
.lead-form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 12px 0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: transparent;
}

.lead-form input:focus,
.lead-form select:focus {
    border-bottom-color: var(--color-navy);
}

.config-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.submit-btn {
    width: 100%;
    background: var(--color-navy);
    color: var(--white);
    padding: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--color-black);
}

/* WhatsApp Button */
.whatsapp-btn {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--brand-whatsapp);
    color: var(--white);
    font-weight: 700;
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--shadow-whatsapp);
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
}

/* --- SCOPED CATEGORY SLIDER STYLES (from highlights.php) --- */
.px-lux-slider-wrapper {
    position: relative;
    background: #fff;
    padding: 14px 40px;
    border-bottom: 1px solid #eee;
}

.px-lux-slider-container {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    align-items: flex-start;
}

.px-lux-slider-container::-webkit-scrollbar {
    display: none;
}

.px-lux-item {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    color: #c5a059;
    cursor: pointer;
    transition: 0.2s;
}

.px-lux-item:hover {
    color: #b8860b;
}

.px-lux-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    filter: brightness(0%) contrast(105%);
}

.px-lux-item span {
    display: block;
    line-height: 1.2;
    font-weight: 500;
}

.px-lux-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.px-lux-nav:hover {
    background: #f9f9f9;
}

.px-lux-nav.left {
    left: 10px;
}

.px-lux-nav.right {
    right: 10px;
}

/* --- SCOPED LUXURY CTA STYLES (from highlights.php) --- */
.px-lux-cta-full-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background-color: #fff;
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    max-width: 100%;
}

.px-lux-cta-top {
    background-image: url('images/svg/dicover-life-top-house.svg');
}

.px-lux-cta-bottom {
    background-image: url('images/svg/dicover-life-bottom.svg');
}

.px-lux-btn-premium {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: var(--accent-maroon);
    color: #e2c27d;
    padding: 16px 60px;
    border: 1px solid #c5a059;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.5s ease;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    outline: none;
}

.px-lux-btn-premium:hover {
    color: var(--white);
    background: #c5a059;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--shadow-gold);
}

/* --- FLOATING BUTTON STYLES (from floating_button.php) --- */
.px-lux-cta-floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: none;
    /* Hidden on mobile by default */
}

.px-lux-btn-outline-floating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-navy);
    background-color: var(--white);
    border: 2px solid var(--color-navy);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.px-lux-btn-outline-floating:hover {
    background-color: var(--color-navy);
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow-navy);
    transform: translateY(-2px);
}

@media (min-width: 769px) {
    .px-lux-cta-floating-container {
        display: block;
    }
}