/* style/about.css */
/* Base styles for the About Us page */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background, ensures WCAG AA */
    background-color: #1A2B4C; /* Main brand color for background */
    line-height: 1.6;
    overflow-x: hidden;
}

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

.page-about-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for titles, ensures WCAG AA on dark background */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-about-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about-subtitle {
    font-size: 1.2em;
    color: #B0B0B0; /* Slightly darker light gray, ensures WCAG AA */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-about-image:hover {
    transform: translateY(-5px);
}

/* Buttons */
.page-about-btn {
    display: inline-block;
    background-color: #FFD700; /* Accent color */
    color: #1A2B4C; /* Main color for text on accent background, ensures WCAG AA */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-about-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-about-btn-primary {
    background-color: #FFD700;
    color: #1A2B4C;
}

.page-about-btn-primary:hover {
    background-color: #e6c200;
}

.page-about-btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #3A4B6C; /* A darker shade of main color */
    color: #FFD700; /* Accent color for text, ensures WCAG AA */
    border: 1px solid #FFD700;
}

.page-about-btn-small:hover {
    background-color: #4A5C7C;
    color: #FFD700;
}

/* Hero Section */
.page-about-hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #3A4B6C 100%); /* Gradient background */
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about-hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-about-hero-description {
    font-size: 1.4em;
    color: #C0C0C0; /* Ensures WCAG AA */
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-about-hero-image {
    max-width: 90%;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Content Sections */
.page-about-story,
.page-about-values,
.page-about-why-us,
.page-about-detail-pages,
.page-about-cta {
    padding: 80px 0;
}

.page-about-story {
    background-color: #1A2B4C;
}

.page-about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.page-about-content-wrapper.page-about-reverse {
    flex-direction: row-reverse;
}

.page-about-text-content {
    flex: 1;
    font-size: 1.1em;
    color: #E0E0E0; /* Ensures WCAG AA */
}

.page-about-text-content h3 {
    color: #FFD700; /* Ensures WCAG AA */
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-about-text-content p {
    margin-bottom: 20px;
}

.page-about-text-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about-text-content ul li {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFD700' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E") no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #F0F0F0; /* Ensures WCAG AA */
}

.page-about-image-content {
    flex: 1;
    text-align: center;
}

/* Values Section */
.page-about-values {
    background-color: #2A3C5C; /* Slightly lighter dark blue */
}

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

.page-about-value-item {
    background-color: #1A2B4C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border-bottom: 5px solid #FFD700;
}

.page-about-value-item:hover {
    transform: translateY(-10px);
}

.page-about-value-item h3 {
    color: #FFD700; /* Ensures WCAG AA */
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-about-value-item h3 i {
    font-size: 1.2em; /* Placeholder for icon */
}

.page-about-value-item p {
    color: #C0C0C0; /* Ensures WCAG AA */
    font-size: 1em;
}

.page-about-values-image {
    margin-top: 40px;
}

/* Why Us Section */
.page-about-why-us {
    background-color: #1A2B4C;
}

/* Detail Pages Section */
.page-about-detail-pages {
    background-color: #2A3C5C;
}

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

.page-about-detail-card {
    background-color: #1A2B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-about-detail-card:hover {
    transform: translateY(-10px);
}

.page-about-detail-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-about-detail-card h3 a {
    color: #FFD700; /* Ensures WCAG AA */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about-detail-card h3 a:hover {
    color: #e6c200;
}

.page-about-detail-card p {
    color: #C0C0C0; /* Ensures WCAG AA */
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Call to Action Section */
.page-about-cta {
    background: linear-gradient(45deg, #1A2B4C, #3A4B6C);
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

.page-about-cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-about-cta-description {
    font-size: 1.3em;
    color: #C0C0C0;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about-hero-title {
        font-size: 3.2em;
    }
    .page-about-hero-description {
        font-size: 1.2em;
    }
    .page-about-section-title {
        font-size: 2.2em;
    }
    .page-about-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-about-content-wrapper.page-about-reverse {
        flex-direction: column;
    }
    .page-about-image-content {
        margin-top: 30px;
    }
    .page-about-values-grid,
    .page-about-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-about-hero {
        padding: 80px 0 40px;
    }
    .page-about-hero-title {
        font-size: 2.5em;
    }
    .page-about-hero-description {
        font-size: 1em;
    }
    .page-about-section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about-story,
    .page-about-values,
    .page-about-why-us,
    .page-about-detail-pages,
    .page-about-cta {
        padding: 60px 0;
    }
    .page-about-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about-cta-title {
        font-size: 2.2em;
    }
    .page-about-cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-about-hero-title {
        font-size: 2em;
    }
    .page-about-hero-description {
        font-size: 0.9em;
    }
    .page-about-section-title {
        font-size: 1.5em;
    }
    .page-about-value-item h3 {
        font-size: 1.3em;
    }
    .page-about-detail-card h3 {
        font-size: 1.2em;
    }
    .page-about-cta-title {
        font-size: 1.8em;
    }
}

/* Icon placeholders - actual icons would be SVG or font icons */
.page-about .icon-quality::before { content: '⭐'; margin-right: 5px; }
.page-about .icon-service::before { content: '🤝'; margin-right: 5px; }
.page-about .icon-innovation::before { content: '💡'; margin-right: 5px; }
.page-about .icon-integrity::before { content: '🛡️'; margin-right: 5px; }
.page-about .icon-responsibility::before { content: '🌱'; margin-right: 5px; }