.about-page {
    padding: 80px 20px;
    animation: fadeInUp 1.2s ease forwards;
}

.about-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.about-text {
    flex: 1 1 500px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-black);
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
}

.about-text p {
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}


/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

}

.why-choose-us-section {
    padding: 80px 20px;
    background-color: var(--color-accent);
    animation: fadeInUp 1.2s ease forwards;
}

.why-choose-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--color-black);
    text-transform: uppercase;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.reason-card {
    background-color: var(--color-white);
    border: 1px solid #ddd;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.reason-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-black);
}

.reason-card p {
    font-size: 15px;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 320px) {
    .why-choose-us-section {
        padding: 60px 10px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {

    .section-title {
        font-size: 24px;
    }

    .reason-card img {
        width: 50px;
        height: 50px;
    }

    .reason-card h3 {
        font-size: 18px;
    }

    .reason-card p {
        font-size: 14px;
    }
}

.brand-story-section {
    padding: 80px 20px;
    animation: fadeInUp 1s ease forwards;
}

.brand-story-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease;
}

.story-timeline {
    list-style: none;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--color-black);
}

.story-timeline li {
    position: relative;
    padding: 20px 0 20px 30px;
    animation: fadeInUp 1s ease;
}

.story-timeline li::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 28px;
    width: 14px;
    height: 14px;
    background-color: var(--color-black);
    border-radius: 50%;
    border: 2px solid var(--color-white);
}

.year {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 6px;
}

.story-point {
    font-size: 15px;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .section-title {
        font-size: 24px;
    }

    .year {
        font-size: 16px;
    }

    .story-point {
        font-size: 14px;
    }

    .story-timeline li {
        padding-left: 25px;
    }

    .story-timeline li::before {
        left: -10px;
    }
}

.mission-vision-section {
    padding: 80px 20px;
    background-color: var(--color-accent);
    animation: fadeInUp 1s ease forwards;
}

.mission-vision-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 50px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: var(--color-accent);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    text-align: center;
    animation: fadeInUp 1.2s ease;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-black);
}

.mv-card p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-secondary);
}

.quote-text::before {
    content: "“";
    font-size: 30px;
}

.quote-text::after {
    content: "”";
    font-size: 30px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 320px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .mv-card h3 {
        font-size: 20px;
    }

}


.who-for-section {
    padding: 80px 20px;
    animation: fadeInUp 1s ease forwards;
}

.who-for-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 50px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
}

.who-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.who-card {
    background-color: var(--color-white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1.2s ease;
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-10px);
}

.who-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-black);
}

.who-card p {
    font-size: 15px;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .who-card h3 {
        font-size: 18px;
    }

    .who-card p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .who-card {
        padding: 24px 18px;
    }

    .who-card p {
        font-size: 13.5px;
    }
}

.how-made-section {
    padding: 80px 20px;
    background-color: var(--color-accent);
    animation: fadeInUp 1s ease forwards;
}

.how-made-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--color-black);
    text-transform: uppercase;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 1s ease;
}

.step-number {
    min-width: 42px;
    height: 42px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-black);
}

.step-content p {
    font-size: 15px;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 24px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }
}
