/* ====================================
   SKINCEE DERMASCIENCE - About Page Styles
   ==================================== */

/* ===== AOS Fallback - Ensure Content Visible ===== */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== Page Hero Section ===== */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: var(--color-ivory);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.page-hero-gradient::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-gradient::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(14, 138, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-text-light);
    transition: var(--transition-normal);
}

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

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--color-text-lighter);
}

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

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== Story Section ===== */
.about-story {
    background: var(--color-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text .section-badge {
    margin-bottom: 16px;
}

.story-text .section-title {
    margin-bottom: 32px;
}

.story-description {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-description:last-of-type {
    margin-bottom: 0;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.story-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobMorph 10s ease-in-out infinite;
    opacity: 0.15;
}

.story-stats-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.story-stat {
    text-align: center;
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    background: var(--color-ivory);
    transition: var(--transition-normal);
}

.story-stat:hover {
    background: var(--color-primary-soft);
}

.story-stat:nth-child(1) { border-left: 4px solid var(--color-primary); }
.story-stat:nth-child(2) { border-left: 4px solid var(--color-secondary); }
.story-stat:nth-child(3) { border-left: 4px solid var(--color-purple); }

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ===== Mission & Vision Section ===== */
.mission-vision {
    background: var(--color-ivory);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 48px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.mission-card::before {
    background: var(--gradient-primary);
}

.vision-card::before {
    background: var(--gradient-secondary);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 24px;
}

.mission-card .mv-icon {
    background: var(--gradient-primary);
    box-shadow: 0 10px 25px rgba(14, 138, 78, 0.2);
}

.vision-card .mv-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.2);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.mv-text {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.mv-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-text);
}

.mission-card .mv-list li i {
    color: var(--color-primary);
}

.vision-card .mv-list li i {
    color: var(--color-secondary-dark);
}

/* ===== Values Section ===== */
.values {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.values-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, var(--color-primary-soft) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, var(--color-secondary-soft) 0%, transparent 40%);
    opacity: 0.5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.value-card {
    padding: 40px 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-card:nth-child(1) { border-bottom-color: var(--color-primary); }
.value-card:nth-child(2) { border-bottom-color: var(--color-secondary); }
.value-card:nth-child(3) { border-bottom-color: var(--color-purple); }
.value-card:nth-child(4) { border-bottom-color: var(--color-orange); }
.value-card:nth-child(5) { border-bottom-color: var(--color-gold); }
.value-card:nth-child(6) { border-bottom-color: var(--color-accent); }

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 2rem;
    color: var(--color-white);
}

.value-card:nth-child(1) .value-icon { background: var(--gradient-primary); }
.value-card:nth-child(2) .value-icon { background: var(--gradient-secondary); }
.value-card:nth-child(3) .value-icon { background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%); }
.value-card:nth-child(4) .value-icon { background: linear-gradient(135deg, #E67E22 0%, #D35400 100%); }
.value-card:nth-child(5) .value-icon { background: linear-gradient(135deg, #F1C40F 0%, #F39C12 100%); }
.value-card:nth-child(6) .value-icon { background: var(--gradient-accent); }

.value-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.value-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Approach Section ===== */
.approach {
    background: var(--color-ivory);
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.approach-item {
    position: relative;
    padding: 40px 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.approach-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.08;
    color: var(--color-primary);
    line-height: 1;
}

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

.approach-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.approach-item:nth-child(1) .approach-icon { background: var(--gradient-primary); }
.approach-item:nth-child(2) .approach-icon { background: var(--gradient-secondary); }
.approach-item:nth-child(3) .approach-icon { background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%); }
.approach-item:nth-child(4) .approach-icon { background: linear-gradient(135deg, #E67E22 0%, #D35400 100%); }
.approach-item:nth-child(5) .approach-icon { background: linear-gradient(135deg, #F1C40F 0%, #F39C12 100%); }
.approach-item:nth-child(6) .approach-icon { background: var(--gradient-accent); }

.approach-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.approach-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Categories Overview Section ===== */
.categories-overview {
    background: var(--color-white);
}

.categories-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-showcase-card {
    padding: 32px 24px;
    background: var(--color-ivory);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border-bottom: 3px solid transparent;
}

.category-showcase-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-showcase-card:nth-child(1) { border-bottom-color: var(--color-primary); }
.category-showcase-card:nth-child(2) { border-bottom-color: var(--color-secondary); }
.category-showcase-card:nth-child(3) { border-bottom-color: var(--color-gold); }
.category-showcase-card:nth-child(4) { border-bottom-color: var(--color-orange); }
.category-showcase-card:nth-child(5) { border-bottom-color: var(--color-purple); }
.category-showcase-card:nth-child(6) { border-bottom-color: var(--color-accent); }
.category-showcase-card:nth-child(7) { border-bottom-color: #2ECC71; }
.category-showcase-card:nth-child(8) { border-bottom-color: #3498DB; }

.category-showcase-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    color: var(--color-white);
}

.category-showcase-card:nth-child(1) .category-showcase-icon { background: var(--gradient-primary); }
.category-showcase-card:nth-child(2) .category-showcase-icon { background: var(--gradient-secondary); }
.category-showcase-card:nth-child(3) .category-showcase-icon { background: linear-gradient(135deg, #F1C40F 0%, #F39C12 100%); }
.category-showcase-card:nth-child(4) .category-showcase-icon { background: linear-gradient(135deg, #E67E22 0%, #D35400 100%); }
.category-showcase-card:nth-child(5) .category-showcase-icon { background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%); }
.category-showcase-card:nth-child(6) .category-showcase-icon { background: var(--gradient-accent); }
.category-showcase-card:nth-child(7) .category-showcase-icon { background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%); }
.category-showcase-card:nth-child(8) .category-showcase-icon { background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%); }

.category-showcase-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.category-showcase-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.categories-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== About CTA Section ===== */
.about-cta {
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, var(--color-primary-soft) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, var(--color-secondary-soft) 0%, transparent 50%);
    opacity: 0.6;
}

.about-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .page-hero {
        padding: 140px 0 80px;
    }

    .page-hero-title {
        font-size: 2.75rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-visual {
        order: -1;
    }

    .story-image-wrapper {
        min-height: 350px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mv-card {
        padding: 40px;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

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

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .approach-timeline {
        grid-template-columns: 1fr;
    }

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

    .about-cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .about-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 110px 0 50px;
    }

    .page-hero-title {
        font-size: 1.85rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .story-stats-card {
        padding: 32px 24px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .mv-card {
        padding: 32px 24px;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .value-card {
        padding: 32px 24px;
    }

    .approach-item {
        padding: 32px 24px;
    }

    .categories-showcase {
        grid-template-columns: 1fr;
    }

    .category-showcase-card {
        padding: 28px 20px;
    }

    .about-cta-content h2 {
        font-size: 1.65rem;
    }
}
