﻿/* HERO SECTION */
.management-hero {
    position: relative;
    background: linear-gradient(135deg, #0b326d 0%, #06203a 100%);
    padding: 20rem 2rem 5rem;
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    overflow: hidden;
}

    .management-hero::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="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.4;
    }

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* MESSAGE SECTION */
.message-section {
    padding: 6rem 2rem;
    background: white;
}

.message-container {
    max-width: 1100px;
    margin: 0 auto;
}

.message-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

    .message-card::before {
        content: '"';
        position: absolute;
        top: 2rem;
        left: 3rem;
        font-size: 8rem;
        color: rgba(11, 50, 109, 0.1);
        font-family: Georgia, serif;
        line-height: 1;
    }

.message-greeting {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0b326d;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.message-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #495057;
    margin-bottom: 1.8rem;
    text-align: justify;
    position: relative;
    z-index: 2;
}

    .message-text:last-of-type {
        margin-bottom: 3rem;
    }

.message-signature {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    position: relative;
    z-index: 2;
}

    .message-signature span {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.95rem;
        color: #6c757d;
        font-weight: 400;
    }

/* VALUES SECTION */
.values-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(11, 50, 109, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #0b326d;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(11, 50, 109, 0.1) 0%, rgba(11, 50, 109, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .value-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(11, 50, 109, 0.08) 0%, transparent 70%);
        animation: iconPulse 3s ease-in-out infinite;
        border-radius: 16px;
    }

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.value-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(11, 50, 109, 0.15));
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA SECTION */
.cta-section {
    padding: 5rem 2rem;
    background: white;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #0b326d 0%, #06203a 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: white;
    color: #0b326d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

    .cta-button:hover {
        background: transparent;
        border-color: white;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }

    .cta-button.secondary {
        background: transparent;
        border-color: white;
        color: white;
    }

        .cta-button.secondary:hover {
            background: white;
            color: #0b326d;
        }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .management-hero {
        padding: 19rem 1rem 4rem;
        min-height: 400px;
        align-items: flex-end;
    }

    .hero-label {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 900px;
    }

    .message-section {
        padding: 4rem 1rem;
    }

    .message-card {
        padding: 2.5rem 2rem;
    }

        .message-card::before {
            font-size: 5rem;
            top: 1.5rem;
            left: 1.5rem;
        }

    .message-greeting {
        font-size: 1.1rem;
    }

    .message-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .values-section {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

        .value-icon img {
            width: 45px;
            height: 45px;
        }

    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-container {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .management-hero {
        padding: 16rem 1rem 4rem;
        min-height: 460px;
        align-items: flex-end;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .message-card {
        padding: 2rem 1.5rem;
    }

        .message-card::before {
            font-size: 4rem;
            top: 1rem;
            left: 1rem;
        }

    .value-card {
        padding: 2rem;
    }

    .value-icon {
        width: 65px;
        height: 65px;
    }

        .value-icon img {
            width: 40px;
            height: 40px;
        }

    .cta-container {
        padding: 2.5rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}
