/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red: #c0392b;
    --red-dark: #96281b;
    --red-light: #e74c3c;
    --black: #1a1a1a;
    --dark: #2c2c2c;
    --grey: #555;
    --light-grey: #f5f5f5;
    --border: #e0e0e0;
    --white: #ffffff;
    --beige: #f5e6c8;
    --beige-dark: #ecd9b0;
    --green: #27ae60;
    --green-dark: #1e8449;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --radius: 8px;
    --font: 'Poppins', sans-serif;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    background-image: url('/images/bg-texture.webp');
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    font-size: 15px;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 5%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img { height: 50px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 4px;
    transition: color .2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--green); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 200px;
    z-index: 999;
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark);
    transition: background .15s;
}
.dropdown-menu a:hover { background: var(--light-grey); color: var(--red); }
.dropdown:hover .dropdown-menu { display: block; }

/* sub-dropdown */
.subdropdown { position: relative; }
.subdropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 180px;
}
.subdropdown:hover .subdropdown-menu { display: block; }

.nav-book-btn {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    margin-left: 10px;
    transition: background .2s !important;
}
.nav-book-btn:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ===== APP DOWNLOAD SECTION ===== */
.app-download-section {
    background: rgba(255,255,255,0.93);
    padding: 50px 5%;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.app-download-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}
.app-download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-download-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.2);
    object-fit: cover;
    max-height: 340px;
    object-position: center top;
}
.app-download-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.app-download-text p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}
.app-badges-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.app-badge-link img {
    height: 52px;
    border-radius: 10px;
    transition: transform .2s, box-shadow .2s;
}
.app-badge-link:hover img {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* ===== HERO BANNER ===== */
.hero-banner {
    padding: 70px 5% 60px;
}
.hero-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-text {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.hero-text h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.hero-text p {
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 26px;
    line-height: 1.7;
}
.hero-btns-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.hero-guarantee {
    font-size: 13px;
    color: var(--grey);
    font-style: italic;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    object-fit: cover;
}

/* ===== VEHICLE CARDS SECTION ===== */
.vehicle-section {
    padding: 60px 5%;
    background: rgba(255,255,255,0.88);
}
.vehicle-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.vehicle-section-header .strategy-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.vehicle-section-header h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.vehicle-section-header p {
    color: var(--grey);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}
.vehicle-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.vehicle-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 8px 30px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vehicle-card:hover { transform: scale(1.03); box-shadow: 0 14px 44px rgba(0,0,0,0.3); }
.vehicle-card-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 0;
}
.vehicle-card-img img {
    max-height: 170px;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.vehicle-card-overlay {
    position: relative;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    padding: 40px 20px 18px;
    text-align: center;
}
.vehicle-card-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.vehicle-card-overlay a,
.vehicle-card-overlay span {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.vehicle-card-overlay a:hover,
.vehicle-card:hover .vehicle-card-overlay span { background: var(--red-dark); }

/* ===== TIME TO COMPLETE SECTION ===== */
.time-complete-section {
    padding: 50px 5%;
    background: rgba(245,230,200,0.88);
}
.time-complete-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.time-complete-inner h2 {
    text-align: center;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--dark);
}
.class-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.class-icon-item {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 22px 12px 18px;
    text-align: center;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.class-icon-item:hover { transform: translateY(-4px); }
.class-icon-item .ci-icon { font-size: 2.4rem; margin-bottom: 10px; display: block; }
.class-icon-item h4 { font-size: 0.8rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.class-icon-item p { font-size: 0.72rem; color: var(--grey); line-height: 1.4; }

/* Buttons */
.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--red);
    transition: .2s;
    display: inline-block;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--dark);
    transition: .2s;
    display: inline-block;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ===== SECTIONS ===== */
.section { padding: 70px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
    display: inline-block;
    background: rgba(192,57,43,.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--black); }
.section-header p { color: var(--grey); max-width: 550px; margin: 12px auto 0; }
.bg-light { background: rgba(245,230,200,0.88); }
.bg-white { background: rgba(255,255,255,0.92); }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--grey); font-size: 14px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.price-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    position: relative;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 8px 24px rgba(192,57,43,.15); }
.price-card.featured {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(192,57,43,.2);
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    white-space: nowrap;
}
.price-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; }
.price-amount .price-currency { font-size: 1.2rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.price-amount .price-old { font-size: 1rem; font-weight: 400; color: var(--grey); text-decoration: line-through; margin-left: 6px; }
.price-features { margin: 18px 0; }
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--grey);
    margin-bottom: 8px;
}
.price-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.price-card .btn-book {
    display: block;
    text-align: center;
    background: var(--red);
    color: var(--white);
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 14px;
    transition: background .2s;
}
.price-card .btn-book:hover { background: var(--red-dark); }

