:root {
    --primary: #3f51b5;
    --secondary: #d63238;
    --accent: #e63946;
    --light: #f8f9fa;
    --dark: #222;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Top Header Info */
.top-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
}

.contact-info-text h6 {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    text-transform: uppercase;
}

.contact-info-text p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}


.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    height: 3px;
    background: var(--primary);
    display: none;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary-custom:hover {
    opacity: 0.8;
    background: var(--primary) !important;
}

.btn-secondary-custom {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary-custom:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 17, 36, 0.3);
}

.header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.header img {
    max-height: 60px;
    border-radius: 6px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/slider1.jpg') center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 150px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.hero p {
    font-size: 1.3rem;
    margin: 15px 0 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.section {
    padding: 50px 0;
}

.card-service,
.card-car,
.card-review {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.card-service:hover,
.card-car:hover,
.card-review:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-service {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
}

.card-service h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-service p {
    text-transform: capitalize;
}

.card-service .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.card-car img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-car:hover img {
    transform: scale(1.05);
}

.card-car .card-body {
    padding: 20px;
    text-align: center;
}

.card-car h5 {
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-car p {
    text-transform: capitalize;
}

.card-review {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
}

.card-review .stars {
    color: var(--primary);
    margin-bottom: 15px;
}

.card-review h6 {
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
}

.routes .badge {
    background: var(--primary);
    color: var(--secondary);
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 30px;
    margin: 6px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.routes .badge:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer {
    background: #0b1124;
    color: #fff;
    padding: 50px 0 20px;
}

.footer a {
    color: #fff;
    font-weight: 500;
}

.footer a:hover {
    color: #fff;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.call-floating {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 2s ease-in-out infinite;
    z-index: 999;
    transition: all 0.3s ease;
}

.call-floating:hover {
    background: #0056b3;
    transform: scale(1.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-floating {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 2s ease-in-out infinite;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-floating:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.special-offer {
    background: linear-gradient(135deg, var(--primary), #ffcc00);
    color: var(--secondary);
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.counter {
    background: var(--primary);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.counter-item {
    margin: 15px 0;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section {
    background: linear-gradient(rgba(11, 17, 36, 0.9), rgba(11, 17, 36, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section p,
.card-service p,
.card-car p,
.card-review p,
.footer p {
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 30px 0;
    }

    .counter-number {
        font-size: 2rem;
    }
}

i.fas.fa-check-circle.text-warning.me-2:before {
    color: var(--primary) !important;
}