/* Products Page Specific Styles */

/* Products Hero Section */
.products-hero-section {
    background-color: #000A55;
    background-image: url('../img/products-hero.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.products-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 10, 85, 0.6);
    z-index: 1;
}

.products-hero-overlay {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.products-hero-content {
    animation: fadeInUp 1s ease-out;
}

/* About Hero Text Styles */
.about-hero-title {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 8px;
}

.about-hero-subtitle {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.about-hero-desc {
    color: white;
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .about-hero-subtitle {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .about-hero-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .about-hero-subtitle {
        font-size: 2rem;
        letter-spacing: 0px;
    }
    
    .about-hero-desc {
        font-size: 1rem;
    }
}

.products-hero-title {
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 3px;
}

.products-hero-subtitle {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.products-hero-desc {
    color: white;
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
}

/* Products Content Section */
.products-content-section {
    background: #f8fafc;
    min-height: 70vh;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Products Category Grid */
.products-category-grid {
    margin-top: 2rem;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    min-height: 200px;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-image {
    flex-shrink: 0;
    margin-right: 2rem;
}

.category-image i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(43, 77, 160, 0.3);
}

.category-content {
    flex: 1;
}

.category-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.category-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-models {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.model-tag {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.model-tag.more-models {
    background: rgba(43, 77, 160, 0.3);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
}

.model-tag.preparing {
    background: rgba(108, 117, 125, 0.3);
    color: #6c757d;
    border: 1px solid #6c757d;
    font-weight: 500;
}

.category-arrow {
    flex-shrink: 0;
    margin-left: 1rem;
}

.category-arrow i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.category-item:hover .category-arrow i {
    transform: translateX(5px);
}

/* Product Inquiry Section */
.product-inquiry-section {
    margin-top: 4rem;
}

.inquiry-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(43, 77, 160, 0.3);
}

.inquiry-box h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.inquiry-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.inquiry-box .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
}

.inquiry-box .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Animations */
@keyframes heroShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero-title {
        font-size: 2.5rem;
    }
    
    .products-hero-subtitle {
        font-size: 2rem;
    }
    
    .products-hero-desc {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-item {
        padding: 2rem 1.5rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .products-hero-title {
        font-size: 2rem;
    }
    
    .products-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .products-hero-desc {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-item {
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .category-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .category-image i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-content h4 {
        font-size: 1.3rem;
    }
    
    .category-arrow {
        margin-left: 0;
        margin-top: 1rem;
    }
}