/* ========================================
   MODERN 2025 PRODUCTS SECTION
   ======================================== */

/* Section Container */
.modern-products {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 94, 21, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 94, 21, 0.2);
    margin-bottom: 20px;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: #ff5e15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 16px;
    color: #ffffff;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff5e15;
}

.modern-products .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    color: #002052;
    text-align: center;
}

.modern-products .title-line {
    display: inline-block;
    color: #002052;
}

.modern-products .title-dot {
    color: #ff5e15;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 82, 0.9) 0%, rgba(255, 94, 21, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn i {
    font-size: 32px;
}

.view-btn span {
    font-size: 15px;
    font-weight: 600;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #002052 0%, #003a7a 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.orange {
    background: linear-gradient(135deg, #ff5e15 0%, #e54d0a 100%);
}

/* Product Content */
.product-content {
    padding: 30px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-title a {
    color: #002052;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff5e15;
}

.product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff5e15;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link:hover {
    gap: 12px;
    color: #e54d0a;
}

.product-link i {
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(5px);
}

/* View All Button */
.products-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff5e15 0%, #e54d0a 100%);
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-all-btn span,
.view-all-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 94, 21, 0.5);
    color: white;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.view-all-btn:active {
    transform: translateY(-2px) scale(1);
}

/* Background Decoration */
.products-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 94, 21, 0.03);
    top: 10%;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 32, 82, 0.03);
    bottom: 10%;
    left: -50px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-products {
        padding: 80px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-wrapper {
        height: 250px;
    }

    .product-content {
        padding: 25px;
    }

    .modern-products .section-title {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .modern-products {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .modern-products .section-title {
        font-size: 32px;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-description {
        font-size: 14px;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
}
