﻿/* ========================================
   ELOK Printing - Premium Corporate Sections
   Enterprise-Grade Design System
   Dark Premium Theme (Matching Footer)
   ======================================== */

/* Corporate Stats Section - Dark Premium Design */
.corporate-stats {
    padding: 0;
    background: linear-gradient(180deg, #0d1333 0%, #0a0f29 100%);
    position: relative;
    overflow: hidden;
}

.corporate-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-wrapper {
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-divider {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
}

/* Premium Section Headers - Dark Theme */
.section-header-premium {
    margin-bottom: 60px;
}

.subtitle-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 143, 215, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 143, 215, 0.2);
}

.section-title-large {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
}

/* Premium Products Showcase - Dark Glassmorphism */
.products-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0f29 0%, #0d1333 100%);
    position: relative;
    overflow: hidden;
}

.products-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 143, 215, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(26, 35, 126, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.products-showcase .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.product-card-premium {
    position: relative;
    height: 100%;
}

.product-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover .product-card-inner {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 143, 215, 0.1);
}

.product-card-premium:hover .product-card-inner::before {
    transform: scaleX(1);
}

.product-icon-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}

.product-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 143, 215, 0.15) 0%, rgba(0, 143, 215, 0.05) 100%);
    border-radius: 14px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 143, 215, 0.1);
}

.product-card-premium:hover .product-icon-bg {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 143, 215, 0.25) 0%, rgba(0, 143, 215, 0.1) 100%);
    border-color: rgba(0, 143, 215, 0.3);
}

.product-icon {
    position: relative;
    font-size: 26px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    margin-bottom: 16px;
}

.product-count-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.product-link:hover {
    color: var(--accent-light);
}

.product-link:hover::before {
    width: 16px;
}

.product-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.product-card-premium:hover .product-link i {
    transform: translateX(4px);
}

/* Products Grid Responsive */
@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-inner {
        padding: 20px 16px;
    }
}

/* Excellence Section - Dark Glassmorphism */
.excellence-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1333 0%, #070b1f 100%);
    position: relative;
    overflow: hidden;
}

.excellence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.excellence-section .container {
    position: relative;
    z-index: 1;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.excellence-card {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.excellence-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 143, 215, 0.08);
}

.excellence-icon {
    margin-bottom: 16px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(0, 143, 215, 0.1);
    border: 1px solid rgba(0, 143, 215, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.excellence-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 143, 215, 0.4);
}

.icon-circle i {
    font-size: 26px;
    color: var(--accent-color);
    transition: color 0.4s ease;
}

.excellence-card:hover .icon-circle i {
    color: #ffffff;
}

.excellence-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.excellence-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Excellence Grid Responsive */
@media (max-width: 1199px) {
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .excellence-grid {
        grid-template-columns: 1fr;
    }
    
    .excellence-card {
        padding: 24px 16px;
    }
}

/* Portfolio Showcase - Dark Premium */
.portfolio-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #070b1f 0%, #0a0f29 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(26, 35, 126, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 143, 215, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-showcase .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 143, 215, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, 0.3);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 19, 51, 0) 0%, rgba(13, 19, 51, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 143, 215, 0.4);
}

.portfolio-item:hover .portfolio-view-btn {
    transform: scale(1);
    opacity: 1;
}

.portfolio-view-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 10px 30px rgba(0, 143, 215, 0.5);
    color: #ffffff;
}

.portfolio-content {
    padding: 16px;
}

.portfolio-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-client {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Portfolio Grid Responsive */
@media (max-width: 1199px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium CTA - Dark Premium Theme */
.premium-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0f29 0%, #0d1333 100%);
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 143, 215, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(26, 35, 126, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.premium-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 48px;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #2fa8df !important;
    color: #ffffff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 143, 215, 0.35);
    border: none;
}

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 143, 215, 0.45);
    color: #ffffff;
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    color: #ffffff;
}

.btn-text-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-text-link::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.btn-text-link:hover {
    color: var(--accent-light);
}

.btn-text-link:hover::before {
    width: 16px;
}

/* Empty State - Dark Theme */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design - Dark Premium Theme */
@media (max-width: 992px) {
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .stat-value {
        font-size: 2.75rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-wrapper {
        padding: 48px 36px;
    }
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .stats-wrapper {
        padding: 36px 0;
    }
    
    .stat-value {
        font-size: 2.25rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .products-showcase,
    .excellence-section,
    .portfolio-showcase {
        padding: 70px 0;
    }
    
    .section-header-premium {
        margin-bottom: 40px;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-wrapper {
        padding: 40px 28px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 28px;
    }
    
    .premium-cta {
        padding: 70px 0;
    }
    
    .btn-premium,
    .btn-premium-outline {
        padding: 16px 28px;
    }
}

@media (max-width: 576px) {
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .product-card-inner {
        padding: 32px 24px;
    }
    
    .excellence-card {
        padding: 32px 20px;
    }
    
    .btn-premium,
    .btn-premium-outline {
        width: 100%;
        justify-content: center;
    }
}

