/* ================================
    Page Hero Section
================================ */

.page-hero-section {
    background: #fff;
}

/* Hero Image */
.page-hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.40) 50%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

/* Content Over Image */
.page-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #6feaf2;
}

.breadcrumb-custom span {
    color: #6feaf2;
    font-weight: 600;
}

/* Hero Heading */
.hero-title {
    color: #fff;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;

    max-width: 850px;
    margin: 0;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

/* ================================
    About Floating Box
    ================================ */

.page-about-section {
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.about-box {
    background: #fff;

    padding: 35px 40px;

    border-radius: 20px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.08);

    color: #555;
    line-height: 1.9;

    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Remove unnecessary margins from generated content */
.about-box p:last-child {
    margin-bottom: 0;
}

/* ================================
    Tablet
    ================================ */

@media (max-width: 992px) {

    .page-hero-image {
        height: 420px;
    }

    .hero-title {
        font-size: 42px;
    }

    .about-box {
        padding: 30px;
    }
}

/* ================================
    Mobile
    ================================ */

@media (max-width: 768px) {

    .page-hero-image {
        height: 340px;
    }

    .page-hero-content {
        align-items: center;
    }

    .breadcrumb-custom {
        gap: 7px;
        margin-bottom: 12px;
    }

    .breadcrumb-custom a {
        font-size: 13px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
        max-width: 100%;
    }

    .page-about-section {
        margin-top: -35px;
    }

    .about-box {
        padding: 25px 22px;
        border-radius: 16px;
        line-height: 1.7;
    }
}

/* ================================
    Small Mobile
    ================================ */

@media (max-width: 480px) {

    .page-hero-image {
        height: 300px;
    }

    .hero-title {
        font-size: 26px;
    }

    .about-box {
        padding: 22px 18px;
    }
}


/* ==============================
 get by id UNIQUE SECTION
================================= */

.fleetpro-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Light background decoration */
.fleetpro-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(56, 199, 210, 0.08) 0%,
            transparent 70%);
    border-radius: 50%;
}

/* Card */
.fleetpro-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(36, 90, 168, 0.08);
    position: relative;
}

/* Hover */
.fleetpro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(36, 90, 168, 0.14) !important;
    border-color: rgba(56, 199, 210, 0.35);
}

/* Image */
.fleetpro-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    height: 180px;
}

/* Image itself */
.fleetpro-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Image zoom */
.fleetpro-card:hover .fleetpro-card-img {
    transform: scale(1.1);
}

/* Content */
.fleetpro-card-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title */
.fleetpro-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #245aa8;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

/* Title hover */
.fleetpro-card:hover .fleetpro-title {
    color: #38c7d2;
}

/* Description */
.fleetpro-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #6c757d;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.fleetpro-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eef3f6;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* View Details */
.fleetpro-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #245aa8;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.fleetpro-more:hover {
    gap: 0.8rem;
    color: #38c7d2;
}

/* WhatsApp Button */
.fleetpro-whatsapp {
    width: 45px;
    height: 45px;
    background: #25D366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    font-size: 1.25rem;
    text-decoration: none;

    transition: all 0.3s ease;
}

.fleetpro-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
}

/* Inquiry Button */
.fleetpro-inquiry {
    width: 45px;
    height: 45px;

    background: #eef7fa;
    color: #245aa8;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    font-size: 1.25rem;
    text-decoration: none;

    transition: all 0.35s ease;

    cursor: pointer;
}

/* Modern hover effect */
.fleetpro-inquiry:hover {
    background: linear-gradient(135deg,
            #245aa8,
            #38c7d2);

    color: #fff;

    transform: translateY(-3px) rotate(8deg);

    box-shadow: 0 8px 18px rgba(36, 90, 168, 0.25);
}

/* Mobile */
@media (max-width: 991px) {

    .fleetpro-image-link {
        height: 180px;
    }

    .fleetpro-card-content {
        padding: 1.2rem;
    }

}

.fleetpro-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;

    background: linear-gradient(135deg, #245aa8, #38c7d2);
    color: #fff;

    padding: 7px 13px;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    line-height: 1.2;

    box-shadow: 0 6px 18px rgba(36, 90, 168, 0.25);

    transition: all 0.3s ease;
}

.fleetpro-price-badge span {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.fleetpro-price-badge strong {
    font-size: 15px;
    font-weight: 700;
}

/* Card hover effect */
.fleetpro-card:hover .fleetpro-price-badge {
    transform: translateY(3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(36, 90, 168, 0.35);
}