/* ===== BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; }
a { text-decoration: none; }
.text-yellow { color: #f5c518 !important; }
.bg-light-gray { background-color: #f8f8f8; }

/* Section Labels */
.section-sub {
    font-size: 13px;
    font-weight: 600;
    color: #f5c518;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-desc { color: #666; font-size: 15px; line-height: 1.8; }

/* ===== BUTTONS ===== */
.btn-yellow {
    background: #f5c518;
    color: #1a1a1a;
    font-weight: 700;
    border: 2px solid #f5c518;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-yellow:hover { background: #e0b000; border-color: #e0b000; color: #1a1a1a; }

.btn-dark-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-dark-outline:hover { background: #fff; color: #1a1a1a; }

.btn-white-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-white-outline:hover { background: #fff; color: #1a1a1a; }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    border: 2px solid #25D366;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.70)), url('../images/banner/banner.jpg') center center / cover no-repeat;
    min-height: 88vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: #f5c518;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.hero-tagline {
    color: #f5c518;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-desc {
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
}
.hero-badge-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 420px;
}
.hero-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(245,197,24,0.3);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    color: #fff;
    transition: all 0.3s;
}
.hero-badge:hover {
    background: rgba(245,197,24,0.12);
    border-color: #f5c518;
    transform: translateY(-4px);
}
.hero-badge i { font-size: 32px; color: #f5c518; display: block; margin-bottom: 10px; }
.hero-badge span { font-size: 13px; font-weight: 600; }

/* ===== ABOUT ===== */
.about-section { background: #fff; }
.about-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}
.about-main-img {
    width: 100%;
    max-width: 460px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.about-exp-badge {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.exp-num { font-size: 28px; font-weight: 800; color: #f5c518; display: block; line-height: 1; }
.exp-text { font-size: 11px; font-weight: 500; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }
.about-feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    padding: 8px 0;
}

/* ===== HOW IT WORKS ===== */
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 20px 28px;
    height: 100%;
    border: 1px solid #eee;
    position: relative;
    transition: all 0.3s;
}
.step-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}
.step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #f5c518;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}
.step-icon {
    width: 64px;
    height: 64px;
    background: #fff8d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.step-icon i { font-size: 26px; color: #f5c518; }
.step-card h6 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* ===== SERVICES ===== */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #f5c518;
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: bottom;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
    width: 60px;
    height: 60px;
    background: #fff8d6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.service-icon i { font-size: 26px; color: #f5c518; }
.service-card h5 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.service-link {
    font-size: 13px;
    font-weight: 600;
    color: #f5c518;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.service-link:hover { color: #e0b000; }

/* ===== STATS ===== */
.stats-section { background: #1a1a1a; }
.stat-box { padding: 20px; }
.stat-box i { font-size: 36px; color: #f5c518; margin-bottom: 12px; display: block; }
.stat-box h3 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.stat-box p { font-size: 13px; color: #aaa; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, #f5c518 0%, #e0b000 100%); }
.cta-banner h2 { font-size: 28px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; }
.cta-banner p { color: #333; font-size: 15px; margin: 0; }
.cta-banner .btn-yellow { background: #1a1a1a; border-color: #1a1a1a; color: #f5c518; }
.cta-banner .btn-yellow:hover { background: #333; border-color: #333; }

/* ===== WHY CHOOSE US ===== */
.why-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 20px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.why-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.why-icon {
    width: 70px;
    height: 70px;
    background: #f5c518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.why-icon i { font-size: 28px; color: #1a1a1a; }
.why-card h6 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* ===== DRIVER PROFILES ===== */
.drivers-section { background: #fff; }
.driver-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 32px 20px 24px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
}
.driver-card:hover { border-color: #f5c518; box-shadow: 0 12px 36px rgba(0,0,0,0.08); transform: translateY(-4px); }
.driver-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid #f5c518;
    background: #f5c518;
    display: flex;
    align-items: center;
    justify-content: center;
}
.driver-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.driver-card h6 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.driver-exp { font-size: 12px; color: #888; display: block; margin-bottom: 12px; }
.driver-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.driver-tags span {
    background: #fff8d6;
    color: #b8860b;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #f5c518;
}
.driver-rating { display: flex; align-items: center; justify-content: center; gap: 3px; }
.driver-rating i { font-size: 13px; color: #f5c518; }
.driver-rating small { font-size: 13px; font-weight: 700; color: #333; margin-left: 4px; }

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    border-left: 4px solid #f5c518;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.testi-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.testi-stars i { color: #f5c518; font-size: 14px; }
.testi-card > p { font-size: 14px; color: #555; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px;
    height: 44px;
    background: #f5c518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-avatar i { font-size: 18px; color: #1a1a1a; }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: #1a1a1a; }
.testi-author span { font-size: 12px; color: #888; }

/* ===== FAQ ===== */
.faq-section { background: #fff; }
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    overflow: hidden;
}
.faq-btn {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    padding: 18px 20px;
    box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
    background: #f5c518;
    color: #1a1a1a;
}
.faq-btn::after { filter: none; }
.faq-btn:not(.collapsed)::after { filter: brightness(0); }
.faq-body {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding: 16px 20px;
    background: #fafafa;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 60%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    background: #f5c518;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}
.final-cta h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.final-cta p { color: #aaa; font-size: 16px; margin: 0; }

/* ===== FLOATING BUTTONS ===== */
.float-btns {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-whatsapp, .float-call {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.float-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    color: #fff;
}
.float-call {
    background: #f5c518;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(245,197,24,0.4);
}
.float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(245,197,24,0.5);
    color: #1a1a1a;
}

/* ===== FOOTER ===== */
.site-footer { background: #111; color: #aaa; }
.footer-brand { display: inline-block; text-decoration: none; }
.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
}
.footer-about { font-size: 14px; line-height: 1.8; color: #888; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
    width: 36px; height: 36px;
    background: #222; color: #aaa;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: all 0.3s; text-decoration: none;
}
.footer-socials a:hover { background: #f5c518; color: #1a1a1a; }
.footer-heading {
    color: #fff; font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid #f5c518; display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; font-size: 14px; transition: color 0.3s; text-decoration: none; }
.footer-links a i { color: #f5c518; font-size: 11px; }
.footer-links a:hover { color: #f5c518; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; color: #888; align-items: flex-start; }
.footer-contact li i { color: #f5c518; font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: #888; text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: #f5c518; }
.footer-bottom { background: #0a0a0a; padding: 18px 0; border-top: 1px solid #222; }
.footer-bottom p { margin: 0; font-size: 13px; color: #666; }
.footer-cta-call { font-size: 14px; font-weight: 700; color: #f5c518; text-decoration: none; transition: color 0.3s; }
.footer-cta-call:hover { color: #fff; }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, #1a1a1a 60%, #2d2d2d 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: #f5c518;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.page-banner h1 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.page-banner .breadcrumb-item a { color: #f5c518; text-decoration: none; }
.page-banner .breadcrumb-item.active { color: #aaa; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: #666; }

/* ===== GALLERY ===== */
.gallery-item {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 12px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.gallery-item:hover { border-color: #f5c518; transform: scale(1.02); }
.gallery-item i { font-size: 48px; color: #f5c518; }
.gallery-item span { font-size: 13px; font-weight: 600; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CONTACT ===== */
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
    width: 48px; height: 48px;
    background: #f5c518; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { font-size: 18px; color: #1a1a1a; }
.contact-info-item strong { display: block; font-size: 13px; font-weight: 700; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { font-size: 15px; color: #555; text-decoration: none; transition: color 0.3s; }
.contact-info-item a:hover { color: #f5c518; }
.contact-form-wrap { background: #f8f8f8; border-radius: 16px; padding: 36px; }
.contact-form-wrap h5 { font-size: 20px; font-weight: 700; color: #1a1a1a; }
.contact-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    transition: border-color 0.3s;
}
.contact-input:focus { border-color: #f5c518; box-shadow: 0 0 0 3px rgba(245,197,24,0.15); outline: none; }

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 991px) {
    .section-title { font-size: 26px; }
    .hero-title { font-size: 34px; }
    .hero-section { min-height: auto; padding: 60px 0; }
    .about-img-box { width: 260px; height: 260px; }
    .about-icon-big { font-size: 90px; }
    .stat-box h3 { font-size: 32px; }
    .cta-banner h2 { font-size: 24px; }
    .final-cta h2 { font-size: 26px; }
}

@media (max-width: 767px) {
    .section-title { font-size: 22px; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 14px; }
    .about-img-wrap { margin-bottom: 20px; }
    .about-img-box { width: 220px; height: 220px; }
    .about-icon-big { font-size: 80px; }
    .about-exp-badge { right: 0; }
    .stat-box h3 { font-size: 28px; }
    .stat-box i { font-size: 28px; }
    .contact-form-wrap { padding: 24px 16px; }
    .page-banner h1 { font-size: 28px; }
    .page-banner { padding: 40px 0; }
    .float-whatsapp { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 22px; }
    .hero-badge-wrap { gap: 12px; padding: 10px; }
    .final-cta h2 { font-size: 22px; }
    .faq-btn { font-size: 14px; padding: 14px 16px; }
}

@media (max-width: 480px) {
    .btn-yellow, .btn-dark-outline, .btn-white-outline, .btn-whatsapp {
        padding: 10px 20px;
        font-size: 13px;
    }
    .hero-title { font-size: 24px; }
    .section-title { font-size: 20px; }
    .driver-card, .step-card, .why-card, .service-card { padding: 24px 16px; }
}

/* ===== GALLERY DRIVER CARDS ===== */
.gallery-driver-card {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: #f8f8f8;
}
.gallery-driver-card:hover {
    border-color: #f5c518;
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}
.gallery-driver-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #1a1a1a;
}
.gallery-driver-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.gallery-driver-card:hover .gallery-driver-img { transform: scale(1.06); }
.gallery-driver-info { padding: 16px; }

/* ===== CONTACT ENHANCED ===== */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.contact-info-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transform: translateX(4px);
}
.contact-info-card .contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.contact-info-text { display: flex; flex-direction: column; gap: 2px; }
.contact-info-text strong { font-size: 13px; font-weight: 700; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-text a { font-size: 15px; font-weight: 600; color: #333; text-decoration: none; transition: color 0.3s; }
.contact-info-text a:hover { color: #f5c518; }
.contact-info-text span { font-size: 12px; color: #888; }

/* Working Hours */
.working-hours {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
}
.working-hours h6 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.wh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: #aaa;
}
.wh-row:last-child { border-bottom: none; }

/* Form header */
.form-header h5 { font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.form-header p { font-size: 14px; color: #888; margin: 0; }

/* Input icon wrap */
.input-icon-wrap { position: relative; }
.input-icon-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5c518;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}
.input-icon-wrap textarea + i,
.input-icon-wrap select { padding-left: 44px !important; }

/* Responsive float buttons */
@media (max-width: 767px) {
    .float-btns { bottom: 16px; right: 14px; gap: 10px; }
    .float-whatsapp, .float-call { width: 48px; height: 48px; font-size: 20px; }
}