/* ===== BOOKING PAGE ===== */
.booking-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.booking-info h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 14px; }
.booking-info p { color: var(--grey); margin-bottom: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-weight: 600; }
.info-item span { color: var(--grey); font-size: 14px; }

.booking-form-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
    border: 1px solid var(--border);
}
.booking-form-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--dark); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group label span { color: var(--red); }
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 14.5px;
    font-family: var(--font);
    color: var(--dark);
    transition: border-color .2s;
    background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--red); }
.form-control.input-error { border-color: #e74c3c; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit-btn {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: background .2s;
    margin-top: 6px;
}
.form-submit-btn:hover { background: var(--red-dark); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Slots */
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.slot-btn {
    padding: 9px 4px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    font-family: var(--font);
    font-size: 13px;
    cursor: pointer;
    transition: .15s;
    color: var(--dark);
    font-weight: 500;
}
.slot-btn:hover { border-color: var(--red); color: var(--red); }
.slot-btn.selected { background: var(--red); color: var(--white); border-color: var(--red); }
.slot-btn:disabled { background: var(--light-grey); color: #bbb; cursor: not-allowed; border-color: var(--border); }

/* Alert */
.alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    display: none;
}
.alert.show { display: block; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.field-error { color: var(--red); font-size: 12px; margin-top: 4px; display: block; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-box { padding: 0; }
.contact-info-box h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-box > p { color: var(--grey); margin-bottom: 30px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; padding: 18px; background: var(--light-grey); border-radius: var(--radius); }
.contact-detail-icon { font-size: 22px; flex-shrink: 0; }
.contact-detail h4 { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.contact-detail p { color: var(--grey); font-size: 14px; }
.contact-detail a { color: var(--red); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--light-grey);
    color: var(--dark);
    transition: .2s;
    text-decoration: none;
}
.social-link:hover { background: var(--red); color: var(--white); }
.map-embed { margin-top: 24px; border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 250px; border: 0; display: block; }

/* ===== SERVICES PAGE ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s;
    border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-4px); }
.service-card-img { height: 180px; background: linear-gradient(135deg, var(--black), var(--red)); display: flex; align-items: center; justify-content: center; font-size: 56px; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card-body p { color: var(--grey); font-size: 14px; margin-bottom: 16px; }

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,.85);
    padding: 60px 5% 24px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo img { height: 70px; width: auto; margin-bottom: 14px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,.7);
    transition: .2s;
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul a:hover { color: var(--red-light); }
.footer-app-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; width: 100%; }
.footer-app-btns img { height: 38px; border-radius: 6px; }
.footer-app-btns .app-badge-svg { display: block; width: 100%; }
.footer-app-btns .app-badge-svg svg { width: 100%; height: auto; display: block; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--red-light); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--beige);
    color: var(--dark);
    padding: 50px 5%;
    text-align: center;
    border-bottom: 1px solid var(--beige-dark);
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--dark); }
.page-header p { color: var(--grey); margin-top: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: var(--grey); margin-top: 12px; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ===== STATS ===== */
.stats-bar { background: var(--red); padding: 40px 5%; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 2.2rem; font-weight: 800; color: var(--white); }
.stat-item p { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 4px; }

/* ===== SUCCESS PAGE ===== */
.success-wrap { max-width: 560px; margin: 80px auto; text-align: center; padding: 0 5%; }
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-wrap h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.success-wrap p { color: var(--grey); margin-bottom: 28px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.about-text p { color: var(--grey); margin-bottom: 14px; }
.about-checks { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-check { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about-check::before { content: '✓'; background: var(--red); color: var(--white); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }

/* ===== HERO ORANGE BUTTON ===== */
.btn-hero-orange {
    background: #e67e22;
    color: var(--white);
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #e67e22;
    transition: .2s;
    display: inline-block;
}
.btn-hero-orange:hover { background: #ca6f1e; border-color: #ca6f1e; color: var(--white); }

/* ===== TWO-COLUMN SECTIONS ===== */
.twocol-section { padding: 70px 5%; background: rgba(255,255,255,0.92); }
.twocol-section.twocol-alt { background: rgba(245,230,200,0.90); }
.bg-white-semi { background: rgba(255,255,255,0.92); }
.bg-beige-semi { background: rgba(245,230,200,0.90); }
.twocol-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.twocol-text h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    line-height: 1.2;
}
.twocol-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.twocol-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.twocol-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}
.twocol-item p { font-size: 14.5px; color: var(--grey); line-height: 1.7; }
.twocol-image { display: flex; align-items: center; justify-content: center; }
.twocol-image img {
    width: 100%;
    max-width: 440px;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.2);
    object-fit: cover;
    max-height: 520px;
}

/* ===== INFO TEXT SECTION ===== */
.info-text-section { padding: 70px 5%; }
.bg-dark-section { background: rgba(28,35,44,0.94); }
.info-text-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.info-text-inner h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}
.info-text-inner p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.info-text-inner p:last-child { margin-bottom: 0; }

/* ===== HOW TO PASS SECTION ===== */
.howto-section { padding: 70px 5%; background: rgba(255,255,255,0.92); }
.howto-inner { max-width: 1200px; margin: 0 auto; }
.howto-inner h2 {
    text-align: center;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 44px;
}
.howto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.howto-item {
    background: rgba(255,255,255,0.92);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .2s, box-shadow .2s;
}
.howto-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.13); }
.howto-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red);
    opacity: .18;
    line-height: 1;
    margin-bottom: 10px;
}
.howto-item h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.howto-item p { font-size: 13.5px; color: var(--grey); line-height: 1.7; }

