/* style/about.css */

/* General Page Styling */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for contrast */
    background-color: #f8f8f8; /* Light background for readability */
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #0A2E36; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #0A2E36, #1a4d5a); /* Darker gradient for hero */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0) 70%);
    opacity: 0.5;
    animation: page-about__hero-pulse 15s infinite alternate;
}

@keyframes page-about__hero-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #F39C12; /* Accent color for title */
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-about__btn--primary {
    background-color: #E74C3C; /* Auxiliary color */
    color: #ffffff;
    border: 2px solid #E74C3C;
}

.page-about__btn--primary:hover {
    background-color: #c0392b; /* Darker red on hover */
    border-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--secondary {
    background-color: #F39C12; /* Accent color */
    color: #0A2E36; /* Main color for text */
    border: 2px solid #F39C12;
}

.page-about__btn--secondary:hover {
    background-color: #e67e22; /* Darker orange on hover */
    border-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--outline {
    background-color: transparent;
    color: #F39C12; /* Accent color */
    border: 2px solid #F39C12;
}

.page-about__btn--outline:hover {
    background-color: #F39C12;
    color: #0A2E36;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Mission & Vision Section */
.page-about__mission-vision {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.page-about__grid--reverse {
    direction: rtl; /* Flip order for visual layout */
}

.page-about__grid--reverse > * {
    direction: ltr; /* Reset text direction */
}

.page-about__content-block {
    padding: 20px;
}

.page-about__content-block h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2em;
    color: #0A2E36;
}

.page-about__content-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555555;
}

.page-about__image-block {
    text-align: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E74C3C"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555555;
}

.page-about__list li strong {
    color: #0A2E36;
}

/* Why Choose Us Section */
.page-about__why-choose-us {
    background-color: #f0f4f7; /* Light greyish blue background */
    padding: 80px 0;
    text-align: center;
}

.page-about__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-about__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-about__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    /* No filter applied to change color */
}

.page-about__feature-title {
    font-size: 1.5em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-about__feature-card p {
    color: #666666;
    font-size: 0.95em;
}

/* Call to Action Section */
.page-about__cta {
    background: #0A2E36; /* Main brand color as background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #F39C12; /* Accent color for CTA title */
    margin-bottom: 20px;
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Animation for sections */
.page-about__fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about__fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }

    .page-about__section-title {
        font-size: 2em;
    }

    .page-about__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-about__grid--reverse {
        direction: ltr; /* Reset for smaller screens */
    }
    .page-about__grid--reverse > * {
        direction: ltr;
    }

    .page-about__image-block {
        order: -1; /* Move image above text for better flow on mobile */
    }

    .page-about__content-block h2 {
        text-align: center;
    }

    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0 60px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0 40px;
    }
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
}