/* ===================================
   ABOUT PAGE STYLES - CLARWIZ
   Specific styles for the About page
   =================================== */

/* About page specific enhancements */
.about-hero {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::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="rgba(99, 102, 241, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .lead {
    font-size: 1.375rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About content section */
.about-content {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.about-card {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-3xl);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-600) 100%);
}

.about-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.about-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-600) 100%);
    border-radius: var(--radius-full);
}

.about-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: var(--spacing-2xl) 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.about-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-600) 100%);
    border-radius: var(--radius-full);
}

.about-card p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Enhanced list styling */
.about-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.about-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.about-card li:last-child {
    border-bottom: none;
}

.about-card li:hover {
    background: var(--gray-50);
    margin: 0 calc(-1 * var(--spacing-md));
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.about-card li i {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-card li span {
    flex: 1;
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .lead {
        font-size: 1.125rem;
    }

    .about-card {
        padding: var(--spacing-xl);
        margin: 0 var(--spacing-md);
    }

    .about-card h2 {
        font-size: 2rem;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

    .about-card p {
        font-size: 1rem;
    }

    .about-card li span {
        font-size: 1rem;
    }
}