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

.about-us-section {
    margin: 0 auto;
    padding: 4rem 0;
    background-image: url('/assets/about-us/about-us-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-us-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
}

.about-us-section-title {
    font-family: 'Figtree', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Content Wrapper - Two Columns */
.about-us-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Image Placeholder */
.about-us-image-placeholder {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.placeholder-box {
    width: 100%;
    height: 100%;
    background-image: url('../assets/about-us/img-9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Content */
.about-us-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-us-text-content p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #11161A;
    margin-bottom: 0.75rem;
    text-align: justify;
}

.about-us-text-content p:last-child {
    margin-bottom: 0;
}

.about-us-text-content strong {
    font-weight: 700;
}

/* Color Classes for Specific Terms */
.color-dmsf {
    color: #4A6C2F;
}

.color-lantaw {
    color: #4A6C2F;
}

.color-ilunas {
    color: #236477;
}

/* Button Container */
.about-us-button-container {
    text-align: center;
    margin-top: 1.5rem;
}

.view-journey-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5a8f4a, #4A7C59);
    color: white;
    padding: 12px 36px;
    font-family: 'Figtree', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.view-journey-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.view-journey-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-journey-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
}

.view-journey-btn span {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us-section {
        padding: 3rem 0;
    }

    .about-us-section-title {
        font-size: 2rem;
        margin: 0 0 1.5rem 0;
    }

    .about-us-container {
        padding: 0 1rem;
    }

    .about-us-content-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .placeholder-box {
        height: 250px;
    }

    .about-us-text-content p {
        font-size: 13px;
    }

    .view-journey-btn {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}
