.modern-about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.modern-about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(219,168,73,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.modern-about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(219,168,73,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.modern-about-content {
    position: relative;
    z-index: 2;
}

.about-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.about-text-content {
    padding-right: 40px;
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #dba849 0%, #c99235 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #dba849;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.about-features li:hover {
    transform: translateX(10px);
    color: #dba849;
}

.about-features li i {
    color: #dba849;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
}

.about-cta-btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #dba849 0%, #c99235 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(219, 168, 73, 0.3);
    position: relative;
    overflow: hidden;
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(219, 168, 73, 0.4);
    color: #fff;
}

.about-cta-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .about-text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-cta-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}
