.about {
    padding: 6rem 2rem;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(50px);
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    background-size: 40% 40%;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.about-visual {
    flex: 1;
    position: relative;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.visual-container:hover .main-image-wrapper {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.visual-container:hover .image-glow {
    opacity: 0.3;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.visual-container:hover .image-overlay {
    opacity: 1;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.experience-badge:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.badge-content {
    position: relative;
    z-index: 2;
}

.years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    border-radius: 20px;
    transition: var(--transition);
    z-index: 1;
}

.experience-badge:hover .badge-glow {
    opacity: 0.1;
}

.stats-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: floatStats 6s ease-in-out infinite 2s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.stats-card:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.text {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stats-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    border-radius: 20px;
    transition: var(--transition);
    z-index: 1;
}

.stats-card:hover .stats-glow {
    opacity: 0.1;
}

.about-content {
    flex: 1;
}

.content-header {
    margin-bottom: 2.5rem;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

.feature-icon i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature:hover .feature-icon i {
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    gap: 1rem;
}

.cta-button.primary:hover .button-glow {
    left: 100%;
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    gap: 1rem;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes floatStats {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@media screen and (max-width: 1200px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .experience-badge,
    .stats-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }

    .about-actions {
        flex-direction: column;
    }

    .cta-button {
        justify-content: center;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        align-self: center;
    }
}