/* About Hero Section */
.about-hero {
    min-height: 100vh;
    padding: 180px 0 100px;
    /*background: radial-gradient(circle at 20% 150%, rgba(222, 39, 31, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% -50%, rgba(202, 180, 137, 0.15) 0%, transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));*/
    background: linear-gradient(135deg, rgba(255,255,255,0), rgba(202, 180, 137, 0) ), var(--about-banner-hero) right center /cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/*.about-hero::before,
.about-hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}*/

/*.about-hero::before {
    background: 
        linear-gradient(120deg, transparent 45%, rgba(222, 39, 31, 0.03) 45%, rgba(222, 39, 31, 0.03) 55%, transparent 55%),
        linear-gradient(-120deg, transparent 45%, rgba(202, 180, 137, 0.03) 45%, rgba(202, 180, 137, 0.03) 55%, transparent 55%);
    background-size: 60px 60px;
    animation: patternFloat 60s linear infinite;
}

.about-hero::after {
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%23de271f" fill-opacity="0.05"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
    animation: dotFloat 40s linear infinite;
}*/

.about-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 0.8s ease forwards;
    padding-bottom: 0.75rem;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), #ff4b44);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.about-hero h1:hover::after {
    width: 100%;
}

.about-hero h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    /* font-family: 'Anek Latin', sans-serif; */
    background: linear-gradient(135deg, var(--neutral-black), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 0.8s ease forwards 0.2s;
    font-weight: 900;
    letter-spacing: -2px;
}

.about-hero p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(29, 29, 27, 0.8);
    animation: slideUp 0.8s ease forwards 0.4s;
    position: relative;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-image {
    position: relative;
    transform: perspective(1000px) rotateY(-12deg) translateZ(120px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: slideLeft 1s ease forwards 0.6s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(-8deg) translateZ(140px) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
    filter: brightness(1.05) contrast(1.05);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    animation: slideUp 0.8s ease forwards 0.6s;
    opacity: 0;
    padding: 2.5rem;
    background: #F9F8F4;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hero-stat {
    flex: 1;
    text-align: left;
    position: relative;
    padding: 0 1rem;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(222, 39, 31, 0.3), transparent);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Anek Latin', sans-serif;
    filter: drop-shadow(0 2px 4px rgba(222, 39, 31, 0.15));
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--neutral-black);
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 120px;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        /*transform: perspective(1000px) rotateY(-15deg) translateZ(100px) translateX(60px);*/
    }
    to {
        opacity: 1;
        /*transform: perspective(1000px) rotateY(-15deg) translateZ(100px) translateX(0);*/
    }
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, rgba(202, 180, 137, 0.1));
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-red);
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    margin: 100px 0;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -17px;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--primary-red);
}

.timeline-item:nth-child(even)::before {
    left: -17px;
    right: auto;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-red);
    border-radius: 50%;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -40px;
    right: auto;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 0 4px rgba(222, 39, 31, 0.2);
}

.timeline-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(222, 39, 31, 0.15);
}

.timeline-image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: #f8f9fa;
}

.timeline-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-year {
    font-family: 'Anek Latin', sans-serif;
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.timeline-year::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.timeline-title {
    font-size: 1.75rem;
    color: var(--neutral-black);
    margin-bottom: 1rem;
}

.timeline-content {
    padding: 2rem;
}

.timeline-text {
    color: rgba(29, 29, 27, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-wrapper::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 80px;
    }
    
    .timeline-dot {
        left: 20px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 31px;
        right: auto;
        width: 50px;
    }
    
    .timeline-item:nth-child(even)::before {
        left: 31px;
    }
}

@media (max-width: 576px) {
    .timeline-year {
        font-size: 3rem;
    }
    
    .timeline-title {
        font-size: 1.5rem;
    }
    
    .timeline-text {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

.timeline-card:hover .timeline-content h3::after {
    width: 80px;
}

.timeline-content p {
    color: rgba(29, 29, 27, 0.75);
    line-height: 1.8;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
}

/* Swiper Customization */
.timelineSwiper {
    padding: 4rem 0;
    margin: 2rem 0;
}

.swiper-slide {
    transition: transform 0.4s ease;
    opacity: 0.5;
    transform: scale(0.9);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper-slide-active .timeline-card {
    box-shadow: 0 30px 60px rgba(222, 39, 31, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-red);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(222, 39, 31, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(222, 39, 31, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-red);
    color: white;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Social Media Section */
.social-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, rgba(222, 39, 31, 0.05));
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(29, 29, 27, 0.75);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    width: 150px;
    height: 150px;
    background: white;
    padding: 2rem;
    border-radius: 100px;
    text-decoration: none;
    color: var(--neutral-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.social-card i {
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.social-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-card.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-card.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-card.tiktok:hover {
    background: #000000;
    color: white;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card:hover i {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero h2 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h2 {
        font-size: 2rem;
    }

    /*.social-grid {
        grid-template-columns: 1fr;
    }*/
}

/* Scroll to Top FAB */
/*.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 5.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(222, 39, 31, 0.25);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #c61f18;
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(222, 39, 31, 0.35);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}*/
