:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ed1724a *//* Main Section Wrapper */
.luxe-wedding-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    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/Luxury-Wedding-Car.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 100px 20px;
    box-sizing: border-box;
}

/* Gradient Overlay to match the screenshot's vignette effect */
.luxe-wedding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

/* Content Container */
.luxe-wedding-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Spacing */
.luxe-wedding-icon {
    margin-bottom: 15px;
}

/* Heading Styling */
.luxe-wedding-title {
    font-family: 'Playfair Display', serif; /* Inherits Elementor global font */
    color: #ffffff;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

/* Highlighted Gold Text matching the button's gold */
.luxe-wedding-title .highlight-text {
    color: #c9a227; 
}

/* Description Text */
.luxe-wedding-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;
}

/* 
==============================================
EXACT BUTTON CSS FROM YOUR INSPECT SCREENSHOTS 
==============================================
*/
.btn-gold {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 14px 36px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    
    /* Styles directly from screenshot 1 */
    background: linear-gradient(135deg, #c9a227, #9c7a1e);
    color: #050505;
    font-weight: 600;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect directly from screenshot 2 */
.btn-gold:hover {
    box-shadow: 0 0 30px #c9a22766; /* 66 hex alpha = ~40% opacity */
    transform: scale(1.02);
    color: #050505;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .luxe-wedding-section {
        min-height: 450px;
        padding: 60px 15px;
    }
    .desktop-br {
        display: none; 
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3d6edf0 *//* Main Section Wrapper */
.luxe-pkg-section {
    background-color: #000000;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Alignment */
.luxe-pkg-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Subtitle Styling */
.luxe-pkg-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #d5aa3c;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

/* Main Title Styling */
.luxe-pkg-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 */
.luxe-pkg-desc {
    font-family: 'Montserrat', sans-serif;
    color: #a3a3a3;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

/* CSS Grid for Cards - 100% Responsive */
.luxe-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns on Desktop */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Package Card */
.luxe-pkg-card {
    background-color: #080808; /* Slightly lighter than pitch black */
    border: 1px solid rgba(213, 170, 60, 0.15); /* Faint gold border */
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxe-pkg-card:hover {
    transform: translateY(-5px);
}

/* Special Styling for "The Ultimate" (Highlighted Card) */
.luxe-pkg-highlight {
    border: 1px solid rgba(213, 170, 60, 0.4);
    box-shadow: 0 0 30px rgba(213, 170, 60, 0.08); /* Subtle gold glow */
    position: relative;
}

/* MOST POPULAR Badge */
.luxe-pkg-badge {
    background-color: #d5aa3c;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 20px;
}

/* Package Name */
.luxe-pkg-name {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

/* Car Name */
.luxe-pkg-car {
    font-family: 'Montserrat', sans-serif;
    color: #d5aa3c;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

/* Features List Styling */
.luxe-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between list items */
}

/* Individual Feature Item */
.luxe-pkg-features li {
    font-family: 'Montserrat', sans-serif;
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Icon alignment inside list */
.luxe-star-icon {
    flex-shrink: 0;
    margin-top: 2px; /* Aligns star perfectly with text */
}

/* =========================================
   Unified Button Styling (Same for all 3)
   ========================================= */
.luxe-pkg-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%; /* Full width button */
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin-top: auto; /* Pushes button to the bottom perfectly */
    
    /* Outline Style by default */
    background-color: transparent;
    color: #d5aa3c;
    border: 1px solid rgba(213, 170, 60, 0.5);
}

/* Solid Fill on Hover */
.luxe-pkg-btn:hover {
    background-color: #d5aa3c;
    color: #111111;
    border-color: #d5aa3c;
    box-shadow: 0 4px 15px rgba(213, 170, 60, 0.2);
}

/* Fully Responsive Breakpoints */
@media (max-width: 992px) {
    .luxe-pkg-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns Tablet */
    }
}

@media (max-width: 768px) {
    .luxe-pkg-grid {
        grid-template-columns: 1fr; /* 1 Column Mobile */
        gap: 25px;
    }
    .luxe-pkg-section {
        padding: 60px 15px;
    }
    .luxe-pkg-card {
        padding: 30px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1a019e2 *//* Main FAQ Section Wrapper */
.luxe-faq-section {
    background-color: #000000;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header & Title Styling */
.luxe-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.luxe-faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #d5aa3c;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.luxe-faq-title {
    font-family: 'Playfair Display', serif;
    color: #d5aa3c; /* Golden title */
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Thin decorative divider below the title */
.luxe-faq-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(213, 170, 60, 0.4);
    margin: 20px auto 0;
}

/* FAQ Container Setup */
.luxe-faq-container {
    max-width: 800px; /* Matches screenshot width beautifully */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between FAQ items */
}

/* Individual FAQ Box */
.luxe-faq-item {
    border: 1px solid rgba(213, 170, 60, 0.15); /* Faint gold border */
    border-radius: 8px;
    background-color: transparent; /* Perfectly blends with the black background */
    overflow: hidden;
    transition: border-color 0.3s ease;
}

/* Changes border slightly when open */
.luxe-faq-item[open] {
    border-color: rgba(213, 170, 60, 0.4);
}

/* Question (Summary) Styling */
.luxe-faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff; /* Default White Text */
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Removes default triangle marker */
    transition: color 0.3s ease;
}

/* Removes webkit default markers */
.luxe-faq-question::-webkit-details-marker {
    display: none;
}

/* Hover Effect on Question (Your Request) */
.luxe-faq-question:hover {
    color: #d5aa3c; /* Changes to Gold */
}

/* Arrow Icon Setup */
.luxe-faq-icon {
    flex-shrink: 0;
    margin-left: 15px;
    color: #a3a3a3; /* Light gray arrow */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* When FAQ is Open (Active State) */
.luxe-faq-item[open] .luxe-faq-question {
    color: #d5aa3c; /* Keeps gold color when open */
}

.luxe-faq-item[open] .luxe-faq-icon {
    transform: rotate(180deg); /* Flips the arrow */
    color: #d5aa3c;
}

/* Answer Container */
.luxe-faq-answer {
    padding: 0 25px 25px 25px;
    animation: luxeFadeIn 0.3s ease-in-out; /* Smooth JS-free animation */
}

.luxe-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    color: #a3a3a3; /* Light gray text */
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* CSS Keyframes for smooth opening */
@keyframes luxeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .luxe-faq-section {
        padding: 60px 15px;
    }
    .luxe-faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    .luxe-faq-answer {
        padding: 0 20px 20px 20px;
    }
}/* End custom CSS */