/* Enhanced About Us Section - Modern Design */

#penyalur-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
    overflow: hidden;
}

/* Background Elements */
.about-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 186, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 186, 255, 0.03) 0%, transparent 50%);
    background-size: 800px 800px;
}

.about-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 186, 255, 0.1), rgba(0, 230, 255, 0.05));
    animation: floatAnimation 15s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: -5s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 5%;
    animation-delay: -10s;
}

@keyframes floatAnimation {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg); 
        opacity: 0.6;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.about-header {
    margin-bottom: 4rem;
    /* Animasi masuk — ditangani AOS (data-aos di HTML) */
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 186, 255, 0.1);
    border: 1px solid rgba(0, 186, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0066cc;
}

.about-badge i {
    color: #00baff;
    font-size: 1rem;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Visual Section */
.about-visual-wrapper {
    text-align: center;
    /* Animasi masuk — ditangani AOS (data-aos di HTML) */
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.logo-background {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 186, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.company-logo {
    position: relative;
    z-index: 2;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.logo-container:hover .company-logo {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(0, 186, 255, 0.2), rgba(0, 230, 255, 0.1));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    filter: blur(15px);
}

.logo-container:hover .logo-glow {
    opacity: 1;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 186, 255, 0.08);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 186, 255, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 0.2rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Ensure numbers are always visible */
.stat-number {
    min-height: 1.8rem;
    display: inline-block;
}

/* Fallback for when JavaScript is disabled */
.no-js .stat-number {
    opacity: 1 !important;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Content Section */
.about-content {
    /* Animasi masuk — ditangani AOS (data-aos di HTML) */
}

.content-header {
    margin-bottom: 2rem;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00baff, #0066cc);
    border-radius: 2px;
}

.content-body {
    margin-bottom: 2.5rem;
}

.lead-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 186, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 186, 255, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 186, 255, 0.1), rgba(0, 186, 255, 0.05));
    border: 2px solid rgba(0, 186, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00baff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Content Actions */
.content-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 186, 255, 0.3);
    border: none;
    outline: none;
}

.btn-about-cta:hover {
    background: linear-gradient(135deg, #0066cc, #00baff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 186, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-about-cta i {
    transition: transform 0.3s ease;
}

.btn-about-cta:hover i {
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-item i {
    color: #00baff;
    font-size: 1rem;
}

/* Animasi — ditangani AOS (data-aos di HTML) */

/* Responsive Design */
@media (max-width: 1200px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .company-logo {
        max-width: 200px;
    }
}

@media (max-width: 992px) {
    #penyalur-section {
        padding: 80px 0;
    }
    
    .about-header {
        margin-bottom: 3rem;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .about-visual-wrapper {
        margin-bottom: 3rem;
    }
    
    .content-actions {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #penyalur-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 2.5rem;
    }
    
    .about-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .company-logo {
        max-width: 180px;
    }
    
    .company-stats {
        max-width: 280px;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .content-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn-about-cta {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .about-main-title {
        font-size: 1.5rem;
    }
    
    .content-title {
        font-size: 1.4rem;
    }
    
    .company-logo {
        max-width: 150px;
    }
    
    .stat-card {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .feature-icon {
        align-self: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-circle {
        animation: none !important;
    }

    .stat-card,
    .feature-item,
    .btn-about-cta,
    .company-logo {
        transition: none !important;
    }
}

/* Focus States */
.btn-about-cta:focus {
    outline: 3px solid #00baff;
    outline-offset: 3px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .stat-card,
    .feature-item {
        background: white;
        border: 2px solid #00baff;
    }
    
    .about-main-title {
        background: #00baff;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        color: #00baff;
    }
}
