﻿/* ========================================
   VYMSTATS PAGE STYLES
   Using Navy Blue (#1a2044) and Coral (#c98b7a)
   ======================================== */

:root {
    --navy-blue: #1a2044;
    --coral: #c98b7a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-color: #4a4a4a;
}

/* Hero Section */
.vymstats-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-blue) 0%, rgba(26, 32, 68, 0.9) 100%), url('/images/vymstats/vymstats-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 68, 0.3);
    z-index: 1;
}

.vymstats-hero .container {
    position: relative;
    z-index: 2;
}

.vymstats-hero .hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.vymstats-hero .hero-subtitle-main {
    color: var(--coral);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.vymstats-hero .hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Introduction Section */
.intro-section {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    color: var(--navy-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--navy-blue));
    margin: 0 auto 40px;
    border-radius: 2px;
}

.intro-text {
    color: var(--text-color);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--coral);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 32, 68, 0.15);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral), #d4a294);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(201, 139, 122, 0.3);
}

    .service-icon i {
        font-size: 2rem;
        color: var(--white);
    }

.service-title {
    color: var(--navy-blue);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-divider {
    width: 50px;
    height: 3px;
    background: var(--coral);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.service-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: var(--white);
}

/* Process Image */
.process-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-image {
    width: 100%;
    height: auto;
    display: block;
}

.process-step {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px 25px;
    height: 100%;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .process-step:hover {
        border-color: var(--coral);
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(201, 139, 122, 0.2);
    }

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(26, 32, 68, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--coral);
}

    .step-icon i {
        font-size: 1.8rem;
        color: var(--coral);
    }

.step-title {
    color: var(--navy-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(26, 32, 68, 0.15);
    }

/* Benefit Card with Images */
.benefit-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.benefit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image {
    transform: scale(1.1);
}

.benefit-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 32, 68, 0.6) 100%);
}

.benefit-content {
    padding: 40px 30px;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--navy-blue), #2a3464);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 25px;
    box-shadow: 0 10px 25px rgba(26, 32, 68, 0.3);
    position: relative;
    z-index: 2;
}

    .benefit-icon i {
        font-size: 2.2rem;
        color: var(--coral);
    }

.benefit-title {
    color: var(--navy-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.benefit-divider {
    width: 60px;
    height: 3px;
    background: var(--coral);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.benefit-description {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: var(--white);
}

.advantage-list {
    list-style: none;
    padding: 0;
}

    .advantage-list li {
        color: var(--text-color);
        font-size: 1.1rem;
        line-height: 2.5;
        display: flex;
        align-items: center;
    }

    .advantage-list i {
        color: var(--coral);
        font-size: 1.3rem;
        margin-right: 15px;
        flex-shrink: 0;
    }

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 68, 0.9) 0%, rgba(26, 32, 68, 0.85) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

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

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 139, 122, 0.4);
}

    .btn-primary-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(201, 139, 122, 0.6);
        color: var(--white);
    }

.btn-secondary-cta {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

    .btn-secondary-cta:hover {
        background: var(--white);
        color: var(--navy-blue);
        transform: translateY(-3px);
    }

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 992px) {
    .vymstats-hero .hero-title {
        font-size: 3rem;
    }

    .vymstats-hero .hero-subtitle-main {
        font-size: 1.5rem;
    }

    .vymstats-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .vymstats-hero {
        padding: 120px 20px 80px;
    }

        .vymstats-hero .hero-title {
            font-size: 2.5rem;
            letter-spacing: 3px;
        }

        .vymstats-hero .hero-subtitle-main {
            font-size: 1.3rem;
        }

        .vymstats-hero .hero-subtitle {
            font-size: 1rem;
        }

    .section-title {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .service-card,
    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-image-wrapper {
        height: 180px;
    }

    .benefit-content {
        padding: 35px 25px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 544px) {
    .vymstats-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .advantage-list li {
        font-size: 1rem;
    }

    .benefit-image-wrapper {
        height: 160px;
    }
}
