.award-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.award-section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.award-section-subtitle {
    font-size: 16px;
    color: #666;
}

/* Cards Grid */
.award-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Individual Card */
.award-card-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.award-card-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Card Header */
.award-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.award-card-header--special {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.award-card-header--offline {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.award-card-header--online {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

/* Card Body */
.award-card-content {
    padding: 30px 20px;
    text-align: center;
}

.award-card-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

/* Card Button */
.award-card-button {
    width: 100%;
    padding: 12px 20px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.award-card-button:hover {
    background-color: #2563eb;
    transform: scale(1.02);
}

.award-card-button:active {
    transform: scale(0.98);
}

/* Mobile Responsiveness - Tablet */
@media (max-width: 768px) {
    .award-section-title {
        font-size: 28px;
    }

    .award-section-subtitle {
        font-size: 14px;
    }

    .award-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .award-card-header {
        height: 100px;
        font-size: 40px;
    }

    .award-card-content {
        padding: 20px 15px;
    }

    .award-card-name {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Mobile Responsiveness - Mobile Phone */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .award-section-header {
        margin-bottom: 30px;
    }

    .award-section-title {
        font-size: 24px;
    }

    .award-cards-wrapper {
        gap: 15px;
    }

    .award-card-header {
        height: 90px;
        font-size: 36px;
    }

    .award-card-content {
        padding: 20px 15px;
    }

    .award-card-name {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .award-card-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}



/* Gallery Slider */

.partner-slider-section {
    padding: 60px 0;
    /*background-color: #f8f9fa;*/
}

.slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.slider-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.slider-item {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    background: #fff;
    border: 2px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: #fff;
    border-color: #ddd;
    color: #333;
}

.slider-btn i {
    font-size: 18px;
}

/* TABLET - 2 gambar per slide */
@media (max-width: 991px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .slider-header h3 {
        font-size: 28px;
    }
    
    .slider-item img {
        height: 180px;
    }
}

/* MOBILE - 1 gambar per slide */
@media (max-width: 575px) {
    .slider-item {
        flex: 0 0 100%;
    }
    
    .partner-slider-section {
        padding: 40px 0;
    }
    
    .slider-header h3 {
        font-size: 24px;
    }
    
    .slider-wrapper {
        gap: 10px;
    }
    
    .slider-track {
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 14px;
    }
    
    .slider-item img {
        height: 160px;
    }
}

