/* ===================================================================
   SM2 - ELITE MASTER STYLES (v2.3 - GREY FIELDS MODAL)
   =================================================================== */

:root {
    --primary: #11142d;
    --gold: #D4AF37;
    --silver: #C0C0C0;
    --bg-light: #f1f3f9;
    --maroon: #5d2b45;
    --modal-field-bg: #f1f3f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg-light); color: #1a1a1a; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 50px; }

/* HEADER */
.header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; height: 80px; }
.header__container { height: 100%; display: flex; justify-content: space-between; align-items: center; }

.header__logo { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.brand-name-text { font-family: 'Playfair Display', serif; font-weight: 900; color: #1a1a1a; font-size: 1.4rem; letter-spacing: 1px; }

.header__nav { display: flex; align-items: center; gap: 35px; }
.header__nav a { text-decoration: none; color: #1a1a1a; font-weight: 700; font-size: 0.95rem; }
.nav-cta { background: var(--maroon); color: #fff !important; padding: 12px 30px; border-radius: 50px; transition: 0.3s; }
.nav-cta:hover { background: #451a31; transform: translateY(-2px); }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: #1a1a1a; cursor: pointer; }

@media (max-width: 991px) {
    .header__nav { 
        position: fixed; top: 80px; left: 0; right: 0; background: #fff; 
        flex-direction: column; padding: 40px; gap: 25px; 
        transform: translateY(-150%); transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .header__nav.active { transform: translateY(0); }
    .mobile-menu-btn { display: block; }
}

/* HERO TITLE */
.hero-title-sm2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #1a1a1a; text-align: center; margin: 60px 0 40px; line-height: 1.2; }

/* BOOKING WIDGET */
.bl-container { max-width: 500px; margin: 0 auto; padding: 0 20px; }
.bl-search-card { background: #fff; border-radius: 24px; padding: 30px; box-shadow: 0 15px 50px rgba(0,0,0,0.05); }

.bl-tabs { display: flex; gap: 20px; margin-bottom: 25px; border-bottom: 1px solid #eee; }
.bl-tab { padding: 12px 0; font-weight: 700; color: #999; cursor: pointer; position: relative; font-size: 1rem; }
.bl-tab.active { color: #1a1a1a; }
.bl-tab.active::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 3px; background: var(--maroon); border-radius: 10px; }

.bl-input-group { background: #f8f9fc; border-radius: 16px; padding: 15px; margin-bottom: 25px; }
.bl-input-item { padding: 12px 0; }
.bl-input-item:first-child { border-bottom: 1px solid #eee; }
.bl-input-item label { display: block; font-size: 0.7rem; font-weight: 600; color: #aaa; margin-bottom: 6px; text-transform: uppercase; }
.bl-input-item input { width: 100%; border: none; background: transparent; font-size: 1.05rem; font-weight: 700; color: #1a1a1a; outline: none; }

.bl-addon-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid #f8f9fc; }
.bl-addon-label { font-weight: 600; font-size: 0.95rem; }
.bl-stepper { display: flex; align-items: center; gap: 15px; }
.bl-step-btn { width: 34px; height: 34px; border-radius: 50%; background: #e8ebf5; border: none; color: #666; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.bl-step-btn.plus { background: var(--maroon); color: #fff; }
.bl-step-val { font-weight: 700; min-width: 20px; text-align: center; }

.bl-toggle { width: 44px; height: 24px; background: #e8ebf5; border-radius: 20px; position: relative; cursor: pointer; transition: 0.3s; }
.bl-toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: 0.3s; }
.bl-toggle.active { background: var(--maroon); }
.bl-toggle.active::after { left: 23px; }

.bl-confirm-btn { background: var(--maroon); color: #fff; width: 100%; padding: 20px; border: none; border-radius: 16px; font-weight: 800; font-size: 1.1rem; margin-top: 30px; cursor: pointer; }

/* FLEET */
.fleet-grid-simple { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.fleet-item { background: #f8f9fc; padding: 40px 30px; border-radius: 24px; text-align: center; transition: 0.3s; }
.fleet-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.fleet-item img { width: 100%; height: 180px; object-fit: contain; margin-bottom: 25px; }
.fleet-item h3 { font-weight: 800; font-size: 1.3rem; margin-bottom: 10px; }
.fleet-item p { color: #888; font-size: 0.95rem; }

/* AREAS WE SERVE */
.areas-list-bl { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; padding: 20px; }
.area-card { text-align: center; }
.area-card img { width: 100%; border-radius: 20px; margin-bottom: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.area-card h3 { color: #000 !important; font-weight: 700; }

/* FOOTER */
.footer { background: #000; padding: 80px 20px 40px; text-align: center; color: #fff; }
.footer__social-row { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.social-btn { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--gold); color: var(--gold); text-decoration: none; font-size: 1.2rem; transition: 0.3s; }
.social-btn:hover { background: var(--gold); color: #000; transform: translateY(-3px); }
.footer__links-row { display: flex; justify-content: center; gap: 40px; margin-bottom: 25px; }
.footer__links-row a { color: #888; text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.footer__links-row a:hover { color: #fff; }
.footer__copyright { color: #444; font-size: 0.8rem; letter-spacing: 1px; }

/* VEHICLE SELECTION CARDS (STEP 2) */
.bl-vehicle-card { background: #fff; border-radius: 24px; padding: 20px; margin-bottom: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); display: flex; align-items: center; gap: 20px; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
.bl-vehicle-card.active { border-color: var(--maroon); }
.bl-v-img { width: 120px; height: 80px; object-fit: contain; }
.bl-v-content { flex: 1; }
.bl-v-title { font-weight: 800; font-size: 1rem; }
.bl-v-price { font-size: 1.2rem; font-weight: 900; color: var(--maroon); }

/* PAYMENT MODAL - LIGHT THEME WITH GREY FIELDS */
.payment-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 3000; backdrop-filter: blur(8px); }
.payment-modal { background: #fff; border: 1px solid #ddd; border-radius: 28px; width: 100%; max-width: 440px; position: relative; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.15); color: #1a1a1a; }
.payment-modal__close { position: absolute; top: 20px; right: 20px; background: #eee; border: none; color: #666; width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }

.payment-modal__header { padding: 40px 30px 30px; text-align: center; border-bottom: 1px solid #f1f3f9; }
.payment-modal__brand img { height: 40px; margin-bottom: 12px; }
.payment-modal__secure { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 6px; }

.payment-modal__summary { padding: 25px 30px; background: #f8f9fc; }
.payment-modal__line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.payment-modal__line span { color: #888; font-size: 0.85rem; font-weight: 600; }
.payment-modal__line b, .payment-modal__line span:last-child { color: #1a1a1a; font-weight: 800; font-size: 0.95rem; }
.payment-modal__line.total-row span { color: var(--maroon); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.payment-modal__line.total-row b { font-size: 1.6rem; color: #1a1a1a; letter-spacing: -0.5px; }
.payment-modal__divider { height: 1px; background: #eee; margin: 15px 0; }

.payment-modal__form { padding: 30px; }
.payment-modal__field { margin-bottom: 20px; }
.payment-modal__field label { display: block; font-size: 0.7rem; color: #999; text-transform: uppercase; font-weight: 800; margin-bottom: 10px; letter-spacing: 1px; }

/* GREY FIELD STYLING */
.payment-modal__field input, .stripe-input { 
    width: 100%; 
    padding: 16px; 
    background: var(--modal-field-bg) !important; 
    border: 1px solid #eee !important; 
    border-radius: 12px; 
    color: #1a1a1a !important; 
    font-size: 1rem; 
    transition: 0.3s; 
    box-sizing: border-box;
}
.payment-modal__field input:focus { border-color: var(--maroon) !important; outline: none; background: #fff !important; }

.payment-modal__pay-btn { width: 100%; padding: 22px; background: var(--gold); border: none; border-radius: 16px; font-weight: 900; color: #000; text-transform: uppercase; cursor: pointer; font-size: 1.1rem; letter-spacing: 1px; transition: 0.3s; margin-top: 10px; }
.payment-modal__pay-btn:hover { transform: translateY(-2px); background: #eac54f; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); }

/* ELITE CONTINUE BUTTON */
.bl-continue-btn {
    display: block; width: calc(100% - 40px); max-width: 460px; margin: 30px auto;
    padding: 22px; background: var(--maroon); color: #fff; border: none; border-radius: 18px;
    font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; box-shadow: 0 10px 30px rgba(93, 43, 69, 0.3);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; text-decoration: none;
}
.bl-continue-btn:hover { background: #451a31; transform: translateY(-2px); box-shadow: 0 15px 40px rgba(93, 43, 69, 0.4); }

@media (max-width: 768px) {
    .bl-continue-btn { width: calc(100% - 40px); padding: 18px; font-size: 1.1rem; }
    .hero-title-sm2 { font-size: 2.2rem; margin: 40px 0 30px; }
}
