/* About page */
body.aayojob-about-page {
    background: #f4f5f7;
}

.aajo-about-hero {
    background: linear-gradient(160deg, #4b2c82 0%, #5a358f 100%);
    padding: 28px 0 64px;
    color: #fff;
}

.aajo-about-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.aajo-about-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.aajo-about-breadcrumb a:hover {
    color: #fff;
}

.aajo-about-breadcrumb li:last-child {
    color: rgba(255, 255, 255, 0.65);
}

.aajo-about-hero__title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.aajo-about-hero__subtitle {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    line-height: 1.6;
}

.aajo-about-section {
    padding: 48px 0;
}

.aajo-about-section--gray {
    background: #f4f5f7;
}

.aajo-about-section--white {
    background: #fff;
}

.aajo-about-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.aajo-about-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4b2c82;
    margin-bottom: 12px;
}

.aajo-about-heading {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.25;
}

.aajo-about-text {
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

.aajo-about-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aajo-about-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(75, 44, 130, 0.04);
}

.aajo-about-stat__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0e6fa;
    color: #4b2c82;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.aajo-about-stat__value {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.aajo-about-stat__label {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.aajo-about-brands {
    padding: 32px 0;
    background: #fff;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}

.aajo-about-brands__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
}

.aajo-about-brands__grid img {
    max-height: 40px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(20%);
    transition: 0.2s;
}

.aajo-about-brands__grid img:hover {
    opacity: 1;
    filter: none;
}

.aajo-about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.aajo-about-gallery__tall {
    min-height: 420px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}

.aajo-about-gallery__stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aajo-about-gallery__short {
    flex: 1;
    min-height: 200px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}

.aajo-about-section__head {
    text-align: center;
    margin-bottom: 32px;
}

.aajo-about-section__head h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a2e;
}

.aajo-about-section__head h2 span {
    color: #4b2c82;
}

.aajo-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aajo-about-feature {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: 0.2s;
}

.aajo-about-feature:hover {
    box-shadow: 0 8px 24px rgba(75, 44, 130, 0.08);
    border-color: #e8dff3;
}

.aajo-about-feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f0e6fa;
    color: #4b2c82;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.aajo-about-feature__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.aajo-about-feature__text {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
}

.aajo-about-contact-cta {
    text-align: center;
    margin-top: 32px;
}

.aajo-about-contact-cta p {
    margin: 0 0 8px;
    color: #6b7280;
    font-size: 15px;
}

.aajo-about-contact-cta a {
    color: #4b2c82;
    font-weight: 600;
    text-decoration: none;
}

.aajo-about-contact-cta a:hover {
    color: #3d2260;
    text-decoration: underline;
}

.aajo-about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.aajo-about-mission__image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 32px rgba(75, 44, 130, 0.1);
}

.aajo-about-testimonials {
    position: relative;
}

.aajo-about-testimonials__nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 20px;
}

.aajo-about-testimonials__nav button {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e8eaed;
    background: #fff;
    color: #4b2c82;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    padding: 0;
}

.aajo-about-testimonials__nav button:hover {
    background: #4b2c82;
    color: #fff;
    border-color: #4b2c82;
}

.aajo-about-testimonials .testimonals-box {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 28px;
    margin: 0 8px;
}

.aajo-about-testimonials .text-gray-600 {
    color: #374151 !important;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.aajo-about-testimonials .userimage img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.aajo-about-cta-wrap {
    padding: 48px 0 56px;
    background: #fff;
}

@media (max-width: 1024px) {
    .aajo-about-intro,
    .aajo-about-mission {
        grid-template-columns: 1fr;
    }

    .aajo-about-features {
        grid-template-columns: 1fr;
    }

    .aajo-about-gallery {
        grid-template-columns: 1fr;
    }

    .aajo-about-gallery__tall,
    .aajo-about-gallery__short {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .aajo-about-section {
        padding: 36px 0;
    }

    .aajo-about-hero {
        padding: 24px 0 48px;
    }

    .aajo-about-stats {
        grid-template-columns: 1fr;
    }

    .aajo-about-brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .aajo-about-testimonials__grid {
        grid-template-columns: 1fr;
    }
}
