/* ============================================
   About Us Page Specific Styles
   ============================================ */

/* === Page Header Enhancement === */
.pageHeader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pageHeader {
    position: relative;
    overflow: hidden;
}

.pageHeader h1,
.pageHeader p,
.breadcrumb {
    position: relative;
}

/* === Main Content === */
.mainContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* === Founder Section === */
.founderSection {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.founderImageContainer {
    position: relative;
}

.founderImage {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(114, 47, 55, 0.2);
}

.founderImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founderAccent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--burgundy);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.3);
    text-align: center;
}

.founderAccent .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.founderAccent .label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.founderContent h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.founderContent h2 span {
    color: var(--burgundy);
}

.founderRole {
    font-size: 1.1rem;
    color: var(--burgundy);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.founderContent p {
    font-size: 1.05rem;
    color: var(--charcoalLight);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founderQuote {
    background-color: var(--sageLight);
    border-left: 4px solid var(--sage);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.founderQuote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.founderQuote cite {
    font-size: 0.9rem;
    color: var(--charcoalLight);
    font-style: normal;
}

.awardBadge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #D4B972 100%);
    color: var(--charcoal);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(196, 169, 98, 0.3);
}

/* === Credentials Grid === */
.credentialsSection {
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.credentialsSection h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    text-align: center;
}

.credentialsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.credentialCard {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--cream);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.credentialCard:hover {
    transform: translateY(-5px);
}

.credentialIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundyLight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.credentialCard h4 {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
}

.credentialCard p {
    font-size: 0.9rem;
    color: var(--charcoalLight);
}

/* === Story Timeline === */
.storySection {
    margin-bottom: 5rem;
}

.storySection h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    text-align: center;
}

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

.storyTimeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--creamDark);
}

.timelineItem {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timelineItem:nth-child(odd) {
    flex-direction: row;
}

.timelineItem:nth-child(even) {
    flex-direction: row-reverse;
}

.timelineContent {
    width: 45%;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.timelineItem:nth-child(odd) .timelineContent {
    margin-right: auto;
    text-align: right;
}

.timelineItem:nth-child(even) .timelineContent {
    margin-left: auto;
    text-align: left;
}

.timelineDot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--burgundy);
    border-radius: 50%;
    border: 4px solid var(--cream);
}

.timelineYear {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timelineContent h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
}

.timelineContent p {
    font-size: 0.95rem;
    color: var(--charcoalLight);
}

/* === Values Section === */
.valuesSection {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundyDark) 100%);
    border-radius: 24px;
    padding: 4rem;
    color: var(--white);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.valuesSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.valuesSection h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.valuesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.valueCard {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.valueCard:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.valueIcon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.valueCard h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.valueCard p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* === Care Inspectorate Section === */
.inspectorateSection {
    background-color: var(--sageLight);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.inspectorateIcon {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(122, 139, 122, 0.2);
}

.inspectorateContent h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.inspectorateContent p {
    font-size: 1rem;
    color: var(--charcoalLight);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.inspectorateBadge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--sage);
}

/* === About Responsive === */
@media (max-width: 1024px) {
    .founderSection {
        grid-template-columns: 1fr;
    }

    .founderImageContainer {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .founderContent h2 {
        font-size: 2rem;
    }

    .credentialsGrid,
    .valuesGrid {
        grid-template-columns: 1fr;
    }

    .storyTimeline::before {
        left: 20px;
    }

    .timelineItem,
    .timelineItem:nth-child(odd),
    .timelineItem:nth-child(even) {
        flex-direction: row;
    }

    .timelineContent,
    .timelineItem:nth-child(odd) .timelineContent,
    .timelineItem:nth-child(even) .timelineContent {
        width: calc(100% - 50px);
        margin-left: 50px;
        text-align: left;
    }

    .timelineDot {
        left: 20px;
    }

    .inspectorateSection {
        flex-direction: column;
        text-align: center;
    }

    .valuesSection {
        padding: 2.5rem 1.5rem;
    }
}