/* Rental Equipment Section - 12 Cards Grid (Premium White Theme) */
.rental-equipment-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 50%, #f5f7fc 100%);
    position: relative;
    overflow: hidden;
}

.rental-equipment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 86, 162, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.rental-equipment-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 86, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.rental-section-header {
    text-align: left;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.rental-section-header > div:first-child {
    flex: 1;
    min-width: 300px;
}

.rental-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0e56a2;
    margin-bottom: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(14, 86, 162, 0.1) 0%, rgba(31, 124, 179, 0.05) 100%);
    border-radius: 30px;
    border-left: 3px solid #0e56a2;
    transition: all 0.3s ease;
}

.rental-section-label::before {
    content: '★ ';
    margin-right: 6px;
}

.rental-section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0e1f3c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0e1f3c 0%, #0e56a2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rental-section-desc {
    font-size: 17px;
    color: #666;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 500;
}

/* Grid Layout */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Card Style */
.rental-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rental-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0e56a2 0%, #1f7cb3 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.rental-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(14, 86, 162, 0.2);
    border-color: rgba(14, 86, 162, 0.15);
}

.rental-card:hover::before {
    transform: scaleX(1);
}

.rental-card-img-box {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f5fb 0%, #f8fafc 100%);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.rental-card:hover .rental-card-img-box {
    background: linear-gradient(135deg, #e6f0fb 0%, #f0f8fc 100%);
    transform: scale(1.02);
}

.rental-card-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.rental-card:hover .rental-card-img-box img {
    transform: scale(1.15);
}

.rental-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0e1f3c;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.rental-card:hover .rental-card-title {
    color: #0e56a2;
}

/* Card Bottom Area */
.rental-card-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo in bottom - stylized */
.rental-bottom-logo {
    font-size: 11px;
    font-weight: 800;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.rental-card:hover .rental-bottom-logo {
    color: #0e56a2;
}

.rental-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}


/* Responsive */
@media (max-width: 1400px) {
    .rental-section-title {
        font-size: 42px;
    }

    .rental-grid {
        gap: 30px;
    }

    .rental-section-label {
        font-size: 12px;
        padding: 8px 14px;
    }
}

@media (max-width: 1200px) {
    .rental-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .rental-section-title {
        font-size: 38px;
    }

    .rental-section-label {
        font-size: 12px;
        padding: 7px 12px;
        margin-bottom: 10px;
    }

    .rental-card {
        padding: 30px 20px;
    }

    .rental-card-img-box {
        height: 160px;
        margin-bottom: 20px;
    }

    .rental-card-title {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .rental-equipment-section {
        padding: 10px 0;
    }

    .rental-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 10px;
    }

    .rental-section-header {
        flex-direction: column;
        margin-bottom: 50px;
        gap: 20px;
    }

    .rental-section-header > div:first-child {
        width: 100%;
    }

    .rental-section-label {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 10px;
    }

    .rental-section-title {
        font-size: 34px;
    }

    .rental-section-desc {
        font-size: 16px;
    }

    .rental-header-btn {
        width: 100%;
    }

    .rental-header-btn .th-btn {
        width: 100%;
    }

    .rental-card {
        padding: 25px 18px;
    }

    .rental-card-img-box {
        height: 140px;
        margin-bottom: 18px;
    }

    .rental-card-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .rental-equipment-section {
        padding: 10px 0;
    }

    .rental-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rental-section-label {
        font-size: 10px;
        padding: 6px 10px;
        margin-bottom: 8px;
    }

    .rental-section-title {
        font-size: 28px;
    }

    .rental-section-desc {
        font-size: 15px;
    }

    .rental-card {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .rental-card-img-box {
        height: 120px;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .rental-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .rental-card-bottom {
        margin-top: 15px;
        padding-top: 15px;
    }

    .rental-bottom-logo {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .rental-equipment-section {
        padding: 10px 0;
    }

    .rental-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 12px;
    }

    .rental-section-header {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 20px;
    }

    .rental-section-label {
        font-size: 9px;
        padding: 6px 10px;
        margin-bottom: 8px;
        letter-spacing: 1.5px;
    }

    .rental-section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .rental-section-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .rental-header-btn {
        width: 100%;
    }

    .rental-header-btn .th-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    .rental-card {
        padding: 18px 15px;
        border-radius: 14px;
    }

    .rental-card-img-box {
        height: 100px;
        margin-bottom: 12px;
        padding: 10px;
        border-radius: 10px;
    }

    .rental-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .rental-card-bottom {
        margin-top: 12px;
        padding-top: 12px;
    }

    .rental-bottom-logo {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .rental-equipment-section::before {
        width: 300px;
        height: 300px;
        top: -20%;
        right: -15%;
    }

    .rental-equipment-section::after {
        width: 250px;
        height: 250px;
        bottom: -10%;
        left: -10%;
    }
}