.elementor-163 .elementor-element.elementor-element-c02165b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-163 .elementor-element.elementor-element-c02165b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c8c11f6 *//* Main Section Wrapper */
.luxe-corporate-section {
    background-color: #000; /* Deep black background */
    padding: 80px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Container to center content */
.luxe-corporate-container {
    text-align: center;
    max-width: 700px; /* Keeps the text wrapping perfectly like the screenshot */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Styling */
.luxe-corporate-icon {
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Main Title Styling */
.luxe-corporate-title {
    font-family: 'Playfair Display', serif; /* Will inherit from Elementor if set globally */
    color: #fff;
    font-size: clamp(32px, 4vw, 46px); /* Responsive typography */
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Golden Highlight Text */
.luxe-corporate-title .highlight-text {
    color: #d5aa3c; /* Golden/Mustard color */
}

/* Description Text Styling */
.luxe-corporate-desc {
    font-family: 'Montserrat', sans-serif;
    color: #d5aa3c; /* Light gray for good contrast on black */
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* Button Styling (Base State) */
.luxe-corporate-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    background-color: #d5aa3c; /* Base Gold */
    color: #111111; /* Dark text */
    text-decoration: none;
    padding: 14px 34px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px; /* Slight rounded corners */
    letter-spacing: 0.5px;
    
    /* Smooth transition for all hover effects */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Premium Button Hover Effect */
.luxe-corporate-btn:hover {
    background-color: #c09731; /* Slightly darker gold on hover */
    color: #000000; /* Pitch black text on hover */
    transform: translateY(-3px); /* Smooth upward lift */
    box-shadow: 0 6px 15px rgba(213, 170, 60, 0.25); /* Elegant subtle gold glow */
}

/* Responsive Fixes for Mobile */
@media (max-width: 768px) {
    .luxe-corporate-section {
        padding: 50px 15px;
    }
    
    /* Removes line break on mobile so text fits nicely */
    .desktop-br {
        display: none; 
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e21bce0 *//* Main Section Wrapper */
.luxe-corp-services-section {
    background-color:  #000; /* Deep black background */
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Alignment and Spacing */
.luxe-corp-services-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Subtitle Styling (CORPORATE SERVICES) */
.luxe-corp-services-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #d5aa3c; /* Golden Color */
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

/* Main Title Styling */
.luxe-corp-services-title {
    font-family: 'Playfair Display', serif;
    color: #d5aa3c;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

/* Description Styling */
.luxe-corp-services-desc {
    font-family: 'Montserrat', sans-serif;
    color: #a3a3a3;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

/* CSS Grid for 3-Column Layout */
.luxe-corp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns Desktop */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Card Styling (Left-Aligned as per screenshot) */
.luxe-corp-card {
    border: 1px solid rgba(213, 170, 60, 0.15); /* Faint golden border */
    border-radius: 8px; /* Smooth rounded corners */
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left aligns content */
    text-align: left;
    background-color: transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

/* Premium Hover Effect */
.luxe-corp-card:hover {
    border-color: rgba(213, 170, 60, 0.6); /* Highlights border on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

/* Icon Wrapper */
.luxe-corp-icon {
    margin-bottom: 18px;
    display: inline-flex;
    justify-content: flex-start;
}

/* Card Heading Styling */
.luxe-corp-heading {
    font-family: 'Playfair Display', serif;
    color: #ffffff; /* White text for contrast */
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 0.2px;
}

/* Card Description Text */
.luxe-corp-text {
    font-family: 'Montserrat', sans-serif;
    color: #a3a3a3; /* Light gray */
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Layout Adjustments */
@media (max-width: 992px) {
    .luxe-corp-services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns Tablet */
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .luxe-corp-services-grid {
        grid-template-columns: 1fr; /* 1 Column Mobile */
        gap: 15px;
    }
    .luxe-corp-card {
        padding: 30px 20px;
    }
    .luxe-corp-services-section {
        padding: 50px 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fb031ac *//* Main CTA Section Wrapper */
.luxe-cta-section {
    background-color: #000000; /* Deep black background */
    padding: 100px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Container for centering content */
.luxe-cta-container {
    text-align: center;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CTA Main Title */
.luxe-cta-title {
    font-family: 'Playfair Display', serif; /* Inherits from Elementor global fonts */
    color: #ffffff; /* White base text */
    font-size: clamp(28px, 4vw, 36px); /* Responsive SEO-friendly sizing */
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Golden Highlight Text */
.luxe-cta-title .highlight-text {
    color: #d5aa3c; /* Exact Golden/Mustard Color matching screenshot */
}

/* Description Text Styling */
.luxe-cta-desc {
    font-family: 'Montserrat', sans-serif;
    color: #d5aa3c; /* Light gray text for perfect contrast on black */
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

/* Button Group Flex Layout */
.luxe-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allows stacking safely on mobile */
}

/* Base Button Styling (Shared properties) */
.luxe-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 14px 34px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease; /* Smooth transition for hover */
}

/* Solid Gold Button (CONTACT US) */
.luxe-btn-solid {
    background-color: #d5aa3c;
    color: #111111;
    border: 1px solid #d5aa3c;
}

/* Hover effect for Solid Button */
.luxe-btn-solid:hover {
    background-color: #c09731; /* Slightly darker gold */
    border-color: #c09731;
    color: #000000;
    transform: translateY(-3px); /* Lifts up slightly */
    box-shadow: 0 6px 15px rgba(213, 170, 60, 0.25); /* Subtle glow */
}

/* Transparent Outline Button (GET A QUOTE) */
.luxe-btn-outline {
    background-color: transparent;
    color: #d5aa3c; /* Gold text */
    border: 1px solid #d5aa3c; /* Gold border */
}

/* Hover effect for Outline Button */
.luxe-btn-outline:hover {
    background-color: #d5aa3c; /* Fills with gold */
    color: #111111; /* Text turns dark */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(213, 170, 60, 0.25);
}

/* Responsive Fixes for Tablet and Mobile */
@media (max-width: 768px) {
    .luxe-cta-section {
        padding: 60px 15px;
    }
    
    /* Remove manual line breaks on mobile so text flows naturally */
    .desktop-br {
        display: none; 
    }
}

@media (max-width: 480px) {
    /* Stack buttons vertically on very small screens */
    .luxe-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .luxe-btn {
        width: 100%; /* Full width buttons on mobile */
        box-sizing: border-box;
    }
}/* End custom CSS */