/* About Page Specific Styles */

/* About Hero Content */
.about-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.about-hero .hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.about-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff !important;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.7) 0%, rgba(42, 42, 42, 0.7) 100%),
                url('/images/about.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

/* Story Section - Modern Design */
.story-section {
    padding: 120px 0;
    background: #ffffff;
}

.story-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(31,31,31,0.1);
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem 0;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Values Section - Carousel Design */
.values-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Values layout */
.values-section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.values-section-intro {
    max-width: 620px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

.values-timeline {
    position: relative;
    display: grid;
    gap: 40px;
    padding: 0 1rem;
}

.values-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 15%, rgba(0,0,0,0.15) 85%, rgba(0,0,0,0) 100%);
}

.value-step {
    position: relative;
    display: flex;
}

.value-step::before {
    content: '';
    position: absolute;
    top: 32px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 6px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2;
}

.value-step-left {
    justify-content: flex-start;
    padding-right: 50%;
}

.value-step-left::before {
    right: calc(-9px);
}

.value-step-right {
    justify-content: flex-end;
    padding-left: 50%;
}

.value-step-right::before {
    left: calc(-9px);
}

.value-step-content {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 480px;
    width: 100%;
}

.value-step-left .value-step-content {
    margin-left: auto;
}

.value-step-right .value-step-content {
    margin-right: auto;
}

.value-step-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

.value-step-content {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-step-content:hover {
    border-color: rgba(0,0,0,0.12);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.value-step-content:hover .value-icon {
    transform: scale(1.08) rotate(-4deg);
}

.value-text {
    text-align: start;
}

.value-text h3 {
    text-align: inherit;
}

.value-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.4rem 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.value-card:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* Values Section Title Styling */
.values-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .values-timeline-line {
        left: 12px;
        transform: none;
    }

    .value-step,
    .value-step-left,
    .value-step-right {
        padding: 0 0 0 40px;
        justify-content: flex-start;
    }

    .value-step::before,
    .value-step-left::before,
    .value-step-right::before {
        left: 0;
        right: auto;
    }

    .value-step-content {
        margin: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }
    
    .values-section .section-title {
        font-size: 2rem;
    }
    
    .values-section-intro {
        font-size: 0.95rem;
    }
    
    .value-step-content {
        padding: 1.5rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
}

@media (max-width: 575.98px) {
    .values-timeline {
        gap: 28px;
    }

    .value-step-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .value-text {
        text-align: center;
    }

    .value-icon {
        margin-bottom: 0.75rem;
    }
}

/* Mission Section - Modern Design */
.mission-section {
    padding: 120px 0 80px;
    background: #ffffff;
}

.mission-card {
    background: white;
    border-radius: 30px 30px 0 0;
    padding: 4rem;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -9rem auto 2rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 5px solid var(--accent-color);
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
