/* Ultra Premium Custom Design - Logiron */

/* Premium Variables */
:root {
    --primary-navy: #010E37;
    --primary-blue: #002699;
    --accent-gold: #FFD700;
    --text-dark: #1a1a2e;
    --text-gray: #4a4a68;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #002699 0%, #010E37 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stats Section - Premium Glassmorphism */
.stats-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,38,153,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stats-image {
    position: relative;
}

.stats-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0,38,153,0.1) 0%, rgba(255,215,0,0.1) 100%);
    border-radius: 30px;
    z-index: -1;
    transform: rotate(-3deg);
    transition: var(--transition-smooth);
}

.stats-image:hover::before {
    transform: rotate(3deg);
}

.stats-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-smooth);
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
}

.stats-image:hover img {
    transform: translateY(-10px);
}

.stats-content .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(0,38,153,0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.stats-content .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.stats-content .section-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.counter-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,38,153,0.05);
}

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(0,38,153,0.1);
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0,38,153,0.1) 0%, rgba(255,215,0,0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.counter-box:hover .counter-icon {
    background: linear-gradient(135deg, rgba(0,38,153,0.15) 0%, rgba(255,215,0,0.15) 100%);
    transform: scale(1.1);
}

.counter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.counter-number-wrapper {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.counter-prefix,
.counter-suffix {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Usage Section - Premium Cards */
.usage-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.usage-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.usage-section .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: var(--gradient-blue);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.usage-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.usage-section .section-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.usage-column {
    display: contents;
}

.usage-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.usage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.usage-card:hover::before {
    transform: scaleX(1);
}

.usage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.usage-icon {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.usage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usage-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1,14,55,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.usage-card:hover .usage-icon::after {
    opacity: 1;
}

.usage-content {
    padding: 14px;
    flex: 1;
}

.usage-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.usage-description {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.45;
    margin: 0;
}

/* Experience Section - Premium Split */
.experience-section {
    padding: 120px 0;
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.experience-section::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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience-content .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.experience-content .section-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
}

.experience-content .experience-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.experience-image {
    position: relative;
}

.experience-image::before {
    content: '';
    position: absolute;
    inset: -30px;
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 30px;
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.experience-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center top;
}

/* How It Works - Premium Timeline */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-it-works .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.how-it-works .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), var(--primary-blue));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 auto 30px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Benefits Section - Premium Layout */
.benefits-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.benefits-header .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(0,38,153,0.08);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.benefits-header .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-collage .collage-item {
    box-shadow: var(--shadow-heavy);
}

.benefits-collage .collage-item:hover img {
    transform: scale(1.08);
}

.benefits-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 28px;
    background: #f8f9fa;
    border-radius: 12px;
    border-bottom: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: #f0f4ff;
    transform: translateX(5px);
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0,38,153,0.1) 0%, rgba(255,215,0,0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-blue);
}

.benefit-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Ultra Responsive Design */
@media (max-width: 1200px) {
    .stats-grid,
    .experience-grid {
        gap: 60px;
    }
    
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .stats-image {
        display: flex;
        justify-content: center;
    }

    .stats-image img {
        max-width: 500px;
    }

    .counters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .benefits-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-collage {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .counters-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-content .section-title,
    .usage-section .section-title,
    .experience-content .section-title,
    .how-it-works .section-title,
    .benefits-header .section-title {
        font-size: 32px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
}

/* Events Section - Dark Background Headings */
.events-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #010E37 0%, #002699 100%);
    position: relative;
    overflow: hidden;
}

.events-section::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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.events-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.events-section .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255,215,0,0.1);
    border-radius: 50px;
    border: 1px solid rgba(255,215,0,0.3);
}

.events-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.events-section .section-description {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* Page Hero Premium */
.page-hero-premium {
    background: linear-gradient(135deg, rgba(1,14,55,0.95) 0%, rgba(0,38,153,0.9) 100%), url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-hero-premium::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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.page-hero-premium h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero-premium p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
