/* ===================================================
   LALLY TAXI SERVICE - Main Stylesheet
   Theme: Premium Yellow & Black Taxi
   Design by: Joboo Web | jobooweb.com
   =================================================== */

/* CSS Variables */
:root {
    --yellow:       #FFD000;
    --yellow-dark:  #E6BB00;
    --yellow-light: #FFF4CC;
    --black:        #111111;
    --dark:         #1a1a1a;
    --dark-2:       #222222;
    --gray:         #555555;
    --gray-light:   #888888;
    --white:        #ffffff;
    --bg-light:     #F8F8F8;
    --border:       #e8e8e8;
    --shadow:       0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.15);
    --font-head:    'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;
    --radius:       8px;
    --radius-lg:    14px;
    --transition:   all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--yellow-dark); }
img { max-width: 100%; height: auto; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--yellow);
}

.top-bar-left { color: rgba(255,255,255,0.8); }

.top-info {
    color: rgba(255,255,255,0.80);
    font-size: 12.5px;
}
.top-info i { color: var(--yellow); margin-right: 5px; }

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.top-phone {
    color: var(--yellow) !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
}
.top-phone i { margin-right: 4px; }
.top-phone:hover { color: var(--yellow-dark) !important; }

.top-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
}
.top-whatsapp i { margin-right: 4px; }
.top-whatsapp:hover { background: #1db954; color: var(--white) !important; }

/* ===== NAVBAR ===== */
.main-navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    padding: 0;
    transition: var(--transition);
    border-bottom: 3px solid var(--yellow);
}

.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 5px 0;
}

.logo-text-fallback {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}
.logo-lally { color: var(--yellow-dark); }
.logo-taxi { color: var(--black); font-size: 16px; }

.main-navbar .nav-link {
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black) !important;
    padding: 22px 10px !important;
    letter-spacing: 0.3px;
    position: relative;
    text-transform: uppercase;
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--dark) !important;
}

/* Book Now button in nav */
.btn-book-now {
    background: var(--yellow) !important;
    color: var(--black) !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px !important;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--yellow);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-book-now:hover {
    background: var(--black) !important;
    color: var(--yellow) !important;
    border-color: var(--black);
}

/* Mobile call button in navbar */
.btn-call-mobile {
    background: var(--yellow);
    color: var(--black);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    border: none;
}
.btn-call-mobile:hover { background: var(--black); color: var(--yellow); }

/* Navbar toggler */
.navbar-toggler {
    border: 2px solid var(--yellow) !important;
    padding: 5px 8px;
    border-radius: 4px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23111111' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile nav collapse */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 10px 0;
        border-top: 2px solid var(--yellow);
        margin-top: 5px;
    }
    .main-navbar .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid var(--border);
    }
    .main-navbar .nav-link::after { display: none; }
    .btn-book-now {
        margin: 10px 15px;
        display: block;
        text-align: center;
    }
}

/* ===== SECTION UTILITIES ===== */
.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 50px 0; }

.section-title { margin-bottom: 45px; }
.section-title h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    margin-bottom: 12px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}
.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-title .subtitle {
    color: var(--yellow-dark);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}
.section-title p {
    color: var(--gray);
    font-size: 15.5px;
    max-width: 600px;
}
.section-title.text-center p { margin: 0 auto; }

/* Yellow accent bg */
.bg-yellow { background: var(--yellow) !important; }
.bg-black  { background: var(--black) !important; }
.bg-light-gray { background: var(--bg-light) !important; }

