

/* =========================================================
   About page stylesheet
   Imports the global design system then adds page-specific
   sections: page-hero, pull-quote, vision/mission, timeline
   ========================================================= */

@import url("components.css");
@import url("style.css");




/* =========================================================
   Page Hero (compact inner-page version)
   ========================================================= */

.page-hero {
    height: 70vh !important;
    min-height: 420px;
    /* max-height: 600px;  */
    background: url("/assets/hero/hero11.webp") no-repeat center center / cover !important;
}

.page-hero .hero-overlay {
    padding: calc(var(--nav-height) + 2.5rem) 0 4rem;
    display: flex;
    align-items: center;
    background-color: #35353577;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .85);
    transition: color .2s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.crumb-sep {
    opacity: .5;
}

.crumb-current {
    color: #fff;
    font-weight: 600;
}

/* Inline emphasis used in hero headings */
.text-em {
    color: var(--c-red);
}

/* Meta row beneath hero lead */
.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 28px;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.hero-meta-item i {
    color: var(--c-green);
}


/* =========================================================
   Founder Pull-quote
   ========================================================= */

.pullquote-section {
    padding: 5rem 0;
}

.pullquote-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.pullquote-photo {
    flex: 0 0 220px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pullquote-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pullquote-body {
    flex: 1 1 320px;
}

.pullquote-body blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 22px;
    padding-left: 24px;
    border-left: 4px solid var(--c-red);
}

.pullquote-cite {
    color: #c7c6c9;
    font-size: .95rem;
}

.pullquote-cite strong {
    color: #fff;
    font-weight: 700;
}


/* =========================================================
   Vision & Mission
   ========================================================= */

.vm-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 3.5rem;
    border: 1px solid var(--c-line);
}

.vm-col {
    padding: 44px 40px;
}

.vm-col:first-child {
    border-right: 1px solid var(--c-line);
}

.vm-label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-secondary);
    margin-bottom: 14px;
}

.vm-col p {
    color: var(--c-secondary-soft);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================================
   Values
   ========================================================= */

.value-grid {
    margin-top: .5rem;
}

.value-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-line);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin: 0 auto 16px;
}

.value-icon.icon-red {
    background: rgba(218, 60, 59, .1);
    color: var(--c-red-deep);
}

.value-icon.icon-blue {
    background: rgba(55, 141, 187, .1);
    color: var(--c-blue-deep);
}

.value-icon.icon-green {
    background: rgba(140, 187, 78, .12);
    color: var(--c-green-deep);
}

.value-card h6 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-secondary);
}

.value-card p {
    color: var(--c-secondary-soft);
    font-size: .88rem;
    margin: 0;
    line-height: 1.6;
}


/* =========================================================
   Timeline (Our Story)
   ========================================================= */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--c-line);
}

.timeline-item {
    position: relative;
    padding-left: 46px;
    padding-bottom: 44px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 6px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-surface);
    border: 3px solid var(--c-red);
    box-shadow: 0 0 0 5px var(--c-surface);
    z-index: 2;
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-red-deep);
    background: rgba(218, 60, 59, .08);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

.timeline-item h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-secondary);
}

.timeline-item p {
    color: var(--c-secondary-soft);
    font-size: .95rem;
    margin: 0;
    max-width: 560px;
    line-height: 1.65;
}


/* =========================================================
   Community grid
   ========================================================= */

.community-grid .life-strip-item {
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
    .page-hero {
        height: auto;
        min-height: 380px;
        max-height: none;
    }

    .pullquote-photo {
        flex: 1 1 180px;
        height: 240px;
    }
}

@media (max-width: 767.98px) {
    .vm-panel {
        grid-template-columns: 1fr;
    }

    .vm-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--c-line);
    }

    .vm-col {
        padding: 32px 26px;
    }

    .pullquote-wrap {
        gap: 32px;
        text-align: center;
    }

    .pullquote-body blockquote {
        padding-left: 0;
        border-left: none;
    }

    .pullquote-photo {
        margin: 0 auto;
        flex: 0 0 180px;
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .page-hero .hero-overlay {
        padding: calc(var(--nav-height) + 1.5rem) 0 3rem;
    }

    .hero-meta-row {
        gap: 14px 20px;
        margin-top: 22px;
    }

    .timeline-item {
        padding-left: 38px;
        padding-bottom: 36px;
    }

    .timeline-dot {
        left: 2px;
        width: 18px;
        height: 18px;
    }

    .timeline::before {
        left: 11px;
    }
}




/* =========================================================
   FAQ accordion
   ========================================================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    border-left: 4px solid transparent;
    overflow: hidden;
    transition: box-shadow .3s ease, border-color .3s ease, transform .25s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--c-line);
    transform: translateY(-2px);
}

.faq-item.active {
    border-left-color: var(--c-red);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-secondary);
    cursor: pointer;
    transition: color .2s ease;
}

.faq-item.active .faq-question {
    color: var(--c-red-deep);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-primary);
    color: var(--c-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}

.faq-item.active .faq-icon {
    background: var(--c-red);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 28px 26px;
    color: var(--c-secondary-soft);
    font-size: .95rem;
    line-height: 1.7;
}

.faq-answer-inner strong {
    color: var(--c-secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 575.98px) {
    .faq-question {
        padding: 18px 22px;
        font-size: .98rem;
    }

    .faq-answer-inner {
        padding: 0 22px 22px;
        font-size: .92rem;
    }
}

@media (max-height: 1000px) {
    
    .page-hero .hero-overlay {
        padding: calc(var(--nav-height) + 1.5rem) 0 2.5rem;
    }
    .page-hero h1 {
        font-size: clamp(1.9rem, 2.5rem + 1.6vw, 3.8rem);
    }
    .hero-meta-row {
        margin-top: 18px;
    }
}

@media (max-height: 720px) {
    .page-hero{
        height: 75vh !important;
    }
    .page-hero h1 {
        font-size: clamp(1.9rem, 2.5rem + 1.6vw, 2.8rem);
    }
}