/* ===== TIPS SECTION ===== */
.tips-section { padding: 70px 5%; background: rgba(245,230,200,0.90); }
.tips-inner { max-width: 900px; margin: 0 auto; }
.tips-inner h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    text-align: center;
}
.tips-list { display: flex; flex-direction: column; gap: 14px; }
.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.6;
    padding: 16px 20px;
    background: rgba(255,255,255,0.88);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.tips-list li::before {
    content: '✓';
    background: var(--green);
    color: #fff;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 70px 5%; background: rgba(245,230,200,0.90); }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 44px; }
.reviews-header img { height: 48px; margin-bottom: 14px; }
.reviews-header h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; color: var(--dark); }
.reviews-carousel-wrap { overflow: hidden; position: relative; }
.reviews-track { display: flex; transition: transform 0.5s ease; }
.review-card {
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    min-width: 0;
    margin: 0 7px;
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.09);
    flex-shrink: 0;
    overflow-wrap: break-word;
}
.review-stars { color: #f39c12; font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.review-author span { font-size: 12px; color: var(--grey); }
.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.rdot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.rdot.active { background: var(--red); transform: scale(1.3); }

/* ===== CTA FULL SECTION ===== */
.cta-full-section { padding: 70px 5% 0; background: rgba(28,35,44,0.94); }
.cta-full-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: end;
}
.cta-full-text { padding-bottom: 60px; color: #fff; }
.cta-full-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.cta-full-text p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.cta-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    text-decoration: none;
    transition: color .2s;
}
.cta-phone-link:hover { color: #e67e22; }
.cta-book-btn { font-size: 16px; padding: 15px 40px; }
.cta-full-image { display: flex; align-items: flex-end; }
.cta-full-image img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    display: block;
    max-height: 380px;
    object-position: center top;
}

