/* ========================================
   ABOUT SECTION - COMPLETE UI DESIGN
   Modern, Feature-Rich Implementation
   ======================================== */

/* Section Base */
.about-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    overflow: hidden;
}

/* Background Shapes */
.about-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.about-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    top: -100px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.about-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    bottom: -50px;
    left: -50px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.about-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    top: 50%;
    left: 30%;
    animation: floatShape 18s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Container */
.about-section .container {
    position: relative;
    z-index: 1;
}

/* ========== LEFT SIDE - IMAGES ========== */
.about-images {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-main:hover .image-overlay {
    opacity: 1;
}

/* Floating Badge */
.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.badge-content h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-content p {
    font-size: 14px;
    color: #64748b;
    margin: 5px 0 0 0;
    font-weight: 600;
}

/* Secondary Image */
.about-image-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #3b82f6;
    color: white;
}

/* Decorative Elements */
.about-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.about-decoration-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    opacity: 0.1;
    top: -20px;
    left: -20px;
    animation: pulse 3s ease-in-out infinite;
}

.about-decoration-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    opacity: 0.1;
    bottom: 100px;
    right: -20px;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* Trust Indicators */
.about-trust-indicators {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.trust-indicator i {
    font-size: 18px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-indicator span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ========== RIGHT SIDE - CONTENT ========== */
.about-content {
    padding-left: 40px;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.section-badge i {
    font-size: 16px;
}

/* Section Title */
.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Description */
.section-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Key Points */
.about-key-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.key-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.key-point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.key-point-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.key-point-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Features List */
.about-features {
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-feature-item:last-child {
    border-bottom: none;
}

.about-feature-item:hover {
    padding-left: 10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 26px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon i {
    -webkit-text-fill-color: white;
}

.feature-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.feature-content p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Stats Counter */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 5px 0;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-content h3::after {
    content: '+';
    font-size: 28px;
}

.stat-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Buttons */
.about-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-cta-buttons .btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about-cta-buttons .btn:hover i {
    transform: translateX(3px);
}

.about-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.about-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.about-cta-buttons .btn-outline-primary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.about-cta-buttons .btn-outline-primary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Animations */
.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards 0.2s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-content {
        padding-left: 20px;
    }
    
    .about-key-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-image-secondary {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: -30px;
    }
    
    .about-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .badge-content h3 {
        font-size: 28px;
    }
    
    .about-trust-indicators {
        justify-content: center;
    }
    
    .about-key-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .stat-content h3 {
        font-size: 36px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .about-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 22px;
    }
    
    .feature-content h5 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
}

/* Utility Classes */
.rounded-20 {
    border-radius: 20px;
}

.rounded-15 {
    border-radius: 15px;
}

/* Print Styles */
@media print {
    .about-bg-shapes,
    .about-decoration,
    .play-button {
        display: none;
    }
}