/* ===== BUTTONS ===== */
.btn-primary-yellow {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 4px;
    border: 2px solid var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.btn-primary-yellow:hover {
    background: var(--black);
    color: var(--yellow);
    border-color: var(--black);
}

.btn-outline-dark-custom {
    background: transparent;
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 4px;
    border: 2px solid var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.btn-outline-dark-custom:hover {
    background: var(--black);
    color: var(--yellow);
}

/* ===== CARDS ===== */
.lts-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.lts-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* ===== FOOTER ===== */
.site-footer { background: var(--black); color: var(--white); }

/* Footer CTA Strip */
.footer-cta-strip {
    background: var(--yellow);
    padding: 18px 0;
}
.footer-cta-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    color: var(--black);
}
.footer-cta-text i { font-size: 20px; }
.footer-cta-btns {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.btn-cta-call {
    background: var(--black);
    color: var(--yellow) !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 4px;
    border: 2px solid var(--black);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-cta-call:hover {
    background: transparent;
    color: var(--black) !important;
}
.btn-cta-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 4px;
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-cta-whatsapp:hover { background: #1db954; border-color: #1db954; }

/* Footer Main */
.footer-main { padding: 55px 0 30px; }

.footer-logo { height: 70px; width: auto; object-fit: contain; }

.footer-logo-text {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
}
.footer-logo-text .logo-lally { color: var(--yellow); }
.footer-logo-text .logo-taxi { color: var(--white); font-size: 18px; }

.footer-about-text {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}
.footer-contact-item i {
    color: var(--yellow);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.75);
}
.footer-contact-item a:hover { color: var(--yellow); }

/* Footer Widget */
.footer-widget-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a i { font-size: 11px; color: var(--yellow); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

/* Footer Bottom */
.footer-bottom {
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}
.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.footer-copy strong { color: var(--yellow); }
.design-by {
    color: var(--yellow) !important;
    font-weight: 600;
}
.design-by:hover { color: var(--yellow-dark) !important; }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.45);
    font-size: 12.5px;
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--yellow); }
.footer-bottom-links .sep { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ===== FLOATING ACTION BUTTONS (MOBILE) ===== */
.floating-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}

.fab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    gap: 3px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.fab-btn i { font-size: 20px; }

.fab-call {
    background: var(--black);
    color: var(--yellow);
}
.fab-call:hover { background: #333; color: var(--yellow); }

.fab-whatsapp {
    background: #25D366;
    color: var(--white);
}
.fab-whatsapp:hover { background: #1db954; color: var(--white); }

.fab-book {
    background: var(--yellow);
    color: var(--black);
}
.fab-book:hover { background: var(--yellow-dark); color: var(--black); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(255,208,0,0.4);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--black); color: var(--yellow); transform: translateY(-3px); }

@media (min-width: 992px) {
    .back-to-top { bottom: 30px; }
}

/* ===== BREADCRUMB ===== */
.page-banner {
    background: var(--black);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/images/slider-1.jpg') center/cover no-repeat;
    opacity: 0.18;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
    color: var(--white);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 10px;
}
.page-banner .breadcrumb { margin-bottom: 0; }
.page-banner .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 13.5px; }
.page-banner .breadcrumb-item a { color: var(--yellow); }
.page-banner .breadcrumb-item.active { color: var(--yellow); }
.page-banner .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== FORM STYLES ===== */
.lts-form-control {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 11px 15px;
    font-size: 14.5px;
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    transition: var(--transition);
    width: 100%;
}
.lts-form-control:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255,208,0,0.15);
}

/* ===== ALERT / FLASH ===== */
.alert-success-custom {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 14.5px;
    margin-bottom: 20px;
}
.alert-danger-custom {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 14.5px;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .section-pad { padding: 50px 0 60px; } /* extra bottom for FAB */
    .footer-main { padding: 40px 0 20px; }
    .footer-cta-btns { justify-content: flex-start; }
    .footer-bottom-links { justify-content: center; }
    .footer-copy { text-align: center; }
}

/* ===== HERO SECTION ===== */
.hero-section { position: relative; }
.hero-slide {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    z-index: 10;
}
.min-vh-hero { min-height: 90vh; }
.hero-text { padding: 30px 0; }
.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}
.text-yellow { color: var(--yellow) !important; }
.hero-desc {
    color: rgba(255,255,255,0.80);
    font-size: clamp(14px, 2vw, 17px);
    margin-bottom: 30px;
    max-width: 540px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-book {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 4px;
    border: 2px solid var(--yellow);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-hero-book:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.btn-hero-call {
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 4px;
    border: 2px solid var(--white);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-hero-call:hover { background: var(--white); color: var(--black); }
.btn-hero-whatsapp {
    background: #25D366;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 4px;
    border: 2px solid #25D366;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-hero-whatsapp:hover { background: #1db954; border-color: #1db954; color: var(--white); }

/* Quick Booking Box */
.quick-book-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}
.qb-header {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.qb-form { padding: 22px; }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--yellow);
    padding: 22px 0;
}
.stat-item { padding: 12px; }
.stat-num {
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-2);
}

/* ===== ABOUT SECTION ===== */
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 420px;
    box-shadow: var(--shadow-lg);
}
.about-badge-box {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: var(--yellow);
    border-radius: var(--radius);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}
