:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-694787a *//* Main Section Wrapper */
.luxe-hourly-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* User Provided Background Image URL */
    background-image: url('http://luxearrivalltd.co.uk/wp-content/uploads/2026/07/Hourly-Hire-Luxe-Arrival.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 100px 20px;
    box-sizing: border-box;
    margin: 0;
}

/* Gradient Overlay for Vignette Effect */
.luxe-hourly-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient to make white and gold text pop */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

/* Content Container */
.luxe-hourly-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Spacing */
.luxe-hourly-icon {
    margin-bottom: 15px;
}

/* Heading Styling */
.luxe-hourly-title {
    font-family: 'Playfair Display', serif; /* Inherits Elementor global font */
    color: #ffffff;
    font-size: clamp(36px, 5vw, 56px); /* Fluid responsive typography */
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

/* Golden Highlight Text */
.luxe-hourly-title .highlight-text {
    color: #d5aa3c; 
}

/* Description Text */
.luxe-hourly-desc {
    font-family: 'Montserrat', sans-serif;
    color: #e5e5e5;
    font-size: clamp(14px, 2vw, 16px);
    margin: 0 0 35px 0;
    line-height: 1.6;
    font-weight: 400;
}

/* 
==============================================
PREMIUM BUTTON CSS (Included for standalone safety)
==============================================
*/
.btn-gold {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 14px 36px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.5px;
    
    /* Exact Gradient from your previous inspection */
    background: linear-gradient(135deg, #c9a227, #9c7a1e);
    color: #050505;
    font-weight: 600;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

/* Premium Hover effect */
.btn-gold:hover {
    box-shadow: 0 0 30px #c9a22766; /* Golden glow */
    transform: scale(1.02); /* Slight zoom in */
    color: #050505;
}

/* Responsive Fixes for Mobile */
@media (max-width: 768px) {
    .luxe-hourly-section {
        min-height: 450px;
        padding: 60px 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1d94bac *//* Main Section Wrapper - Dark Theme */
.luxe-hd-section {
    background-color: #000000; /* Pure Black Background */
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Specific class to make the first word White */
.title-white {
    color: #ffffff;
}

/* =========================================
   TOP FEATURES STYLING
   ========================================= */
.luxe-hd-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 70px auto; 
}

.luxe-hdf-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dark Icon Box */
.luxe-hdf-icon {
    background-color: #0a0a0a; /* Ultra dark grey */
    border: 1px solid #222222;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.luxe-hdf-title {
    font-family: 'Playfair Display', serif;
    color: #d4af37; /* Luxe Gold Title */
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.luxe-hdf-desc {
    font-family: 'Montserrat', sans-serif;
    color: #a3a3a3; /* Light grey text */
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    max-width: 300px;
}

/* =========================================
   BOTTOM CARDS STYLING
   ========================================= */
.luxe-hd-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px; 
    margin: 0 auto;
    align-items: center; 
}

/* Base Card Style (Dark Mode) */
.luxe-hdc-item {
    background-color: #111111; /* Off-black card background */
    border: 1px solid #222222; /* Subtle dark border */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.luxe-hdc-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Highlighted Center Card */
.luxe-hdc-item.highlight {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8); /* Stronger shadow in dark mode */
    transform: scale(1.05); 
    border: 1px solid rgba(212, 175, 55, 0.3); /* Slight gold border to stand out */
    z-index: 2; 
}

/* Gradient Badge */
.luxe-hdc-badge {
    background: linear-gradient(135deg, #c9a227, #9c7a1e);
    color: #000000; /* Dark text for contrast against gold badge */
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Card Typography */
.luxe-hdc-title {
    font-family: 'Playfair Display', serif;
    color: #d4af37; /* Luxe Gold */
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.luxe-hdc-desc {
    font-family: 'Montserrat', sans-serif;
    color: #a3a3a3; /* Light grey text */
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* =========================================
   BUTTON STYLES
   ========================================= */
.luxe-hdc-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin-top: auto; 
}

/* Outline Style for Card 1 & 3 */
.luxe-hdc-btn.outline {
    background-color: transparent;
    color: #d4af37; 
    border: 1px solid rgba(212, 175, 55, 0.5); 
}

.luxe-hdc-btn.outline:hover {
    background: linear-gradient(135deg, #c9a227, #9c7a1e);
    color: #050505;
    border-color: transparent;
}

/* Solid Gradient Style for Card 2 */
.luxe-hdc-btn.solid {
    background: linear-gradient(135deg, #c9a227, #9c7a1e);
    color: #050505; 
    border: none;
}

.luxe-hdc-btn.solid:hover {
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE LAYOUT
   ========================================= */
@media (max-width: 992px) {
    .luxe-hd-features, .luxe-hd-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .luxe-hdc-item.highlight {
        transform: scale(1); 
    }
}

@media (max-width: 768px) {
    .luxe-hd-section {
        padding: 60px 15px;
    }
    .luxe-hd-features, .luxe-hd-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .luxe-hd-features {
        margin-bottom: 50px;
    }
    .luxe-hdc-item {
        padding: 30px 20px;
    }
}/* End custom CSS */