
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@600&display=swap');

:root {
    --gold: #000000;
    --gold-light: #e7d296;
    --text-dark: #2e2e2e;
    --text-light: #6f6f6f;
    --bg-light: #ffffff;
    --bg-soft: #f1f0eb;
    --shadow: rgba(0,0,0,0.08);
}

/* ------------------------------------------------------
   HERO SECTION
-------------------------------------------------------*/
.lux-hero {
    margin-top: 2rem;
    padding: 120px 0;
    background: var(--bg-soft);
    text-align: center;
}

.lux-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-shadow: 1.152px 1.152px 0 #fff, 1.728px 1.728px 0 var(--secondary);
}

.lux-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 10px;
}

/* ------------------------------------------------------
   GENERAL SECTIONS
-------------------------------------------------------*/
.lux-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.lux-heading {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 2.4rem;
    margin-bottom: 25px;
    text-shadow: 1.152px 1.152px 0 #fff, 1.728px 1.728px 0 var(--secondary);
}

.lux-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ------------------------------------------------------
   CARDS (White Premium)
-------------------------------------------------------*/
.lux-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px var(--shadow);
    transition: 0.3s ease;
}

.lux-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.gold-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

/* ------------------------------------------------------
   VALUE BOXES
-------------------------------------------------------*/
.lux-value {
    background: var(--bg-soft);
    border: 1px solid #eee;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: .3s ease;
    min-height: 246px;
}

.lux-value:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.13);
    transform: translateY(-6px);
}

/* ------------------------------------------------------
   CTA (White Premium)
-------------------------------------------------------*/
.lux-cta {
    padding: 90px 0;
    background: var(--bg-soft);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    top: 24px;
}

/* ------------------------------------------------------
   GOLD BUTTON
-------------------------------------------------------*/
.lux-btn-gold, .btn-gold {
    padding: 12px 38px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    border-radius: 40px;
    font-size: 1.05rem;
    transition: 0.4s ease;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* .lux-btn-gold::before, .btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );
    transform: skewX(-25deg);
    transition: 1s;
} */

.lux-btn-gold:hover, .btn-gold:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.45);
    text-decoration: none;
}

/* .lux-btn-gold:hover::before, .btn-gold:hover::before {
    left: 120%;
} */


.contact-hero {
    padding: 120px 0 80px;
    background: var(--bg-soft);
    text-align: center;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid #eee;
}

.contact-line {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.contact-line a{
    color: #000;
}

.contact-line a:hover{
    text-decoration: none;
}

.contact-icon {
    font-size: 28px;
    color: var(--gold);
    width: 40px;
}

.contact-form-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px var(--shadow);
}

.lux-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background: #fafafa;
    transition: .3s;
}

.lux-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(201,162,39,0.25);
    outline: none;
}

.help-hero {
    padding: 140px 0 100px;
    background: var(--secondary);
}

.lux-faq-wrapper {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px var(--shadow);
    backdrop-filter: blur(10px);
}

.lux-faq-item {
    margin-bottom: 16px;
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.lux-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
}

.lux-faq-item .card-header {
    background: #fff !important;
    border: none !important;
    padding: 0;
}

.lux-faq-item .card-header a {
    display: block;
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    padding: 18px 24px;
    border-radius: 16px !important;
    border: 1.5px solid transparent !important;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none !important;
}

.lux-faq-item .card-header a:after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.lux-faq-item .card-header a:not(.collapsed):after {
    transform: translateY(-50%) rotate(180deg);
}

.lux-faq-item .card-header a:not(.collapsed) {
    background: var(--secondary-light);
    color: var(--secondary);
    border-color: var(--gold) !important;
    box-shadow: inset 0 0 0 2px var(--gold);
    font-weight: 700;
}

.lux-faq-item .card-header a:hover:not(.collapsed) {
    background: #f0e6d2;
}

.lux-accordion-body {
    background: #faf8f3;
    padding: 22px 24px;
    border-top: 1px solid #eee;
    color: #444;
    line-height: 1.75;
    font-size: 1.01rem;
}

.text-gold {
    color: var(--gold);
}

.pricing-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #fdfcf7 0%, #faf7ed 100%);
}

.pricing-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 12px 45px rgba(0,0,0,0.10);
    transform: translateY(-10px)
}

.popular-card {
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px var(--shadow);
}

.card-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.tempo-card .card-header {
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.card-price {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    padding: 20px 0 10px;
    color: #222;
}

.card-price .currency { font-size: 28px; vertical-align: top; }
.card-price .amount { font-size: 64px; line-height: 1; }
.card-price .per { font-size: 20px; color: #777; }

.driver-allowance {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.features {
    list-style: none;
    padding: 25px 30px;
    margin: 0;
    color: #444;
}

.features li {
    margin-bottom: 12px;
    font-weight: 500;
}

.features i {
    color: var(--gold);
    margin-right: 10px;
}

.btn-book {
    border-radius: 50px;
    padding: 14px 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 30px auto;
    justify-content: center;
    display: flex;
    max-width: 220px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-sedan { background: #222; color: white; border: 2px solid #222; }
.btn-sedan:hover { background: #fff; color: #222 !important; text-decoration: none; }


.btn-tempo { background: #333; color: white; border: 2px solid #333; }
.btn-tempo:hover { background: white; color: #333; text-decoration: none; }

.ribbon {
    position: absolute;
    top: 20px;
    right: -50px;
    background: var(--gold);
    color: #ffffffff;
    padding: 8px 60px;
    font-size: 13px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.charges-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

@media (max-width: 567px) {
    .lux-heading, .lux-title {
        font-size: 2rem;
    }
    .lux-section {
        padding: 50px 0;
    }
    .contact-hero, .help-hero, .lux-hero{
        padding-bottom: 40px;
    }
    .lux-faq-wrapper {
        padding: 50px 18px;
    }
    .btn-gold{
        font-size: 1rem;
    }
    footer{
        clip-path: none;
    }
}

