/* Sleek Professional About Section */

.about-section-sleek {
    position: relative;
    padding: 120px 0;
    background: #0a0a0a;
    overflow: hidden;
}

/* Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.bg-glow-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.bg-glow-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Section Header */
.section-header-sleek {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-pre-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.pre-title-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4de5, transparent);
}

.pre-title-text {
    color: #ff4de5;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title-sleek {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-gradient, .title-solid {
    display: block;
}

.title-gradient {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.section-subtitle-sleek {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* Main Content Layout */
.about-content-sleek {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left Column - Profile Section */
.profile-section-sleek {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Profile Card */
.profile-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Profile Image */
.profile-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-photo {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.8));
    pointer-events: none;
}

/* Verification Badge */
.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 77, 229, 0.3);
}

.verified-badge i {
    color: #ff4de5;
    font-size: 0.9rem;
}

.verified-badge span {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Dual Badge */
.dual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.badge-dj, .badge-marketing {
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-dj {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    color: white;
}

.badge-marketing {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quick Info */
.profile-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 77, 229, 0.05);
    transform: translateY(-3px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 77, 229, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4de5;
    font-size: 1.1rem;
}

.info-content {
    flex: 1;
}

.info-value {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.info-label {
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Contact Mini Card */
.contact-mini-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.contact-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-title i {
    color: #ff4de5;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.contact-link:hover {
    background: rgba(255, 77, 229, 0.05);
    color: white;
    border-color: rgba(255, 77, 229, 0.2);
    transform: translateX(5px);
}

.contact-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Right Column - Bio Section */
.bio-section-sleek {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Introduction Block */
.intro-block {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.intro-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.intro-name {
    font-weight: 700;
    color: white;
}

.intro-title-separator {
    color: #8a2be2;
    font-weight: 300;
}

.intro-brand {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.lead-paragraph {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.lead-paragraph strong {
    color: white;
    font-weight: 600;
}

/* Dual Expertise Section */
.expertise-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 10px;
}

.expertise-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 229, 0.2);
}

.dj-expertise {
    border-top: 3px solid #ff4de5;
}

.marketing-expertise {
    border-top: 3px solid #8a2be2;
}

.expertise-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 77, 229, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #ff4de5;
    font-size: 1.5rem;
}

.marketing-expertise .expertise-icon {
    color: #8a2be2;
}

.expertise-header h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.expertise-label {
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.expertise-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Genre Tags */
.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.genre-tag {
    background: rgba(255, 77, 229, 0.1);
    color: #ff4de5;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 77, 229, 0.2);
}

/* Expertise List */
.expertise-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

.expertise-list i {
    color: #8a2be2;
    font-size: 0.9rem;
}

.expertise-note {
    color: #aaa;
    font-size: 0.9rem;
    font-style: italic;
    border-left: 3px solid rgba(255, 77, 229, 0.3);
    padding-left: 15px;
    margin-top: 20px;
}

/* Philosophy Section */
.philosophy-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.philosophy-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.philosophy-title i {
    color: #ff4de5;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.philosophy-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 77, 229, 0.3);
    line-height: 1;
    min-width: 60px;
}

.point-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.point-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Value Proposition */
.value-proposition {
    background: linear-gradient(135deg, rgba(255, 77, 229, 0.05), rgba(138, 43, 226, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 77, 229, 0.1);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.value-icon-wrapper {
    flex-shrink: 0;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 77, 229, 0.2);
}

.value-content {
    flex: 1;
}

.value-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.value-stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-stat:hover {
    background: rgba(255, 77, 229, 0.05);
    transform: translateY(-3px);
}

.value-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4de5;
    margin-bottom: 5px;
    line-height: 1;
}

.value-stat .stat-label {
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* CTA Section */
.bio-cta-sleek {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    text-align: center;
}

.cta-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlight {
    color: white;
    font-weight: 600;
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 77, 229, 0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 77, 229, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(138, 43, 226, 0.5);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content-sleek {
        gap: 40px;
    }
    
    .profile-photo {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .about-content-sleek {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .profile-section-sleek {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .expertise-dual {
        grid-template-columns: 1fr;
    }
    
    .value-proposition {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-section-sleek {
        padding: 80px 0;
    }
    
    .section-title-sleek {
        font-size: 2.5rem;
    }
    
    .profile-quick-info {
        grid-template-columns: 1fr;
    }
    
    .value-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .section-title-sleek {
        font-size: 2rem;
    }
    
    .profile-card,
    .contact-mini-card,
    .intro-block,
    .expertise-card,
    .philosophy-section,
    .value-proposition,
    .bio-cta-sleek {
        padding: 20px;
    }
    
    .profile-photo {
        height: 250px;
    }
    
    .intro-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .philosophy-point {
        flex-direction: column;
        gap: 10px;
    }
}