/* style/about.css */
.page-about {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E2E8F0; /* Light text on dark background */
    background-color: #1A202C; /* Main background */
}

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

.page-about__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%); /* Gradient background for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-about__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    font-weight: 700;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.page-about__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Accent color for primary button */
    color: #1A202C; /* Dark text on accent background */
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-about__btn--secondary {
    background-color: #2D3748; /* Slightly lighter dark for secondary */
    color: #FFD700; /* Accent text on dark background */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #3A4A5D;
    transform: translateY(-2px);
}

.page-about__mission-vision {
    padding: 80px 0;
    background-color: #1A202C;
}

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

@media (min-width: 768px) {
    .page-about__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-about__grid--3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-about__card {
    background-color: #2D3748; /* Darker background for cards */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-about__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

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

.page-about__card-text {
    font-size: 1.1em;
    color: #CBD5E0;
}

.page-about__values {
    padding: 80px 0;
    background-color: #1A202C;
    text-align: center;
}

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.page-about__value-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-5px);
}

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

.page-about__value-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__value-description {
    font-size: 1em;
    color: #CBD5E0;
}

.page-about__why-choose {
    padding: 80px 0;
    background-color: #2D3748;
}

.page-about__flex-reverse {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 992px) {
    .page-about__flex-reverse {
        flex-direction: row-reverse;
        justify-content: space-between;
        text-align: left;
    }
    .page-about__why-choose-content {
        flex: 1;
        padding-left: 40px;
    }
    .page-about__why-choose-image {
        flex: 1;
    }
}

.page-about__bullet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-about__bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E2E8F0;
}

.page-about__bullet-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    top: -2px;
}

.page-about__highlight {
    color: #FFD700;
}

.page-about__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-about__cta {
    padding: 80px 0;
    text-align: center;
    background-color: #1A202C;
}

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

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

/* Floating Promotion Button */
.page-about__floating-promo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.page-about__promo-toggle {
    background-color: #FFD700; /* Accent color */
    color: #1A202C; /* Dark text */
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__promo-toggle:hover {
    transform: scale(1.05);
    background-color: #e6c200;
}

.page-about__promo-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background-color: #2D3748;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.page-about__promo-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-about__promo-item {
    display: block;
    padding: 12px 20px;
    color: #E2E8F0;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-about__promo-item:hover {
    background-color: #3A4A5D;
    color: #FFD700;
}

@media (max-width: 600px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description,
    .page-about__cta-description {
        font-size: 1.1em;
    }
    .page-about__section-title,
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__card-icon,
    .page-about__value-icon {
        width: 60px;
        height: 60px;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__floating-promo {
        bottom: 20px;
        right: 20px;
    }
    .page-about__promo-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-about__promo-menu {
        bottom: 65px;
        min-width: 160px;
    }
    .page-about__promo-item {
        font-size: 1em;
        padding: 10px 15px;
    }
}