/* ===== VARIABLES ===== */
:root {
    --navy: #16265a;
    --navy-dark: #0f1c45;
    --navy-hover: #1f3a7a;
    --gold: #f5b81d;
    --gold-dark: #e0a50c;
    --text-dark: #1f2937;
    --text-gray: #5b6472;
    --line: #e8ebf0;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); overflow-x: hidden; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); color: #e6ecf7; font-size: 13.5px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 11px 24px; gap: 20px; }
.top-left { display: flex; gap: 30px; align-items: center; }
.top-bar i { color: var(--gold); margin-right: 8px; }
.top-bar a, .top-bar span { color: #e6ecf7; transition: color 0.25s; }
.top-bar a:hover { color: var(--gold); }

/* ===== HEADER / NAVBAR ===== */
header { background: #fff; box-shadow: 0 2px 18px rgba(0,0,0,0.07); position: sticky; top: 0; z-index: 1100; }
nav { display: flex; align-items: center; gap: 24px; padding: 14px 24px; }
.logo-img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 6px; align-items: center; margin: 0 auto; }
.nav-links a { font-size: 15.5px; padding: 8px 11px; text-transform: uppercase; position: relative; transition: color 0.25s; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after { content: ''; position: absolute; left: 4px; right: 4px; bottom: -4px; height: 3px; background: var(--gold); border-radius: 2px; }
.nav-book-btn { background: var(--navy); color: #fff; padding: 13px 26px; border-radius: 8px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 9px; transition: background 0.25s, transform 0.25s; white-space: nowrap; }
.nav-book-btn:hover { background: var(--navy-hover); transform: translateY(-1px); }
.nav-book-drawer { display: none; }
.nav-close-li { display: none; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(6,15,35,0.55); z-index: 1090; }
.nav-overlay.show { display: block; }
body.menu-open { overflow: hidden; }
.menu-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--navy); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    background: linear-gradient(90deg, rgba(247,249,251,0.86) 0%, rgba(247,249,251,0.45) 22%, rgba(247,249,251,0.08) 42%, rgba(247,249,251,0) 58%), url('hero-image.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}
.hero-body { flex: 1; display: flex; align-items: center; padding: 50px 0 30px; }
.hero-body .container { width: 100%; }
.hero-content { max-width: 660px; }
.hero-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    color: var(--gold-dark);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 16px;
}
.hero-badge::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: var(--gold); border-radius: 2px; }
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    line-height: 1.12;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero-content p { font-size: 18px; color: var(--text-gray); max-width: 430px; line-height: 1.7; }

/* ===== SEARCH BAR ===== */
.search-wrap { position: relative; z-index: 3; padding-bottom: 12px; }
.search-card { background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(6,20,55,0.22); display: flex; align-items: stretch; padding: 12px; }
.search-field { flex: 1; padding: 12px 22px; min-width: 0; }
.search-field label { display: block; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.search-input { display: flex; align-items: center; gap: 10px; }
.search-input > i:first-child { color: var(--gold-dark); font-size: 16px; flex-shrink: 0; }
.search-input input { border: none; outline: none; width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text-dark); background: transparent; }
.search-input input::placeholder { color: #9aa4b2; }
.search-input .chevron { color: #b7bfca; font-size: 12px; flex-shrink: 0; }
.search-input select { border: none; outline: none; width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text-dark); background: transparent; cursor: pointer; -webkit-appearance: none; appearance: none; }
.search-divider { width: 1px; background: var(--line); margin: 10px 0; flex-shrink: 0; }
.search-btn { background: var(--gold); color: var(--navy-dark); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; border: none; border-radius: 12px; padding: 0 34px; display: flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap; transition: background 0.25s, transform 0.25s; margin: 4px; }
.search-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Searchable dropdown */
.dd { position: relative; }
.dd-control { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.dd-control > i:first-child { color: var(--gold-dark); font-size: 16px; flex-shrink: 0; }
.dd-search { border: none; outline: none; width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text-dark); background: transparent; cursor: pointer; }
.dd-search::placeholder { color: #9aa4b2; }
.dd-control .chevron { color: #b7bfca; font-size: 12px; flex-shrink: 0; transition: transform 0.2s; }
.dd.open .chevron { transform: rotate(180deg); }
.dd-menu { display: none; position: absolute; top: calc(100% + 12px); left: -14px; right: -14px; background: #fff; border-radius: 10px; box-shadow: 0 16px 40px rgba(6,20,55,0.22); max-height: 250px; overflow-y: auto; z-index: 60; padding: 6px; }
.dd.open .dd-menu { display: block; }
.dd-item { padding: 10px 14px; font-size: 14px; color: var(--text-dark); border-radius: 7px; cursor: pointer; transition: background 0.15s; }
.dd-item:hover, .dd-item.active { background: #eef3fb; color: var(--navy); }
.dd-empty { padding: 12px 14px; font-size: 13px; color: #9aa4b2; text-align: center; }

/* Fare result strip */
.fare-result { display: none; margin-top: 14px; background: #fff; border-radius: 12px; box-shadow: 0 14px 36px rgba(6,20,55,0.16); padding: 15px 22px; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-left: 5px solid var(--gold); }
.fare-result.show { display: flex; }
.fr-route { font-size: 14px; color: var(--text-gray); }
.fr-route strong { color: var(--navy); font-weight: 700; }
.fr-fare { font-size: 14px; color: var(--text-gray); }
.fr-fare b { color: var(--navy); font-size: 22px; font-weight: 800; margin-left: 4px; }
.fr-book { background: #25D366; color: #fff; font-weight: 600; font-size: 14px; border: none; border-radius: 8px; padding: 11px 20px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; transition: 0.25s; text-decoration: none; }
.fr-book:hover { background: #1ea952; }
.fare-result.warn { border-left-color: var(--navy); }
.fr-note { font-size: 14px; color: var(--text-gray); }

/* ===== TRUST STRIP ===== */
.hero-trust { background: linear-gradient(0deg, rgba(9,18,42,0.86) 0%, rgba(9,18,42,0.55) 55%, rgba(9,18,42,0) 100%); padding: 46px 0 28px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item i { font-size: 30px; color: #fff; flex-shrink: 0; }
.trust-item h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.trust-item p { font-size: 12.5px; color: #c2cde2; }

/* ===== STICKY WHATSAPP ===== */
.wa-float { position: fixed; right: 22px; bottom: 24px; width: 58px; height: 58px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 6px 20px rgba(37,211,102,0.45); z-index: 999; transition: transform 0.25s; animation: waPulse 2.2s infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.call-float { position: fixed; right: 22px; bottom: 92px; width: 58px; height: 58px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 25px; box-shadow: 0 6px 20px rgba(22,38,90,0.45); z-index: 999; transition: transform 0.25s; animation: callPulse 2.2s infinite; }
.call-float:hover { transform: scale(1.1); }
@keyframes callPulse { 0% { box-shadow: 0 0 0 0 rgba(22,38,90,0.5); } 70% { box-shadow: 0 0 0 16px rgba(22,38,90,0); } 100% { box-shadow: 0 0 0 0 rgba(22,38,90,0); } }

/* ===== ABOUT US ===== */
.about {
    background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.82) 34%, rgba(255,255,255,0.35) 54%, rgba(255,255,255,0) 70%), url('index-about.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 56px 0;
    display: flex;
    align-items: center;
}
.about .container { width: 100%; }
.about-content { max-width: 700px; }
.about-badge { display: inline-block; color: var(--gold-dark); font-size: 15px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; position: relative; padding-bottom: 14px; margin-bottom: 20px; }
.about-badge::after { content: ''; position: absolute; left: 0; bottom: 0; width: 45px; height: 3px; background: var(--gold); border-radius: 2px; }
.about-title { font-size: 46px; line-height: 1.15; font-weight: 700; color: var(--navy); position: relative; padding-bottom: 22px; margin-bottom: 22px; letter-spacing: -0.5px; }
.about-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 150px; height: 4px; background: var(--gold); border-radius: 2px; }
.about-text { font-size: 16px; color: var(--text-gray); line-height: 1.7; max-width: 560px; margin-bottom: 30px; }

.about-features { display: flex; align-items: flex-start; margin-bottom: 30px; }
.feature { flex: 1; padding: 0 18px; }
.feature:first-child { padding-left: 0; }
.feature-icon { width: 52px; height: 52px; border-radius: 50%; background: #fdf3d6; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.feature-icon i { color: var(--gold-dark); font-size: 22px; }
.feature h4 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 7px; min-height: 39px; }
.feature p { font-size: 12.5px; color: var(--text-gray); line-height: 1.5; }
.feature-divider { align-self: stretch; width: 1px; background: #e3e7ee; margin: 2px 0; flex-shrink: 0; }

.about-cta { display: inline-flex; align-items: center; gap: 18px; background: var(--navy); border-radius: 12px; padding: 16px 28px; box-shadow: 0 12px 30px rgba(22,38,90,0.25); }
.about-cta > i { font-size: 32px; color: var(--gold); }
.about-cta-text { display: flex; flex-direction: column; gap: 2px; border-left: 2px solid rgba(245,184,29,0.55); padding-left: 18px; }
.about-cta-text strong { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 0.6px; }
.about-cta-text span { color: #c9d3e6; font-size: 14px; }

/* ===== WHY CHOOSE US ===== */
.why-choose {
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 40%, rgba(255,255,255,0.35) 60%, rgba(255,255,255,0) 76%), url('why-choose-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 38px 0 0;
    position: relative;
}
.wcu-badge { display: inline-block; color: var(--gold-dark); font-size: 15px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; position: relative; padding-bottom: 12px; margin-bottom: 14px; }
.wcu-badge::after { content: ''; position: absolute; left: 0; bottom: 0; width: 55px; height: 4px; background: var(--gold); border-radius: 2px; }
.wcu-title { font-size: 40px; line-height: 1.15; font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.5px; }
.wcu-text { font-size: 15.5px; color: var(--text-gray); line-height: 1.6; max-width: 500px; margin-bottom: 20px; }

.wcu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; max-width: 760px; padding-bottom: 26px; }
.wcu-card { background: rgba(255,255,255,0.9); border: 1px solid rgba(20,40,90,0.06); border-radius: 12px; padding: 18px 16px; text-align: center; box-shadow: 0 10px 28px rgba(20,40,90,0.09); transition: transform 0.25s, box-shadow 0.25s; }
.wcu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,40,90,0.14); }
.wcu-icon { width: 50px; height: 50px; border-radius: 50%; background: #e8f0fb; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.wcu-icon i { color: var(--navy); font-size: 21px; }
.wcu-card h4 { color: var(--navy); font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.wcu-card p { color: var(--text-gray); font-size: 12.5px; line-height: 1.5; }

/* Navy tagline band with wave top */
.wcu-band { background: var(--navy); position: relative; margin-top: 16px; padding: 20px 0 18px; }
.wcu-band-wave { position: absolute; left: 0; bottom: 100%; width: 100%; height: 52px; display: block; }
.wcu-band-inner { display: flex; align-items: center; justify-content: center; gap: 20px; }
.wcu-band > .container > i, .wcu-band-inner > i { font-size: 34px; color: var(--gold); }
.wcu-band-divider { width: 2px; height: 40px; background: rgba(245,184,29,0.6); border-radius: 2px; }
.wcu-band-inner p { color: #fff; font-size: 20px; line-height: 1.35; }
.wcu-band-inner p strong { color: var(--gold); font-weight: 700; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); color: #b3bfd6; padding-top: 55px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 34px; padding-bottom: 38px; }
.footer-logo { display: flex; align-items: center; gap: 11px; color: #fff; margin-bottom: 16px; }
.footer-logo i { color: var(--gold); font-size: 30px; }
.footer-logo span { display: flex; flex-direction: column; line-height: 1.15; font-size: 22px; font-weight: 700; }
.footer-logo small { font-size: 10.5px; color: var(--gold); font-weight: 500; letter-spacing: 2px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; margin-bottom: 18px; max-width: 330px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: 0.25s; }
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 3px; background: var(--gold); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: #b3bfd6; transition: 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a i { color: var(--gold); font-size: 12px; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact p { font-size: 13.5px; line-height: 1.6; margin-bottom: 13px; display: flex; gap: 10px; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 15px; }
.footer-contact a { color: #b3bfd6; transition: 0.25s; word-break: break-word; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer-bottom p { font-size: 12.5px; color: #8593b0; }
.footer-tagline { color: var(--gold) !important; font-weight: 500; letter-spacing: 0.5px; }

/* ===== FULL-WIDTH PROMO BANNER ===== */
.promo-banner { display: block; width: 100%; line-height: 0; transition: opacity 0.25s; }
.promo-banner:hover { opacity: 0.94; }
.promo-banner img { width: 100%; height: auto; display: block; }

/* ===== ENQUIRY MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(6,15,35,0.72); z-index: 2000; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity 0.3s; }
.modal-overlay.show { display: flex; opacity: 1; }
.modal-box { background: #fff; border-radius: 16px; max-width: 820px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 30px 70px rgba(0,0,0,0.4); transform: scale(0.94); transition: transform 0.3s; scrollbar-width: none; -ms-overflow-style: none; }
.modal-box::-webkit-scrollbar { width: 0; height: 0; display: none; }
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-close { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.45); color: #fff; border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 15px; z-index: 10; transition: background 0.25s; }
.modal-close:hover { background: var(--navy); }
.modal-grid { display: grid; grid-template-columns: 1fr 1.05fr; }
.modal-img { background-size: cover; background-position: center; display: flex; align-items: flex-end; border-radius: 16px 0 0 16px; }
.modal-img-overlay { background: linear-gradient(0deg, rgba(6,15,35,0.92), rgba(6,15,35,0.1) 75%); color: #fff; padding: 24px 22px; width: 100%; border-radius: 0 0 0 16px; }
.modal-img-overlay h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.modal-img-overlay p { font-size: 13px; opacity: 0.9; margin-bottom: 10px; }
.modal-img-overlay ul li { font-size: 13px; padding: 3px 0; display: flex; gap: 9px; align-items: center; }
.modal-img-overlay ul li i { color: var(--gold); }
.modal-form { padding: 26px 28px; }
.modal-form h3 { color: var(--navy); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.modal-sub { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; }
.modal-form input, .modal-form select { width: 100%; padding: 10px 13px; margin-bottom: 10px; border: 1px solid #dde1e8; border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--text-dark); }
.modal-form input:focus, .modal-form select:focus { border-color: var(--navy); outline: none; }
.modal-form button { width: 100%; padding: 12px; margin-top: 2px; background: var(--gold); color: var(--navy-dark); border: none; border-radius: 8px; font-family: inherit; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.25s; }
.modal-form button:hover { background: var(--gold-dark); }
.modal-call { display: block; text-align: center; margin-top: 11px; font-size: 13px; color: var(--navy); font-weight: 600; }
.modal-call:hover { text-decoration: underline; }

/* ===== INNER PAGES ===== */
.page-hero { background: linear-gradient(rgba(15,28,69,0.86), rgba(15,28,69,0.92)), url('hero-image.jpg') center/cover no-repeat; color: #fff; padding: 66px 0 58px; text-align: center; }
.page-hero h1 { font-size: 42px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 14px; color: #c2cde2; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold); transition: 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #8fa0c0; }

.sec { padding: 66px 0; }
.sec.alt { background: #f5f7fa; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.sec-badge { display: inline-block; color: var(--gold-dark); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.5px; }
.sec-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: 14px auto 0; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-head.left .sec-title::after { margin-left: 0; }
.sec-title.left { text-align: left; }
.sec-title.left::after { margin: 14px 0 0; }
.sec-sub { font-size: 15.5px; color: var(--text-gray); line-height: 1.7; }

/* About intro */
.about-intro { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: center; }
.about-intro-img img { border-radius: 14px; box-shadow: 0 12px 30px rgba(20,40,90,0.12); width: 100%; }
.about-intro-text .sec-sub { margin-bottom: 14px; }
.about-list { margin: 18px 0; list-style: none; }
.about-list li { padding: 7px 0; display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--text-dark); }
.about-list li i { color: var(--gold-dark); }
.btn-navy { display: inline-flex; align-items: center; gap: 9px; background: var(--navy); color: #fff; padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; margin-top: 8px; transition: 0.25s; }
.btn-navy:hover { background: var(--navy-hover); }

/* Fleet cards (Rent Car) */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.fleet-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(20,40,90,0.07); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.fleet-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,40,90,0.14); }
.fleet-img { position: relative; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; transition: transform 0.4s; }
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-rate { position: absolute; bottom: 12px; right: 12px; background: var(--gold); color: var(--navy-dark); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 20px; }
.fleet-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.fleet-body h3 { color: var(--navy); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.fleet-body .fleet-model { font-size: 13.5px; color: var(--text-gray); margin-bottom: 16px; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 18px; }
.fleet-specs span { font-size: 13px; color: var(--text-dark); display: inline-flex; align-items: center; gap: 7px; }
.fleet-specs i { color: var(--gold-dark); font-size: 14px; }
.fleet-body .fleet-btn { margin-top: auto; background: var(--navy); color: #fff; text-align: center; padding: 12px; border-radius: 8px; font-weight: 600; font-size: 14.5px; transition: 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; width: 100%; }
.fleet-body .fleet-btn:hover { background: var(--gold); color: var(--navy-dark); }

/* Services strip (Rent Car page) */
.services-strip { margin-top: 46px; background: #f5f7fa; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.services-strip h3 { color: var(--navy); font-size: 20px; font-weight: 700; margin-bottom: 20px; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.service-chip { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 15px 16px; }
.service-chip > i { font-size: 22px; color: var(--gold-dark); flex-shrink: 0; }
.service-chip h4 { color: var(--navy); font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.service-chip p { font-size: 12.5px; color: var(--text-gray); }

/* Process steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { text-align: center; padding: 10px; position: relative; }
.step-num { width: 62px; height: 62px; border-radius: 50%; background: #e8f0fb; color: var(--navy); font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h4 { color: var(--navy); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-gray); line-height: 1.6; }

/* Stats */
.stats-band { background: linear-gradient(rgba(15,28,69,0.92), rgba(15,28,69,0.94)), url('why-choose-bg.jpg') center/cover; padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; color: #fff; }
.stat .num { font-size: 40px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat .label { font-size: 14px; color: #c8d3e6; margin-top: 8px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; box-shadow: 0 6px 18px rgba(20,40,90,0.05); }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 50%; background: #e8f0fb; color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item > div { min-width: 0; }
.contact-item h4 { color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-gray); line-height: 1.6; overflow-wrap: anywhere; }
.contact-item a:hover { color: var(--gold-dark); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: 0 10px 30px rgba(20,40,90,0.08); }
.contact-form h3 { color: var(--navy); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.contact-form .cf-sub { font-size: 13.5px; color: var(--text-gray); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 14px; margin-bottom: 14px; border: 1px solid #dde1e8; border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--text-dark); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--navy); outline: none; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button { width: 100%; padding: 14px; background: var(--gold); color: var(--navy-dark); border: none; border-radius: 8px; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.25s; }
.contact-form button:hover { background: var(--gold-dark); }
.map-embed { margin-top: 40px; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(20,40,90,0.1); line-height: 0; }
.map-embed iframe { width: 100%; height: 340px; border: 0; }

/* Booking page */
.book-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.book-panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: 0 10px 30px rgba(20,40,90,0.07); }
.book-panel h3 { color: var(--navy); font-size: 20px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.book-panel h3 i { color: var(--gold-dark); }
.calc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-field { min-width: 0; }
.calc-field > label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.calc-field .dd-control, .calc-field .fld { display: flex; align-items: center; gap: 9px; border: 1px solid #dde1e8; border-radius: 8px; padding: 11px 13px; background: #fff; cursor: pointer; }
.calc-field .dd-control > i:first-child, .calc-field .fld > i:first-child { color: var(--gold-dark); font-size: 15px; flex-shrink: 0; }
.calc-field .dd-search { border: none; outline: none; width: 100%; font-family: inherit; font-size: 14px; color: var(--text-dark); background: transparent; cursor: pointer; }
.calc-field .dd-search::placeholder { color: #9aa4b2; }
.calc-field .dd-control .chevron { color: #b7bfca; font-size: 12px; flex-shrink: 0; }
.calc-field .dd-menu { top: calc(100% + 6px); left: 0; right: 0; }
.calc-field .fld select { border: none; outline: none; width: 100%; font-family: inherit; font-size: 14px; color: var(--text-dark); background: transparent; cursor: pointer; -webkit-appearance: none; appearance: none; }
.calc-btn { grid-column: 1 / -1; background: var(--gold); color: var(--navy-dark); font-weight: 700; font-size: 15px; border: none; border-radius: 8px; padding: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: 0.25s; }
.calc-btn:hover { background: var(--gold-dark); }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.sitemap-col { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: 0 6px 18px rgba(20,40,90,0.05); }
.sitemap-col h3 { color: var(--navy); font-size: 17px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.sitemap-col ul li { margin-bottom: 11px; }
.sitemap-col ul li a { font-size: 14px; color: var(--text-gray); display: inline-flex; align-items: center; gap: 8px; transition: 0.2s; }
.sitemap-col ul li a i { color: var(--gold-dark); font-size: 12px; }
.sitemap-col ul li a:hover { color: var(--navy); padding-left: 3px; }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 50px 20px; }
.cta-band h2 { font-size: 30px; font-weight: 700; margin-bottom: 10px; }
.cta-band p { font-size: 15px; color: #c8d3e6; margin-bottom: 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-gold { background: var(--gold); color: var(--navy-dark); padding: 14px 30px; border-radius: 8px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 9px; transition: 0.25s; border: none; cursor: pointer; }
.cta-actions .btn-gold:hover { background: var(--gold-dark); }
.cta-actions .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 9px; transition: 0.25s; }
.cta-actions .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1150px) {
    .hero-content h1 { font-size: 50px; }
    .search-card { flex-wrap: wrap; }
    .search-field { flex: 1 1 46%; }
    .search-divider { display: none; }
    .search-btn { flex: 1 1 100%; padding: 16px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .about-title { font-size: 40px; }
    .wcu-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}

@media (max-width: 992px) {
    .nav-links { margin: 0; }
    .hero { background: linear-gradient(90deg, rgba(247,249,251,0.95) 0%, rgba(247,249,251,0.7) 45%, rgba(247,249,251,0.35) 100%), url('hero-image.jpg'); background-size: cover; background-position: center 30%; }
    .top-right { display: none; }
    .about { background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.55) 100%), url('index-about.jpg'); background-size: cover; background-position: center; }
    .about-content { max-width: 100%; }
    .about-features { flex-wrap: wrap; gap: 24px 0; }
    .feature { flex: 1 1 50%; padding: 0 20px; }
    .feature:nth-child(odd) { padding-left: 0; }
    .feature-divider { display: none; }
    .why-choose { background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 55%, rgba(255,255,255,0.55) 100%), url('why-choose-bg.jpg'); background-size: cover; background-position: center; }
    .wcu-grid { max-width: 100%; }
    .wcu-title { font-size: 40px; }
    .modal-grid { grid-template-columns: 1fr; }
    .modal-img { min-height: 200px; border-radius: 16px 16px 0 0; }
    .modal-img-overlay { border-radius: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .top-bar-inner { justify-content: center; }
    .top-email { display: none; }
    nav { flex-wrap: wrap; }
    .menu-toggle { display: block; margin-left: auto; }
    .nav-book-btn { display: none; }
    .nav-links {
        display: flex; flex-direction: column; align-items: stretch; gap: 0;
        position: fixed; top: 0; right: 0; height: 100vh; width: 290px; max-width: 84%;
        background: var(--navy); padding: 16px 22px 26px; margin: 0; border: none;
        transform: translateX(105%); transition: transform 0.32s ease;
        z-index: 1100; box-shadow: -12px 0 40px rgba(0,0,0,0.4); overflow-y: auto;
    }
    .nav-links.show { transform: translateX(0); }
    .nav-links li:not(.nav-close-li):not(.nav-book-drawer) { border-bottom: 1px solid rgba(255,255,255,0.12); }
    .nav-links a { display: block; padding: 15px 4px; color: #dbe3f2; font-size: 15px; letter-spacing: 0.4px; }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); padding-left: 8px; }
    .nav-links a.active::after { display: none; }
    .nav-close-li { display: block; text-align: right; margin-bottom: 8px; padding-bottom: 8px; }
    .nav-close { background: rgba(255,255,255,0.1); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: background 0.2s; }
    .nav-close:hover { background: var(--gold); color: var(--navy); }
    .nav-book-drawer { display: block; margin-top: 22px; }
    .nav-book-drawer a { background: var(--gold); color: var(--navy-dark); border-radius: 8px; justify-content: center; font-weight: 700; display: flex; align-items: center; gap: 9px; padding: 14px; }
    .nav-book-drawer a:hover { color: var(--navy-dark); }
    .nav-book-drawer a i { color: var(--navy-dark); }
    .logo-img { height: 60px; }
    .hero { min-height: auto; background: var(--navy-dark) url('hero-image-m.jpg') top center / contain no-repeat; padding-top: 60vw; }
    .hero-body { padding: 0 0 20px; }
    .hero-badge, .hero-content h1 { display: none; }
    .hero-content p { font-size: 15.5px; max-width: 100%; color: #fff; }
    .search-field { flex: 1 1 100%; padding: 14px 10px; }
    .search-field:not(:last-child) { border-bottom: 1px solid var(--line); }
    .hero-trust { display: none; }
    .about { min-height: auto; background: #fff url('second-hero-m.jpg') top center / contain no-repeat; padding: 111vw 0 40px; }
    .about-title { display: none; }
    .about-text { font-size: 15px; }
    .about-cta { display: none; }
    .about-features { display: none; }
    .feature { flex: 1 1 100%; padding: 15px 18px !important; display: flex; align-items: center; gap: 15px; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 6px 18px rgba(20,40,90,0.07); }
    .feature-icon { margin: 0; flex-shrink: 0; }
    .feature-text { flex: 1; min-width: 0; }
    .feature h4 { min-height: auto; margin-bottom: 3px; }
    .promo-banner { display: none; }
    .modal-form { padding: 28px 22px; }
    .why-choose { background: var(--navy-dark) url('why-choose-bg-m.jpg') top center / contain no-repeat; padding: 85vw 0 0; }
    .wcu-badge { color: #fff; }
    .wcu-text { color: #fff; }
    .wcu-grid { grid-template-columns: 1fr; gap: 14px; }
    .wcu-title { display: none; }
    .wcu-band-inner { flex-wrap: wrap; text-align: center; gap: 12px; padding: 0 10px; }
    .wcu-band-inner p { font-size: 16px; }
    .wcu-band-divider { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; text-align: left; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom-inner { justify-content: center; text-align: center; gap: 6px; }
    .page-hero { padding: 44px 0 40px; }
    .page-hero h1 { font-size: 30px; }
    .sec { padding: 44px 0; }
    .sec-title { font-size: 26px; }
    .sec-head { margin-bottom: 32px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .stat .num { font-size: 34px; }
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .map-embed iframe { height: 280px; }
    .cta-band h2 { font-size: 24px; }
    .book-panel { padding: 20px; }
    .calc-form { grid-template-columns: 1fr; }
    .fare-result { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 18px; }
    .fare-result .fr-book { width: 100%; justify-content: center; }
    .contact-form { padding: 22px; }
    .about-intro { grid-template-columns: 1fr; gap: 26px; }
    .wa-float, .call-float { width: 52px; height: 52px; right: 16px; }
    .wa-float { bottom: 18px; font-size: 27px; }
    .call-float { bottom: 80px; font-size: 22px; }
}
