
/* About Us Section */
.about-us-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Readex Pro', sans-serif;
    overflow: hidden;
    position: relative;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, #f8f4e9, #fff8e1);
    z-index: 0;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    filter: blur(3px);
    opacity: 0.6;
}

.about-us-section .container {
    position: relative;
    z-index: 1;
}

.about-us-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Enhanced Timeline */
.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 100px;
    bottom: 100px;
    width: 4px;
    background: linear-gradient(to bottom, #28a745, #20c997, #FFD700);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 0 4px #fff, 0 4px 15px rgba(40, 167, 69, 0.3);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
}

/* Story Blocks Enhanced */
.story-block {
    padding: 40px 0 40px 120px;
    border-radius: 20px;
    margin-bottom: 60px !important;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Story Content Enhanced */
.story-content {
    padding: 0 30px;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.story-badge i {
    font-size: 1rem;
}

.story-title {
    color: #b10027;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Story Stats */
.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f4e9, #fff8e1);
    border-radius: 15px;
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Story Features */
.story-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.feature-item span {
    color: #555;
    font-weight: 500;
}

/* Expansion Map */
.expansion-map {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.location-pin {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.location-pin i {
    color: #28a745;
    font-size: 1rem;
}

.location-pin span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Family Values */
.family-values {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.value-icon i {
    color: white;
    font-size: 1.2rem;
}

.value-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Enhanced Image Containers */
.story-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image {
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
    transition: transform 0.4s ease;
}

.story-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-badge {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Hero Showcase */
.hero-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-showcase-image {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    border-radius: 25px;
}

.hero-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.hero-showcase-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 40px;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-showcase-content h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-showcase-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.showcase-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.showcase-stat {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showcase-stat span:last-child {
    font-size: 1rem;
    opacity: 0.9;
}

/* Enhanced About CTA */
.about-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.cta-icon i {
    color: white;
    font-size: 1.5rem;
}

.about-cta h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-cta p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #218838, #1aa085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.cta-buttons .btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.cta-buttons .btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    transform: translateY(-2px);
}

.cta-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

/* Mobile Responsive Enhanced */
@media (max-width: 768px) {
    .about-us-section {
        padding: 80px 0;
    }

    .about-us-section::before {
        width: 100%;
        height: 30%;
        top: 0;
        border-radius: 0;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
        filter: blur(2px);
        opacity: 0.4;
    }

    .timeline-line {
        left: 25px;
    }

    .timeline-marker {
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .timeline-item::before {
        left: -55px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .story-block {
        padding: 30px 20px 30px 80px;
        margin-bottom: 40px !important;
        text-align: center;
    }

    .story-content {
        padding: 0 15px;
    }

    .story-title {
        font-size: 1.6rem;
    }

    .story-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .story-badge {
        margin-bottom: 15px;
    }

    .story-image {
        max-height: 300px;
    }

    .story-stats {
        justify-content: center;
        gap: 20px;
    }

    .expansion-map,
    .family-values {
        justify-content: center;
        flex-wrap: wrap;
    }

    .showcase-stats {
        gap: 30px;
    }

    .stat-big {
        font-size: 2rem;
    }

    .hero-showcase-content {
        padding: 30px 20px;
    }

    .hero-showcase-content h4 {
        font-size: 1.8rem;
    }

    .hero-showcase-content p {
        font-size: 1rem;
    }

    .about-cta {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-us-section .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}
