/* ============================================
   ABOUT PAGE — Unique Styles
   ============================================ */

.about-hero {
    background: linear-gradient(150deg, #2D5A3D 0%, #1A3A25 40%, #3A2A1E 100%);
}

/* Origin Story */
.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.origin-content h2 {
    margin-bottom: 28px;
    line-height: 1.25;
}

.origin-content p {
    margin-bottom: 18px;
}

.origin-content p strong {
    color: var(--secondary-green);
}

.origin-image-stack {
    position: relative;
}

.origin-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.origin-img-main img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    background: var(--neutral-light);
}

.origin-img-float {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 4px solid white;
}

.origin-img-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--neutral-light);
}

/* Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.philosophy-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.philosophy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.phil-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(45, 90, 61, 0.06);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    position: relative;
}

.philosophy-card h3::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    margin-bottom: 16px;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Why Seva */
.why-seva-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.why-image-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-image-block img {
    width: 100%;
    height: 550px;
    object-fit: contain;
    background: var(--neutral-light);
}

.why-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-sm);
    padding: 20px 28px;
}

.overlay-stat .stat-number {
    font-size: 2rem;
    color: var(--secondary-green);
}

.overlay-stat .stat-label {
    font-size: 0.85rem;
}

.why-seva-right h2 {
    margin-bottom: 24px;
}

.why-seva-right > p {
    margin-bottom: 16px;
}

.why-pillars {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(45, 90, 61, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
}

.pillar h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pillar p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-green), var(--accent-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

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

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--secondary-green);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--secondary-green);
}

.timeline-content {
    background: white;
    padding: 28px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.timeline-date {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(45, 90, 61, 0.08);
    color: var(--secondary-green);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-beige), var(--primary-warm));
}

.about-cta-block {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.about-cta-block h2 {
    margin-bottom: 16px;
}

.about-cta-block p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.about-cta-block .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .origin-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-seva-layout { grid-template-columns: 1fr; gap: 40px; }
    .philosophy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .origin-img-float { position: relative; bottom: auto; left: auto; width: 100%; height: 200px; margin-top: 16px; }
    .origin-img-main img { height: 350px; }
    .why-image-block img { height: 350px; }
}
