/* About Page Styles - Right-aligned Headings Design */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==================== BASE RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f9fdfa;
    color: #333;
    line-height: 1.6;
}

/* ==================== CONTAINER ==================== */
.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ==================== HERO SECTION ==================== */
.about-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4220 50%, #2c5f2d 100%);
    padding: 6rem 5% 8rem;
    position: relative;
    overflow: hidden;
}

.about-hero::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.03'%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");
}

.about-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-left {
    position: relative;
}

.about-hero-decorations {
    position: relative;
    height: 300px;
}

.about-hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-hero-circle-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.05);
    animation: about-pulse 3s ease-in-out infinite;
}

.about-hero-circle-2 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: about-pulse 3s ease-in-out infinite 0.5s;
}

.about-hero-circle-3 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: about-pulse 3s ease-in-out infinite 1s;
}

@keyframes about-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.about-hero-stats-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-stat-item {
    text-align: center;
}

.about-hero-stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.about-hero-stat-text {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.about-hero-right {
    text-align: left;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.about-hero-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-hero-btn-primary {
    background: white;
    color: #2c5f2d;
}

.about-hero-btn-primary:hover {
    background: #e8f5e9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-hero-btn-primary svg {
    transition: transform 0.3s ease;
}

.about-hero-btn-primary:hover svg {
    transform: translateY(3px);
}

.about-hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.about-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.about-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.about-hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ==================== SECTION BASE ==================== */
.about-section {
    padding: 6rem 0;
}

.about-section-light {
    background: #f9fdfa;
}

.about-section-white {
    background: #ffffff;
}

.about-section-green {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4220 100%);
}

/* ==================== ROW LAYOUT ==================== */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-row-reverse {
    direction: rtl;
}

.about-row-reverse>* {
    direction: ltr;
}

.about-col {
    position: relative;
}

.about-col-heading {
    display: flex;
    align-items: center;
}

.about-col-content {
    display: flex;
    align-items: center;
}

/* ==================== HEADING BOX ==================== */
.about-heading-box {
    text-align: right;
    padding: 2rem;
    width: 100%;
}

.about-heading-box-left {
    text-align: left;
}

.about-heading-box-light {
    text-align: right;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2c5f2d;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.about-title-light {
    color: white;
}

.about-title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5f2d, #4caf50);
    border-radius: 2px;
    margin-left: auto;
    margin-bottom: 1.5rem;
}

.about-title-line-left {
    margin-left: 0;
    margin-right: auto;
}

.about-title-line-light {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), white);
}

.about-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.about-subtitle-light {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== CONTENT BOX ==================== */
.about-content-box {
    width: 100%;
}

.about-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.about-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e8f5e9;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: #e8f5e9;
    transform: translateX(5px);
    border-color: #c8e6c9;
}

.about-feature-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #2c5f2d, #4caf50);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-feature-item span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* ==================== PHILOSOPHY SECTION ==================== */
.about-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-philosophy-card {
    background: #f9fdfa;
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid #e8f5e9;
    transition: all 0.3s ease;
}

.about-philosophy-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.1);
    transform: translateY(-5px);
    border-color: #2c5f2d;
}

.about-philosophy-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5f2d 0%, #4caf50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.about-philosophy-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.about-philosophy-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ==================== MISSION SECTION ==================== */
.about-mission-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-mission-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-mission-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.about-mission-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.about-mission-content {
    flex: 1;
}

.about-mission-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.about-mission-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ==================== VISION SECTION ==================== */
.about-vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e9;
}

.about-vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.about-vision-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-vision-goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-vision-goal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9fdfa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-vision-goal:hover {
    background: #e8f5e9;
}

.about-vision-goal svg {
    color: #2c5f2d;
    flex-shrink: 0;
}

.about-vision-goal span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* ==================== LEADERSHIP SECTION ==================== */
.about-leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.about-leadership-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: #f9fdfa;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-leadership-card:hover {
    background: white;
    border-color: #2c5f2d;
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.1);
    transform: translateX(-10px);
}

