/* ============================================ */
/* 📖 ABOUT TEXT SECTION - CLEAN CONTENT         */
/* ============================================ */

.about-text-section {
    position: relative;
    padding: 80px 24px 100px;
    background: transparent;
}

.about-text-container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Content */
.about-text-content {
    padding: 20px 0;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(36, 132, 198, 0.15);
    border: 1px solid rgba(36, 132, 198, 0.3);
    border-radius: 40px;
    color: #6db3ff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.content-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #aad0ff 0%, #6db3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 550px;
}

.content-description strong {
    color: white;
    font-weight: 600;
}

.content-description em {
    color: #aad0ff;
    font-style: italic;
}

.highlight-text {
    padding: 16px 20px;
    background: rgba(36, 132, 198, 0.08);
    border-left: 3px solid #2484c6;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* CTA Buttons */
.content-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-primary-video,
.btn-secondary-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-video {
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(36, 132, 198, 0.3);
}

.btn-primary-video:hover {
    background: linear-gradient(135deg, #3a9bdc, #2484c6);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(36, 132, 198, 0.4);
}

.btn-secondary-video {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary-video:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Right Side - Decorative Card */
.about-text-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-decorative-card {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    text-align: center;
    max-width: 420px;
}

.decorative-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(36, 132, 198, 0.2), rgba(109, 179, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(36, 132, 198, 0.3);
}

.decorative-icon i {
    font-size: 2rem;
    color: #6db3ff;
}

.decorative-quote {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.decorative-author {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-role {
    display: block;
    color: #6db3ff;
    font-size: 0.85rem;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #2484c6, #6db3ff);
    opacity: 0.08;
    filter: blur(30px);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: -5%;
    left: 10%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 5%;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: -5%;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-15px, 15px) scale(0.9); }
}

/* Responsive */
@media (max-width: 900px) {
    .about-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-content {
        text-align: center;
    }
    
    .content-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .highlight-text {
        text-align: left;
    }
    
    .content-actions {
        justify-content: center;
    }
    
    .about-text-visual {
        order: -1;
    }
    
    .about-decorative-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-text-section {
        padding: 60px 20px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-description {
        font-size: 0.95rem;
    }
    
    .decorative-quote {
        font-size: 1rem;
    }
    
    .btn-primary-video,
    .btn-secondary-video {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-video,
    .btn-secondary-video {
        justify-content: center;
        width: 100%;
    }
    
    .about-decorative-card {
        padding: 30px 20px;
    }
}