/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* Subpage Hero */
.subpage-hero {
    padding: 60px 0; 
    background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-white) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.hero-bg-accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

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

.subpage-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.breadcrumb {
    display: flex;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
}

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

.breadcrumb .sep {
    opacity: 0.5;
}

.breadcrumb .active {
    color: var(--color-primary);
    font-weight: 700;
}

/* About Intro */
.about-intro {
    background: linear-gradient(135deg, var(--pastel-white) 0%, var(--pastel-lavender) 100%);
    padding: 80px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-intro-text {
    flex: 1.2;
}

.about-intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.intro-card {
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
    border-left: 4px solid var(--theme-color);
    background: var(--theme-light);
    --theme-color: var(--color-primary);
    --theme-light: var(--color-primary-lighter);
}

.ic-1 { --theme-color: var(--pastel-lavender-deep); --theme-light: var(--pastel-lavender); }
.ic-2 { --theme-color: var(--pastel-rose-deep); --theme-light: var(--pastel-rose); }

.i-icon {
    font-size: 1.2rem;
    color: var(--theme-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-intro-visual {
    flex: 0.8;
}

.visual-blob-wrapper {
    position: relative;
    padding: 2rem;
}

.blob-anim {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
    top: 0; left: 0;
    z-index: 0;
    animation: blob-morph 15s ease-in-out infinite alternate;
}

@keyframes blob-morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
}

.intro-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 2;
    pointer-events: none;
}

.f-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    color: var(--color-primary);
    font-size: 1.2rem;
    animation: float 4s ease-in-out infinite;
}

.fi-1 { top: 10%; right: 10%; animation-delay: 0s; }
.fi-2 { bottom: 20%; left: -5%; animation-delay: 1s; }
.fi-3 { top: 40%; left: -10%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Vision Section */
.about-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sky) 100%);
    color: var(--color-text);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.vision-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1' fill='%235D34A5' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-vision h2 {
    color: var(--color-primary-dark);
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-style: italic;
}

.vision-goals {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.v-goal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.v-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-secondary);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

/* 3. Objectives Section */
.about-objectives {
    background: linear-gradient(135deg, var(--pastel-lemon) 0%, var(--pastel-white) 100%);
    position: relative;
    padding: 80px 0;
}

/* Objectives Card */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.obj-card {
    padding: 1.5rem 1.8rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--theme-color);
    background: var(--theme-light);
    transition: var(--transition);
    --theme-color: var(--color-primary);
    --theme-light: var(--color-primary-lighter);
}

.oc-1 { --theme-color: var(--pastel-lavender-deep); --theme-light: var(--pastel-lavender); }
.oc-2 { --theme-color: var(--pastel-rose-deep); --theme-light: var(--pastel-rose); }
.oc-3 { --theme-color: var(--pastel-peach-deep); --theme-light: var(--pastel-peach); }
.oc-4 { --theme-color: var(--pastel-mint-deep); --theme-light: var(--pastel-mint); }


.obj-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.obj-icon {
    width: 70px;
    height: 70px;
    background: white;
    color: var(--theme-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.obj-card:hover .obj-icon {
    transform: rotateY(180deg);
    background: var(--theme-color);
    color: white;
}

/* Positioning */
.positioning-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    background: linear-gradient(135deg, var(--pastel-sky) 0%, var(--pastel-lavender) 100%);
    padding: 5rem;
    border-radius: 40px;
    border: 1px solid rgba(173, 20, 87, 0.05);
}

.pos-text {
    flex: 1.2;
}

.pos-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pos-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-sub);
    font-weight: 500;
    color: var(--color-primary-dark);
}

.pos-item i {
    color: var(--color-secondary);
    font-size: 1.4rem;
}

.pos-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.pulse-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 3s infinite linear;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1.5s;
}

.center-icon {
    width: 80px;
    height: 80px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(216, 27, 96, 0.4);
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive About */
@media (max-width: 1200px) {
    .objectives-grid { grid-template-columns: repeat(2, 1fr); }
    .positioning-wrapper { flex-direction: column; padding: 3rem; text-align: center; }
    .pos-list { align-items: center; }
}

@media (max-width: 1150px) {
    .about-flex { flex-direction: column; text-align: center; }
    .intro-cards { grid-template-columns: 1fr; }
    .about-vision h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .objectives-grid { grid-template-columns: 1fr; }
    .subpage-hero h1 { font-size: 2.5rem; }
}

/* 5. Stakeholders Section */
.about-stakeholders {
    background: linear-gradient(135deg, var(--pastel-white) 0%, var(--pastel-lavender) 100%);
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.stakeholder-card {
    background: var(--pastel-white);
    padding: 2.2rem 1.8rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-primary-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stakeholder-card:nth-child(1) {
    background: var(--pastel-lavender);
    border-color: #D1C4E9; /* Visible Lavender */
}

.stakeholder-card:nth-child(2) {
    background: var(--pastel-rose);
    border-color: #F8BBD0; /* Visible Rose */
}

.stakeholder-card:nth-child(3) {
    background: var(--pastel-mint);
    border-color: #B2DFDB; /* Visible Mint/Teal */
}

.stakeholder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
    background: white; /* Lift up on hover */
}

.stakeholder-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary-light);
    box-shadow: var(--shadow-soft);
}

.stakeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stakeholder-card:hover .stakeholder-img {
    transform: scale(1.1);
}

.stakeholder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.stakeholder-role {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stakeholder-bio {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--color-primary-lighter);
}

.stakeholder-socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.stakeholder-socials a {
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.stakeholder-socials a:hover {
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.placeholder-img {
    background: var(--color-primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 3rem;
}

@media (max-width: 1100px) {
    .stakeholders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stakeholders-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}
