/* Stats bar pinned to hero bottom */
.hero-stats-bar {
    position: relative;
    z-index: 3;
    margin-top: auto;
}
.hero-stats-inner {
    display: flex;
}
.hero-stat {
    flex: 1;
    padding: 28px 24px;
    border-right: 1px solid var(--pas-border);
    text-align: center;
}
.hero-stat:last-child {
    border-right: none;
}
.hero-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pas-text);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pas-text3);
}

/* Counter span (animated by front-page.js) */
.count-up {
    display: inline-block;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-img-wrap {
        width: 100%;
        right: 0;
        opacity: 0.18;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-stat {
        padding: 20px 6px;
    }
    .hero-stat-num {
        font-size: 1.4rem;
    }
    .hero-stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 575px) {
    .hero-stat {
        padding: 20px 6px;
    }
    .hero-stat-num {
        font-size: 1.4rem;
    }
    .hero-stat-label {
        font-size: 0.65rem;
    }
    .hero-btns .btn-pas-primary,
    .hero-btns .btn-pas-outline {
        width: auto;
    }
}

/* =============================================================================
   2. ABOUT / USP SECTION
   ============================================================================= */

/* Image column */
.about-img-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    height: 480px;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.5) brightness(0.6);
    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}
.about-img-wrap:hover img {
    transform: scale(1.03);
    filter: saturate(0.7) brightness(0.75);
}
.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        transparent 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
}
.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--pas-red);
    padding: 16px 20px;
    border-radius: 2px;
    text-align: center;
    min-width: 90px;
}
.about-img-badge-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.about-img-badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    font-weight: 600;
}

/* Feature list */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
}
.about-feature-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--pas-border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pas-text);
    font-size: 1rem;
    flex-shrink: 0;
}
.about-feature-icon > svg {
    color: var(--pas-text);
}
.about-feature-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--pas-text);
    margin-bottom: 2px;
}
.about-feature-desc {
    font-size: 0.82rem;
    color: var(--pas-text2);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-img-wrap {
        height: 340px;
    }
}

/* =============================================================================
   3. SERVICE OVERVIEW CARDS
   ============================================================================= */

.service-card {
    background: var(--pas-surface);
    border: 1px solid var(--pas-border);
    border-radius: 2px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    transition:
        border-color 0.25s,
        transform 0.25s;
    color: inherit;
}
.service-card:hover {
    border-color: rgba(208, 2, 27, 0.4);
    background-color: rgba(208, 2, 27, 0.1);
    transform: translateY(-4px);
    color: inherit;
}

.service-card-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pas-border);
    line-height: 1;
    letter-spacing: -0.02em;
}
.service-card-title {
    font-size: 2.25rem;
    font-weight: 400;
}
.service-card-desc {
    font-size: 0.95rem;
    color: var(--pas-text2);
    flex: 1;
    margin: 0;
}
.service-card-from {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pas-text3);
}
.service-card-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pas-red);
    line-height: 1.25;
}
.service-card-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--pas-border);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pas-text3);
    transition: color 0.2s;
}
.service-card:hover .service-card-arrow {
    color: var(--pas-red);
}
.service-card-arrow svg {
    transition: transform 0.2s;
}
.service-card:hover .service-card-arrow svg {
    transform: translateX(4px);
}
