/* Products Page Specific Styles */

/* Products Hero */
.products-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.products-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.products-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    padding: 4rem 0;
    background: #f8fafc;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: fit-content;
}

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

.product-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.product-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.product-content {
    padding: 2rem;
}

/* Product Sections */
.product-components,
.product-benefits,
.product-deployment {
    margin-bottom: 2rem;
}

.product-components h3,
.product-benefits h3,
.product-deployment h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.product-components ul,
.product-benefits ul,
.product-deployment ul {
    list-style: none;
    padding: 0;
}

.product-components li,
.product-benefits li,
.product-deployment li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.product-components li::before,
.product-benefits li::before,
.product-deployment li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.product-components strong {
    color: #1e293b;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.product-actions .btn-primary,
.product-actions .btn-outline {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    min-width: 140px;
}

.product-actions .btn-secondary {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    flex: 0 0 auto;
    min-width: 120px;
}

/* Product page specific button styling */
.product-actions .btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

.product-actions .btn-outline:hover {
    background: #374151;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(55, 65, 81, 0.3);
}

/* Products CTA Section */
.products-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active Navigation */
.nav-menu a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-hero p {
        font-size: 1.1rem;
    }
    
    .products-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 6rem 0 3rem;
    }
    
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .product-header {
        padding: 1.5rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* Animation for product cards */
.product-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

/* Hover effects for interactive elements */
.product-card:hover .product-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.product-components li:hover,
.product-benefits li:hover,
.product-deployment li:hover {
    color: #1e293b;
    transition: color 0.3s ease;
}

/* Print styles */
@media print {
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .products-cta {
        display: none;
    }
    
    .navbar {
        display: none;
    }
}

/* PDF Link States */
.pdf-link.disabled {
    background: #94a3b8 !important;
    color: #f1f5f9 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
}

.pdf-link.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.pdf-link:not(.disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* PDF Notification Styles */
.pdf-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.notification-content span {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive notifications */
@media (max-width: 768px) {
    .pdf-notification {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification-content {
        min-width: auto;
        padding: 1rem;
    }
} 