/* style/about.css */

/* General Section Styling */
.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.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 p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 1em;
}

.page-about strong {
    color: #FFD700;
}

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    font-size: 1.05em;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #1A2C50;
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #E0B500;
    border-color: #E0B500;
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2C50;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #1A2C50 0%, #0F1D36 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-about__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom right, rgba(26, 44, 80, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.page-about__hero-section > .page-about__container {
    position: relative;
    z-index: 1;
}

.page-about__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #F0F0F0;
}

.page-about__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    object-fit: cover;
}

/* Story Section */
.page-about__story-section {
    background-color: #0F1D36;
    padding: 80px 0;
    color: #E0E0E0;
}

.page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-about__text-content {
    flex: 1;
    min-width: 300px;
}

.page-about__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-about__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Values Section */
.page-about__values-section {
    background-color: #1A2C50;
    padding: 80px 0;
    color: #E0E0E0;
    text-align: center;
}

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

.page-about__value-item {
    background-color: #0F1D36;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
    background-color: #2A406B;
}

.page-about__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Why Choose Section */
.page-about__why-choose-section {
    background-color: #0F1D36;
    padding: 80px 0;
    color: #E0E0E0;
}

.page-about__why-choose-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.page-about__why-choose-text {
    flex: 1;
    min-width: 300px;
}

.page-about__why-choose-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.page-about__why-choose-text li {
    background-color: #1A2C50;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__why-choose-text li strong {
    color: #FFD700;
}

.page-about__why-choose-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Call to Action Section */
.page-about__cta-section {
    background: linear-gradient(90deg, #1A2C50 0%, #3a5c96 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-about__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:cta_background]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-about__cta-section > .page-about__container {
    position: relative;
    z-index: 1;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__sub-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__content-grid, .page-about__why-choose-content {
        flex-direction: column;
    }
    .page-about__text-content, .page-about__image-wrapper,
    .page-about__why-choose-text, .page-about__why-choose-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-about__hero-image, .page-about__image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__sub-title {
        font-size: 1.3em;
    }
    .page-about p, .page-about li {
        font-size: 1em;
    }
    .page-about__value-item {
        padding: 25px 15px;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 1.1em;
    }
    .page-about__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-about__hero-section, .page-about__story-section,
    .page-about__values-section, .page-about__why-choose-section,
    .page-about__cta-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .page-about__container {
        padding: 0 15px;
    }
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.5em;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__hero-image, .page-about__image {
        max-width: 100%;
    }
}