/* ========================================
   VOLEADO - ABOUT PAGE STYLES
   Company story and values presentation
   ======================================== */

/* About Header */
.about-header {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 8rem 0 5rem;
}

.about-header .page-title,
.about-header .page-subtitle {
    color: white;
}

.about-header .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

/* Mission, Vision, Values Section */
.mvv-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.mvv-card {
    background-color: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.mvv-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: all var(--transition-base);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(10deg);
}

.mvv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.mvv-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Special Styles for Each Card */
.mvv-card.mission .mvv-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.mvv-card.vision .mvv-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.mvv-card.values .mvv-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Values Detail Section */
.values-detail {
    padding: 5rem 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.value-item {
    position: relative;
    padding: var(--spacing-xl);
    padding-left: 5rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.value-item:hover {
    background-color: white;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.value-number {
    position: absolute;
    left: var(--spacing-lg);
    top: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    color: white;
    box-shadow: var(--shadow-md);
}

.value-item h3 {
    font-size: 1.375rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image img {
    width: 100%;
    max-width: 450px;
    animation: float 6s ease-in-out infinite;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.why-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.why-item:hover {
    background-color: #e0f2fe;
    border-color: var(--primary-light);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.why-item i {
    color: var(--secondary-color);
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-item div {
    flex: 1;
}

.why-item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background-color: white;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.approach-card {
    background-color: var(--bg-secondary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.approach-card:hover {
    background-color: white;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scale(1.1) rotate(5deg);
}

.approach-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color var(--transition-base);
}

.approach-card:hover .approach-icon i {
    color: white;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.stat-box {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-box:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: white;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .story-image {
        order: -1;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 6rem 0 3rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .mvv-card {
        padding: var(--spacing-lg);
    }

    .mvv-icon {
        width: 70px;
        height: 70px;
    }

    .mvv-icon i {
        font-size: 2rem;
    }

    .mvv-card h3 {
        font-size: 1.5rem;
    }

    .mvv-card p {
        font-size: 1rem;
    }

    .value-item {
        padding-left: var(--spacing-lg);
        padding-top: 4rem;
    }

    .value-number {
        left: 50%;
        top: var(--spacing-md);
        transform: translateX(-50%);
    }

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .why-item i {
        margin: 0 auto;
    }

    .approach-card {
        padding: var(--spacing-lg);
        text-align: center;
    }

    .approach-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mvv-card {
        padding: var(--spacing-md);
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .value-item h3 {
        font-size: 1.125rem;
    }

    .approach-card h3 {
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .stats-section,
    .cta-section {
        display: none;
    }

    .mvv-card,
    .value-item,
    .approach-card {
        page-break-inside: avoid;
        border: 1px solid #000;
    }
}

/* Accessibility Enhancements */
.mvv-card:focus-within,
.value-item:focus-within,
.approach-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Animation for Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mvv-card {
    animation: fadeInUp 0.6s ease-out;
}

.mvv-card:nth-child(1) { animation-delay: 0s; }
.mvv-card:nth-child(2) { animation-delay: 0.1s; }
.mvv-card:nth-child(3) { animation-delay: 0.2s; }

.value-item {
    animation: fadeInUp 0.6s ease-out;
}

.value-item:nth-child(1) { animation-delay: 0s; }
.value-item:nth-child(2) { animation-delay: 0.05s; }
.value-item:nth-child(3) { animation-delay: 0.1s; }
.value-item:nth-child(4) { animation-delay: 0.15s; }
.value-item:nth-child(5) { animation-delay: 0.2s; }
.value-item:nth-child(6) { animation-delay: 0.25s; }

/* Gradient Text Effect for Headings */
.story-text h2::after,
.why-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: var(--spacing-sm);
    border-radius: 2px;
}

/* Hover Effect for Why Items */
.why-item:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Parallax Effect for Images */
@media (min-width: 769px) {
    .story-image img,
    .why-image img {
        transition: transform 0.3s ease;
    }

    .story-section:hover .story-image img,
    .why-choose:hover .why-image img {
        transform: scale(1.05);
    }
}

/* Custom Scrollbar for Long Content */
.story-text::-webkit-scrollbar,
.why-text::-webkit-scrollbar {
    width: 6px;
}

.story-text::-webkit-scrollbar-track,
.why-text::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.story-text::-webkit-scrollbar-thumb,
.why-text::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Stat Box Animation on Scroll */
.stat-box {
    animation: fadeInUp 0.8s ease-out;
}

.stat-box:nth-child(1) { animation-delay: 0s; }
.stat-box:nth-child(2) { animation-delay: 0.1s; }
.stat-box:nth-child(3) { animation-delay: 0.2s; }
.stat-box:nth-child(4) { animation-delay: 0.3s; }

/* Approach Card Stagger */
.approach-card {
    animation: fadeInUp 0.6s ease-out;
}

.approach-card:nth-child(1) { animation-delay: 0s; }
.approach-card:nth-child(2) { animation-delay: 0.1s; }
.approach-card:nth-child(3) { animation-delay: 0.2s; }
.approach-card:nth-child(4) { animation-delay: 0.3s; }

/* Special Highlight on Active Section */
.value-item:hover .value-number {
    transform: scale(1.15) rotate(5deg);
}

/* Gradient Border Animation */
@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mvv-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    border-radius: var(--radius-xl);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.mvv-card:hover::after {
    opacity: 0.2;
    animation: gradient-border 3s ease infinite;
}