/* ==========================================================================
   Equipment Page CSS
   ========================================================================== */

/* --- Page Header with Blur --- */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(13, 43, 85, 0.55), rgba(13, 43, 85, 0.35)), url('../assets/images/equipment/equipment/bg-header.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.1);
    z-index: 1;
}

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

.page-header .hero-desc {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Equipment Cards --- */
.equipment-card {
    background-color: white;
    padding: 40px;
    margin-bottom: 60px;
    border-top: 5px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.equipment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.equipment-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-image:hover {
    transform: scale(1.02);
}

.equipment-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.equipment-image:hover img {
    transform: scale(1.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-offwhite);
    border-left: 3px solid var(--primary-red);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .equipment-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .equipment-image {
        min-height: 250px;
        order: -1;
        /* Image appears on top of text on mobile */
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .equipment-card {
        padding: 25px;
    }
}