/* ========================================
   Products Page Styles
   ======================================== */

/* Products Hero Section */
.products-hero {
    min-height: 60vh;
    background: var(--bg-gradient);
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.products-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.products-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(35, 254, 255, 0.5);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* Product Detail Section */
.product-detail-section {
    padding: 100px 0;
}

.product-detail-section.alt-bg {
    background: var(--bg-light);
}

.product-detail-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.product-detail-section .content-wrapper.reverse {
    grid-template-columns: 2fr 1fr;
}

.product-detail-section .content-wrapper.single-column {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.product-detail-section .image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 102, 204, 0.1));
    border-radius: var(--border-radius-lg);
}

.product-detail-section .image-side img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-detail-section h2 {
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 2.5rem;
}

.product-detail-section .text-side > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Feature Highlights */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.alt-bg .highlight-item {
    background: #fff;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-item .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item .icon i {
    color: var(--text-light);
    font-size: 20px;
}

.highlight-item .text h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.highlight-item .text p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Product Features List */
.product-features {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 102, 204, 0.02));
    padding: 28px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.product-features h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.product-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 15px;
}

.product-features ul li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Why TMGM Section */
.why-tmgm-section {
    background: #fff;
}

.why-tmgm-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CTA Buttons in CTA Section */
.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-detail-section .content-wrapper,
    .product-detail-section .content-wrapper.reverse {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .product-detail-section .content-wrapper,
    .product-detail-section .content-wrapper.reverse {
        grid-template-columns: 1fr;
    }
    
    .product-detail-section .content-wrapper.single-column {
        max-width: 100%;
    }
    
    .product-detail-section .content-wrapper.reverse .text-side {
        order: 1;
    }
    
    .product-detail-section .content-wrapper.reverse .image-side {
        order: 2;
    }
    
    .product-detail-section h2 {
        font-size: 2rem;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .product-features ul {
        grid-template-columns: 1fr;
    }
    
    .why-tmgm-section .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-hero {
        min-height: 50vh;
        padding: 120px 0 60px;
    }
    
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .products-hero p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .product-detail-section {
        padding: 60px 0;
    }
    
    .product-detail-section .text-side > p {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 13px;
        padding: 6px 16px;
    }
    
    .highlight-item {
        padding: 16px;
    }
    
    .highlight-item .icon {
        width: 44px;
        height: 44px;
    }
    
    .highlight-item .icon i {
        font-size: 18px;
    }
    
    .highlight-item .text h4 {
        font-size: 1rem;
    }
    
    .highlight-item .text p {
        font-size: 13px;
    }
    
    .product-features {
        padding: 20px;
    }
    
    .product-features h3 {
        font-size: 1.2rem;
    }
    
    .product-features ul li {
        font-size: 14px;
    }
    
    .why-tmgm-section .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .product-detail-section .image-side {
        padding: 30px;
    }
    
    .product-detail-section h2 {
        font-size: 1.75rem;
    }
}

