/* Modern Floating Action Buttons for Call & WhatsApp */
.fixed-call-fab, .fixed-whatsapp-fab {
    position: fixed;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    color: #fff;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}
.fixed-call-fab {
    bottom: 96px;
    background: #e53935;
    border: 2px solid #e53935;
}
.fixed-call-fab:hover {
    background: #b71c1c;
    color: #fff;
    box-shadow: 0 8px 32px rgba(229,57,53,0.18);
}
.fixed-whatsapp-fab {
    bottom: 24px;
    background: #25d366;
    border: 2px solid #25d366;
}
.fixed-whatsapp-fab:hover {
    background: #1ebe5d;
    color: #fff;
    box-shadow: 0 8px 32px rgba(37,211,102,0.18);
}
/* Contact Us WhatsApp and Call Buttons */
.btn-whatsapp-contact {
    background: #25d366;
    color: #fff !important;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(37,211,102,0.13);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-whatsapp-contact:hover {
    background: #1ebe5d;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(37,211,102,0.18);
}
.btn-whatsapp-contact i {
    font-size: 1.3em;
}
.btn-call-contact {
    background: #e53935;
    color: #fff !important;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(229,57,53,0.13);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-call-contact:hover {
    background: #b71c1c;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(229,57,53,0.18);
}
.btn-call-contact i {
    font-size: 1.2em;
}
/* Hide email and address in top header on mobile */
@media (max-width: 575.98px) {
    .email-hide-mobile,
    .address-hide-mobile {
        display: none !important;
    }
}
.service-card-img {
    background: linear-gradient(135deg, #fff 60%, #e53935 100%);
    padding: 32px 0 16px 0;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-img img {
    background: radial-gradient(circle at 60% 40%, #fff 60%, #198754 100%);
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(25,135,84,0.13), 0 1.5px 8px rgba(229,57,53,0.10);
    padding: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover .service-card-img img {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 8px 32px rgba(25,135,84,0.22), 0 3px 16px rgba(229,57,53,0.18);
}
/* Service Card Modern Design */
.service-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 24px rgba(25,135,84,0.08), 0 1.5px 8px rgba(229,57,53,0.07);
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(25,135,84,0.18), 0 3px 16px rgba(229,57,53,0.13);
    border: 1.5px solid var(--primary-green);
}
.service-card-img {
    background: linear-gradient(135deg, #f8f9fa 60%, #e53935 100%);
    padding: 32px 0 16px 0;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    min-height: 120px;
}
.service-card .badge {
    font-size: 0.95rem;
    padding: 0.5em 1em;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(25,135,84,0.08);
}

/* Why Choose Us Card Modern Design */
.why-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 24px rgba(25,135,84,0.08), 0 1.5px 8px rgba(229,57,53,0.07);
}
.why-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(25,135,84,0.18), 0 3px 16px rgba(229,57,53,0.13);
    border: 1.5px solid var(--primary-green);
}
.why-card-icon {
    background: linear-gradient(135deg, #f8f9fa 60%, #198754 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 12px rgba(25,135,84,0.10);
}
/* Extra padding for fleet section on desktop */
.fleet-padding-lg {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
@media (min-width: 992px) {
    .fleet-padding-lg {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }
}
/* Equal height for gallery images */
.gallery-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    display: block;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
}

:root {
    --primary-green: rgb(25, 135, 84);
    --accent-red: #e53935;
}


.fixed-call, .fixed-whatsapp {
    position: fixed;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: box-shadow 0.2s;
}
.fixed-call {
    bottom: 96px;
    border: 2px solid #e53935;
    background: #fff0f0;
}
.fixed-call img {
    filter: none;
}
.fixed-whatsapp {
    bottom: 24px;
    border: 2px solid #25d366;
}
.fixed-call img, .fixed-whatsapp img {
    width: 32px;
    height: 32px;
}

/* Section spacing */
section {
    padding: 64px 0 48px 0;
}


/* Hero section */
.hero {
    background: linear-gradient(90deg, var(--primary-green) 60%, var(--accent-red) 100%);
    color: #fff;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-red);
    text-shadow: 1px 1px 8px rgba(25,135,84,0.15);
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 32px;
}
.hero .btn {
    font-size: 1.25rem;
    padding: 12px 32px;
    background: var(--accent-red);
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 8px rgba(229,57,53,0.12);
    transition: background 0.2s;
}
.hero .btn:hover {
    background: #b71c1c;
}


/* Service cards */
.services .card {
    border: 2px solid var(--primary-green);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(25,135,84,0.08);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.services .card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(229,57,53,0.16);
    border-color: var(--accent-red);
}


/* About section */
.about h2 {
    color: var(--primary-green);
}

/* Why Choose section */
.why-choose h2 {
    color: var(--accent-red);
}
.why-choose .bg-white {
    border-top: 4px solid var(--primary-green);
}

/* Gallery section */
.gallery h2 {
    color: var(--primary-green);
}

/* Testimonials section */
.testimonials h2 {
    color: var(--accent-red);
}
.testimonials .card {
    border-left: 4px solid var(--primary-green);
}

/* Contact section */
.contact h2 {
    color: var(--primary-green);
}
.contact .btn-success {
    background: var(--accent-red) !important;
    border: none;
}
.contact .btn-success:hover {
    background: #b71c1c !important;
}

/* Footer */
footer.bg-success {
    background: linear-gradient(90deg, var(--primary-green) 60%, var(--accent-red) 100%) !important;
}
