/* About Us Section Enhanced Styling */

.about-us-section {
    background: linear-gradient(135deg, #e3e2e2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Section */
.about-us-content {
    padding: 2rem 0;
}

.about-us-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), #4c4fb8);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(46, 47, 144, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.about-us-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 47, 144, 0.3);
}

.badge-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-us-title {
    margin-bottom: 1.5rem;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-us-description {
    margin-bottom: 2.5rem;
    color: var(--ai-gen-82921b10-4b39-48f0-b346-808cf4903d29-1754783947878---text-color--text-secondary);
    line-height: 1.7;
    font-size: 1.125rem;
}

/* Key Features */
.about-us-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 47, 144, 0.1);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 47, 144, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #2e2f90;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Action Buttons */
.about-us-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button-primary {
    background: #2e2f90 !important;
    border: none !important;
    padding: 0.875rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(46, 47, 144, 0.2) !important;
}

.button-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(46, 47, 144, 0.3) !important;
    background: linear-gradient(135deg, #4c4fb8, var(--primary-color)) !important;
}

.button-secondary {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 0.875rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}

.button-secondary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(46, 47, 144, 0.2) !important;
}

/* Visual Section */
.about-us-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.visual-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.visual-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visual-main:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-text {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.visual-secondary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.secondary-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.secondary-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.secondary-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.secondary-image:hover img {
    transform: scale(1.05);
}

/* Stats Section */
.about-us-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 47, 144, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 47, 144, 0.15);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: #2e2f90;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--ai-gen-82921b10-4b39-48f0-b346-808cf4903d29-1754783947878---text-color--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-main {
        order: -1;
    }
    
    .main-image {
        height: 300px;
    }
    
    .about-us-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-us-wrapper {
        gap: 2rem;
    }
    
    .about-us-content {
        padding: 1rem 0;
    }
    
    .about-us-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
    
    .about-us-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .button-primary,
    .button-secondary {
        width: 100% !important;
        text-align: center !important;
    }
    
    .about-us-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .visual-secondary {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
    }
    
    .secondary-image {
        flex-shrink: 0;
        width: 200px;
    }
    
    .secondary-image img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .about-us-badge {
        margin-bottom: 1rem;
    }
    
    .about-us-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .about-us-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 0.75rem 1rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-us-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.about-us-content > *:nth-child(1) { animation-delay: 0.1s; }
.about-us-content > *:nth-child(2) { animation-delay: 0.2s; }
.about-us-content > *:nth-child(3) { animation-delay: 0.3s; }
.about-us-content > *:nth-child(4) { animation-delay: 0.4s; }
.about-us-content > *:nth-child(5) { animation-delay: 0.5s; }

.about-us-visual > * {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}