.about {
    padding: 7rem 2rem;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@keyframes circleFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
    overflow: visible;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-media {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: none;
    transition: transform 0.3s ease;
    border-radius: 30px;
}

@keyframes imageFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(1.5deg);
    }
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    padding: 2.5rem;
    overflow: hidden;
    min-height: fit-content;
    position: relative;
}

.about-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
            180deg,
            rgba(117, 59, 125, 0.08) 0%,
            rgba(117, 59, 125, 0.04) 50%,
            transparent 100%
        ),
        radial-gradient(
            circle at 20% 30%,
            rgba(117, 59, 125, 0.06) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(117, 59, 125, 0.04) 0%,
            transparent 50%
        );
    border-radius: 30px 30px 0 0;
    pointer-events: none;
}

.about-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
            0deg,
            rgba(84, 134, 130, 0.08) 0%,
            rgba(84, 134, 130, 0.04) 50%,
            transparent 100%
        ),
        radial-gradient(
            circle at 25% 70%,
            rgba(84, 134, 130, 0.06) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 75% 80%,
            rgba(84, 134, 130, 0.04) 0%,
            transparent 50%
        );
    border-radius: 0 0 30px 30px;
    pointer-events: none;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.about-text p,
.about-text div {
    margin-bottom: 2rem;
    line-height: 2;
    font-size: 1.2rem;
    color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.about-text div:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-media {
        min-height: 300px;
    }

    .about-text {
        padding: 2rem;
    }

    .about-text::before,
    .about-text::after {
        height: 80px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-text p,
    .about-text div {
        font-size: 1.1rem;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 0.8rem;
    font-weight: 600;
}
