/* ============================================
   ABOUT PAGE - CUSTOM HERO STYLES
   Unique centered design for About page
   ============================================ */

/* About Hero - Unique Centered Design */
.about-hero-unique {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-unique::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Breadcrumb */
.breadcrumb-about {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.breadcrumb-about a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-about a:hover {
    color: var(--primary);
}

.breadcrumb-about i.fa-chevron-right {
    font-size: 0.7rem;
    color: var(--gray-300);
}

.breadcrumb-about span {
    color: var(--primary);
    font-weight: 600;
}

/* Centered Hero Content */
.about-hero-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-hero-center .trust-badge {
    margin: 0 auto 1.5rem;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-200);
}

/* Hero Actions */
.about-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Image Grid */
.about-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.about-grid-item {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.grid-item-1 {
    animation-delay: 0.1s;
}

.grid-item-2 {
    animation-delay: 0.2s;
}

.grid-item-3 {
    animation-delay: 0.3s;
}

.grid-item-4 {
    animation-delay: 0.4s;
}

.grid-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.grid-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.grid-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.grid-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease;
}

.animate-slide-up {
    animation: slideUp 0.8s ease;
}

.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.delay-4 {
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .about-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-unique {
        padding: 4rem 0 3rem;
    }

    .about-hero-title {
        font-size: 2.25rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .about-stat-divider {
        width: 100%;
        height: 1px;
    }

    .about-hero-actions {
        flex-direction: column;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}