/* ===== SVG ICON CIRCLES ===== */
.ci-icon-wrap {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: rgba(192,57,43,0.1);
    border: 2px solid rgba(192,57,43,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--red);
    padding: 14px;
}
.ci-icon-wrap svg { width: 100%; height: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.15); gap: 2px; }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { padding: 11px 14px; border-radius: 6px; }
    .dropdown-menu, .subdropdown-menu { position: static; box-shadow: none; padding-left: 20px; }
    .hamburger { display: flex; }
    .hero-banner-inner { grid-template-columns: 1fr; }
    .hero-image { margin-top: 10px; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .class-icons-grid { grid-template-columns: repeat(3, 1fr); }
    .booking-wrap { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    /* App download responsive */
    .app-download-inner { grid-template-columns: 1fr; gap: 30px; }
    .app-download-image img { max-height: 220px; }
    /* New sections responsive */
    .twocol-inner { grid-template-columns: 1fr; gap: 36px; }
    .twocol-image { order: -1; }
    .twocol-image img { max-height: 280px; max-width: 100%; }
    .howto-grid { grid-template-columns: 1fr 1fr; }
    .cta-full-inner { grid-template-columns: 1fr; }
    .cta-full-text { padding-bottom: 0; }
    .cta-full-image img { max-height: 220px; border-radius: 12px; margin-top: 32px; }
    .review-card { flex-basis: calc(50% - 14px); width: calc(50% - 14px); }
}
@media (max-width: 480px) {
    .hero-banner { padding: 40px 5% 30px; }
    .hero-text { padding: 26px 20px; }
    .section { padding: 50px 5%; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .class-icons-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicle-grid { grid-template-columns: 1fr; }
    .howto-grid { grid-template-columns: 1fr; }
    .review-card { flex-basis: calc(100% - 14px); width: calc(100% - 14px); }
    .cta-phone-link { font-size: 1.2rem; }
}

/* ===== NAV LOGO TEXT FALLBACK ===== */
.nav-logo-text {
    flex-direction: column;
    line-height: 1.1;
    gap: 0;
}
.logo-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a1a;
}
.logo-sub {
    font-size: 0.62rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== VEHICLE CARD ICON FALLBACK ===== */
.vc-icon-fallback {
    font-size: 4rem;
    display: block;
    text-align: center;
}
.vehicle-card-img img + .vc-icon-fallback { display: none; }
.vehicle-card-img img[style*="display:none"] + .vc-icon-fallback,
.vehicle-card-img img[style*="display: none"] + .vc-icon-fallback { display: block; }

/* ===== FOOTER BADGE BUTTONS ===== */
.footer-badge-btn {
    display: block;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s;
}
.footer-badge-btn:hover { border-color: #888; }
.footer-badge-btn img { height: 40px; display: block; }
.footer-badge-fallback {
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}
.footer-badge-fallback small { font-size: 9px; font-weight: 400; opacity: .75; }

/* ===== APP BADGE SVG LINK ===== */
.app-badge-svg {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    transition: transform .2s, box-shadow .2s;
    line-height: 0;
}
.app-badge-svg:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.25); }

/* ===== APP BADGES BAR (top of homepage) ===== */
.app-badges-bar {
    background: rgba(255,255,255,0.96);
    padding: 14px 5%;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.app-badges-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.app-badges-inner .app-badge-link img {
    height: 48px;
    border-radius: 8px;
    transition: transform .2s, box-shadow .2s;
    display: block;
}
.app-badges-inner .app-badge-link:hover img {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ===== HERO SECTION (new) ===== */
.hero-section {
    padding: 60px 5%;
    background: rgba(255,255,255,0.88);
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-content {
    padding: 40px 40px 40px 0;
}
.hero-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 18px;
}
.hero-content > p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.hero-guarantee {
    font-size: 13px;
    color: var(--grey);
    font-style: italic;
    margin-top: 12px;
}
.btn-book-hero {
    display: inline-flex;
    align-items: center;
    background: #e67e22;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    line-height: 1.3;
}
.btn-book-hero:hover { background: #ca6f1e; transform: translateY(-1px); color: #fff; }
.hero-phone-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-phone-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    object-fit: cover;
    max-height: 480px;
    object-position: center top;
}

/* ===== INFO DARK SECTION (what is class 1-7) ===== */
.info-dark-section {
    padding: 70px 5%;
    background: rgba(28,35,44,0.94);
}
.info-dark-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.info-dark-inner h3 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}
.info-dark-inner p {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.85;
}

/* ===== HOW TO PASS (cards with icon) ===== */
.howto-card {
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .2s, box-shadow .2s;
    text-align: center;
}
.howto-card:hover { transform: translateY(-5px); box-shadow: 0 12px 34px rgba(0,0,0,0.13); }
.howto-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(192,57,43,0.1);
    border: 2px solid rgba(192,57,43,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--red);
    padding: 14px;
}
.howto-icon svg { width: 100%; height: 100%; }
.howto-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.howto-card p { font-size: 13.5px; color: var(--grey); line-height: 1.7; }

/* ===== TIPS CHECKLIST ===== */
.tips-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tips-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.6;
    padding: 16px 20px;
    background: rgba(255,255,255,0.88);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.check-icon {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

/* ===== CTA SECTION (new PHP-style) ===== */
.cta-section {
    background: rgba(28,35,44,0.95);
    padding: 70px 5% 0;
}
.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: end;
}
.cta-text {
    padding-bottom: 60px;
    color: #fff;
}
.cta-text h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e67e22;
    margin-bottom: 10px;
}
.cta-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.cta-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.18);
    margin: 20px 0 28px;
}
.btn-book-now {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.btn-book-now:hover { background: #ca6f1e; transform: translateY(-1px); color: #fff; }
.cta-office-img { display: flex; align-items: flex-end; }
.cta-office-img img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    display: block;
    max-height: 380px;
    object-position: center top;
}

/* Hero single-column override */
.hero-inner.hero-single {
    grid-template-columns: 1fr;
    max-width: 860px;
}
.hero-inner.hero-single .hero-content {
    padding: 0;
    text-align: center;
}
.hero-inner.hero-single .btn-book-hero { margin: 0 auto; }
.hero-inner.hero-single .hero-guarantee { text-align: center; }

/* Two-col subtitle and divider */
.twocol-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 16px;
    line-height: 1.4;
}
.twocol-divider {
    border: none;
    border-top: 2px solid var(--border);
    margin-bottom: 28px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero-content { padding: 0; }
    .hero-phone-img img { max-height: 260px; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-text { padding-bottom: 0; }
    .cta-office-img img { max-height: 220px; border-radius: 12px; margin-top: 28px; }
    .howto-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hero-section { padding: 36px 5% 28px; }
    .howto-grid { grid-template-columns: 1fr; }
    .cta-text h2 { font-size: 1.6rem; }
}