.about-leadership-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5f2d;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-leadership-card:hover .about-leadership-icon {
    background: linear-gradient(135deg, #2c5f2d 0%, #4caf50 100%);
    color: white;
}

.about-leadership-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.about-leadership-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ==================== STATS SECTION ==================== */
.about-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4220 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.about-stat-content {
    display: flex;
    flex-direction: column;
}

.about-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.about-stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== CTA SECTION ==================== */
.about-cta-section {
    padding: 5rem 0;
    background: #f9fdfa;
}

.about-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: white;
    padding: 3rem 4rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e9;
}

.about-cta-content {
    flex: 1;
}

.about-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.about-cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #666;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-btn-primary {
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.about-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.about-cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.about-cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.about-cta-btn-secondary {
    background: white;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.about-cta-btn-secondary:hover {
    background: #e8f5e9;
    transform: translateY(-3px);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-hero-left {
        display: none;
    }

    .about-hero-right {
        text-align: center;
    }

    .about-hero-text {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .about-hero-buttons {
        justify-content: center;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* FIX: Reset direction for mobile */
    .about-row-reverse {
        direction: ltr;
    }

    /* FIX: Reorder columns so heading comes first on mobile */
    .about-row-reverse .about-col-heading {
        order: 1;
    }

    .about-row-reverse .about-col-content {
        order: 2;
    }

    .about-heading-box {
        text-align: center;
        padding: 1rem 0;
    }

    .about-heading-box-left {
        text-align: center;
    }

    .about-heading-box-light {
        text-align: center;
    }

    .about-title-line {
        margin: 0 auto 1.5rem;
    }

    .about-title-line-left {
        margin: 0 auto 1.5rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .about-cta-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 5% 6rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .about-hero-wave svg {
        height: 50px;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-features-list {
        grid-template-columns: 1fr;
    }

    .about-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .about-vision-goals {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        padding: 1.25rem;
    }

    .about-stat-number {
        font-size: 1.5rem;
    }

    .about-mission-item {
        flex-direction: column;
        gap: 1rem;
    }

    .about-mission-item:hover {
        transform: translateY(-5px);
    }

    .about-leadership-card {
        flex-direction: column;
        text-align: center;
    }

    .about-leadership-card:hover {
        transform: translateY(-5px);
    }

    .about-leadership-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 3rem 5% 5rem;
    }

    .about-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 1.65rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-philosophy-card {
        padding: 1.25rem;
    }

    .about-vision-card {
        padding: 1.75rem;
    }

    .about-vision-text {
        font-size: 1.05rem;
    }

    .about-vision-icon {
        width: 65px;
        height: 65px;
    }

    .about-vision-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
    }

    .about-stat-icon {
        width: 50px;
        height: 50px;
    }

    .about-stat-icon svg {
        width: 22px;
        height: 22px;
    }

    .about-stat-number {
        font-size: 1.35rem;
    }

    .about-stat-label {
        font-size: 0.8rem;
    }

    .about-cta-wrapper {
        padding: 2rem 1.5rem;
    }

    .about-cta-title {
        font-size: 1.5rem;
    }

    .about-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .about-icon-box {
        margin: 0 auto 1.5rem;
    }

    .about-content-box {
        text-align: center;
    }

    .about-text {
        text-align: left;
    }

    .about-feature-item:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 400px) {
    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-mission-item {
        padding: 1.25rem;
    }

    .about-mission-number {
        font-size: 1.5rem;
    }

    .about-stats-section {
        padding: 3rem 0;
    }

    .about-philosophy-card {
        padding: 1rem;
    }

    .about-philosophy-icon {
        width: 45px;
        height: 45px;
    }

    .about-philosophy-icon svg {
        width: 20px;
        height: 20px;
    }

    .about-leadership-card {
        padding: 1.25rem;
    }

    .about-leadership-icon {
        width: 55px;
        height: 55px;
    }

    .about-leadership-icon svg {
        width: 26px;
        height: 26px;
    }
}