.about-badge-icon { font-size: 32px; color: var(--black); }
.about-badge-num {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}
.about-badge-text {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.about-feature i { font-size: 18px; }
@media (max-width: 576px) {
    .about-badge-box { right: 10px; }
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-bottom-color: var(--yellow);
}
.service-icon-wrap {
    width: 62px;
    height: 62px;
    background: var(--yellow-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 26px;
    color: var(--black);
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: var(--yellow);
}
.service-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}
.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.service-link {
    color: var(--black);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { color: var(--yellow-dark); gap: 10px; }

/* ===== AIRPORT SECTION ===== */
.rounded-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    height: 400px;
    box-shadow: var(--shadow-lg);
}
.airport-list { display: flex; flex-direction: column; gap: 12px; }
.airport-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
    transition: var(--transition);
}
.airport-item:hover { background: var(--yellow-light); }
.airport-icon {
    width: 38px;
    height: 38px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--black);
    flex-shrink: 0;
}
.airport-item strong { font-size: 14px; font-weight: 700; }
.airport-item small { font-size: 12px; }

/* ===== WHY CHOOSE US ===== */
.why-section { }
.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,208,0,0.1);
    border-color: var(--yellow);
    transform: translateY(-4px);
}
.why-icon {
    width: 62px;
    height: 62px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
    margin: 0 auto 18px;
}
.why-card h5 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-card p {
    color: rgba(255,255,255,0.60);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
}

/* ===== FLEET CARDS ===== */
.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.fleet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.fleet-img-wrap { position: relative; height: 180px; overflow: hidden; }
.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.05); }
.fleet-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--yellow-dark);
}
.fleet-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.fleet-info { padding: 18px; }
.fleet-info h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.fleet-specs {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
}
.fleet-specs span { display: flex; align-items: center; gap: 5px; }
.fleet-specs i { color: var(--yellow-dark); }

/* ===== TOUR CARDS ===== */
.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tour-img-wrap { position: relative; height: 190px; overflow: hidden; }
.tour-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tour-card:hover .tour-img-wrap img { transform: scale(1.05); }
.tour-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    color: var(--yellow);
}
.tour-dest-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.tour-info { padding: 18px; }
.tour-info h5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.tour-duration { color: var(--gray); font-size: 13px; }
.tour-duration i { color: var(--yellow-dark); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 4px solid var(--yellow);
}
.testimonial-stars { color: var(--yellow-dark); font-size: 18px; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-text {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
}
.testimonial-author strong { font-size: 15px; font-weight: 700; }
.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 18px;
    position: static;
    margin-top: 25px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    padding: 55px 0;
}
.cta-title {
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}
.cta-desc { color: rgba(0,0,0,0.65); font-size: 15px; margin-bottom: 0; }
.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.btn-outline-white {
    background: transparent;
    color: var(--black) !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.btn-outline-white:hover { background: var(--black); color: var(--yellow) !important; }
@media (max-width: 991px) {
    .cta-btns { justify-content: flex-start; margin-top: 20px; }
}

/* ===== BOOKING PAGE ===== */
.booking-form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.booking-form-header {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    padding: 18px 26px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.booking-form-body { padding: 28px 26px; }
.form-label-custom { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--black); display: block; margin-bottom: 6px; }

/* Booking Sidebar */
.booking-sidebar {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: #fff;
}
.bs-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 18px;
}
.bs-contact-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.bs-contact-btn {
    display: flex; align-items: center; gap: 13px;
    padding: 13px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}
.bs-call { background: rgba(255,208,0,0.1); border: 1px solid rgba(255,208,0,0.2); }
.bs-call:hover { background: rgba(255,208,0,0.2); }
.bs-call i { color: var(--yellow); font-size: 22px; }
.bs-call small { color: rgba(255,255,255,0.5); font-size: 11px; display: block; }
.bs-call strong { color: #fff; font-size: 15px; font-weight: 700; }
.bs-whatsapp { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); }
.bs-whatsapp:hover { background: rgba(37,211,102,0.2); }
.bs-whatsapp i { color: #25D366; font-size: 22px; }
.bs-whatsapp small { color: rgba(255,255,255,0.5); font-size: 11px; display: block; }
.bs-whatsapp strong { color: #fff; font-size: 14px; font-weight: 700; }
.bs-info h6 { font-size: 13px; font-weight: 700; font-family: var(--font-head); color: #fff; margin-bottom: 12px; }
.bs-info ul { list-style: none; padding: 0; margin: 0; }
.bs-info li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 9px; }
.bs-info li i { color: var(--yellow); font-size: 15px; }

/* ===== CONTACT PAGE ===== */
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
}
.ci-icon {
    width: 44px; height: 44px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--black);
    flex-shrink: 0;
}
.ci-icon.whatsapp-icon { background: #25D366; color: #fff; }
.contact-info-item strong { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.contact-info-item span { color: var(--gray); font-size: 14px; line-height: 1.6; }
.contact-info-item span a { color: var(--gray); font-weight: 600; }
.contact-info-item span a:hover { color: var(--yellow-dark); }

.map-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
