:root {
    --yellow: #FFD700;
    --black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--black); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.about-hero { text-align: center; padding: 80px 0; background-color: var(--white); }
.about-hero .container { max-width: 860px; }
.about-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 800; }
.about-hero p { max-width: 700px; margin: 0 auto 40px; color: #555; font-size: 1.1rem; }
.hero-image-circle { width: 150px; height: 150px; margin: 0 auto; border-radius: 50%; overflow: hidden; border: 5px solid var(--yellow); }
.hero-image-circle img { width: 100%; height: 100%; object-fit: cover; }

/* Story */
.our-story { padding: 80px 0; background: var(--light-gray); }
.story-grid { display: flex; flex-wrap: wrap; align-items: center; }
.story-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.story-text p { margin-bottom: 15px; color: #444; font-size: 1.02rem; }
.story-image img { width: 100%; min-height: 320px; max-height: 430px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Values */
.mission-values { padding: 100px 0; text-align: center; }
.section-title { margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.values-grid { display: flex; flex-wrap: wrap; }
.value-card { padding: 40px; border-radius: 15px; background: white; border: 1px solid #eee; transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.value-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon-circle { background: var(--yellow); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }

/* Reviews */
.reviews-section { padding: 80px 0; background: var(--white); }
.review-summary-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff8cf 0%, #ffffff 100%);
    border: 1px solid #f0e2a6;
    margin-bottom: 30px;
}
.review-summary-score {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-size: 2.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-summary-meta p { margin: 10px 0 0; color: #555; }
.review-summary-stars { display: flex; gap: 6px; color: #f59e0b; font-size: 1.15rem; }
.review-grid { display: flex; flex-wrap: wrap; align-items: stretch; }
.review-card {
    padding: 26px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.review-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.review-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.review-card h4 { margin: 12px 0 10px; font-size: 1rem; }
.review-card p { color: #555; margin: 0; }
.review-branch { color: #7c6f36; font-weight: 600; font-size: 0.9rem; }
.review-date { color: #888; font-size: 0.85rem; white-space: nowrap; }
.review-stars { display: flex; gap: 4px; color: #f59e0b; font-size: 0.95rem; }
.review-empty-state {
    width: 100%;
    padding: 36px;
    border-radius: 18px;
    border: 1px dashed #d9d9d9;
    text-align: center;
    color: #666;
}
.review-empty-state i {
    display: block;
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 12px;
}

/* CTA */
.cta-banner { background: var(--yellow); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-buttons { margin-top: 30px; display: flex; justify-content: center; gap: 20px; }
.cta-banner .btn-dark { background: var(--black); color: white; padding: 15px 40px; border-radius: 8px; text-decoration: none; font-weight: 700; }
.cta-banner .btn-white { background: white; color: var(--black); padding: 15px 40px; border-radius: 8px; text-decoration: none; font-weight: 700; }

/* Footer - keep consistent with shared layout */
footer { background: var(--black); color: white; padding: 14px 0 10px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: start;
    justify-content: center;
}
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; display: block; }
.footer-about p { color: #999; font-size: 0.9rem; margin-bottom: 12px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 10px; }
.footer-social a { width: 40px; height: 40px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; font-size: 0.85rem; }
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.contact-info li { display: flex; align-items: flex-start; gap: 10px; color: #999; font-size: 0.9rem; margin-bottom: 10px; }
.contact-info i { color: var(--yellow); }


@media (max-width: 991.98px) {
    .about-hero {
        padding: 64px 0;
    }

    .our-story,
    .reviews-section {
        padding: 64px 0;
    }

    .mission-values {
        padding: 72px 0;
    }

    .story-text {
        text-align: center;
    }

    .story-image {
        max-width: 620px;
        margin: 0 auto;
    }

    .story-image img {
        min-height: 280px;
    }

    .review-summary-card {
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 48px 0 56px;
    }

    .about-hero h1,
    .story-text h2,
    .section-title h2,
    .cta-banner h2 {
        font-size: 1.9rem;
    }

    .about-hero p,
    .section-title p {
        font-size: 0.98rem;
    }

    .hero-image-circle {
        width: 128px;
        height: 128px;
    }

    .story-image img {
        min-height: 220px;
        border-radius: 14px;
    }

    .value-card,
    .review-card {
        padding: 24px;
    }

    .review-summary-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .review-summary-stars {
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .our-story .story-grid > .col-lg-6 {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }

    .mission-values .values-grid > .col-lg-4 {
        flex: 0 0 33.333333%;
        width: 33.333333%;
        max-width: 33.333333%;
    }

    .reviews-section .review-grid > .col-xl-4 {
        flex: 0 0 33.333333%;
        width: 33.333333%;
        max-width: 33.333333%;
    }
}
@media (min-width: 768px) {
    .our-story .story-grid > .col-md-6 {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }

    .our-story .story-text {
        text-align: left;
    }

    .our-story .story-image {
        max-width: none;
        margin: 0;
    }

    .mission-values .values-grid > .col-md-4 {
        flex: 0 0 33.333333%;
        width: 33.333333%;
        max-width: 33.333333%;
    }
}
/* About page deterministic layout; avoids shared fallback Bootstrap overrides. */
.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    justify-content: center;
}

.value-cell {
    min-width: 0;
}

@media (max-width: 991.98px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-text {
        order: 2;
        text-align: center;
    }

    .story-image {
        order: 1;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* About mobile overflow fix */
.about-hero,
.our-story,
.mission-values,
.reviews-section,
.cta-banner {
    max-width: 100%;
    overflow-x: clip;
}

.about-hero .container,
.our-story .container,
.mission-values .container,
.reviews-section .container,
.cta-banner .container {
    width: 100%;
    max-width: 1200px;
}

.story-grid,
.values-grid,
.review-grid,
.review-summary-card,
.review-card,
.value-card {
    max-width: 100%;
}

.story-image,
.story-text,
.value-cell {
    min-width: 0;
}

.story-image img {
    display: block;
}

.about-hero p,
.story-text p,
.section-title p,
.value-card p,
.review-card p {
    overflow-wrap: anywhere;
}

.review-card-head {
    flex-wrap: wrap;
}

@media (max-width: 575.98px) {
    .about-hero .container,
    .our-story .container,
    .mission-values .container,
    .reviews-section .container,
    .cta-banner .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .story-grid,
    .values-grid {
        width: 100%;
    }

    .story-image {
        width: 100%;
        max-width: 100%;
    }

    .story-image img {
        width: 100%;
        max-width: 100%;
    }

    .review-summary-card {
        width: 100%;
        max-width: 100%;
    }
}
/* Review cards align with the summary width on desktop. */
.reviews-section .review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.reviews-section .review-cell {
    width: 100%;
    max-width: 100%;
}

.reviews-section .review-card {
    width: 100%;
}
/* Tighten space before branch reviews. */
.mission-values {
    padding-bottom: 48px;
}

.reviews-section {
    padding-top: 48px;
}

@media (max-width: 991.98px) {
    .mission-values {
        padding-bottom: 40px;
    }

    .reviews-section {
        padding-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .mission-values {
        padding-bottom: 32px;
    }

    .reviews-section {
        padding-top: 32px;
    }
}

/* Final About page UI refresh */
:root {
    --about-navy: #061126;
    --about-navy-2: #0b1730;
    --about-gold: #fbbf24;
    --about-smoke: #334155;
    --about-muted: #64748b;
    --about-line: rgba(15, 23, 42, 0.1);
}

body {
    background: #f8fafc;
}

.about-hero {
    padding: 72px 0;
    text-align: left;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 8%, rgba(251, 191, 36, 0.18), transparent 30%),
        linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-2) 100%);
    border-bottom: 1px solid rgba(251, 191, 36, 0.24);
}

.about-hero .container {
    max-width: 1320px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 56px;
    align-items: center;
}

.about-hero h1 {
    max-width: 680px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    font-weight: 900;
    line-height: 1.02;
}

.about-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
    line-height: 1.7;
}

.hero-image-circle {
    grid-row: 1 / span 2;
    grid-column: 2;
    width: 100%;
    height: clamp(280px, 32vw, 410px);
    margin: 0;
    border: 1px solid rgba(251, 191, 36, 0.34);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.our-story {
    padding: 86px 0;
    background: #ffffff;
}

.story-grid {
    max-width: 1320px;
    margin: 0 auto;
    gap: 54px;
}

.story-text h2,
.section-title h2,
.cta-banner h2 {
    color: var(--about-navy);
    font-weight: 900;
    letter-spacing: 0;
}

.story-text p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
}

.mission-values {
    padding: 86px 0 64px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-title {
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-title p {
    color: var(--about-muted);
    line-height: 1.65;
}

.value-card,
.review-card,
.review-summary-card {
    border-radius: 8px;
    border: 1px solid var(--about-line);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.value-card {
    height: 100%;
    padding: 30px;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.58);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: var(--about-gold);
    color: var(--about-navy);
}

.value-card h3 {
    color: var(--about-navy);
    font-weight: 900;
}

.value-card p,
.review-card p {
    color: var(--about-muted);
}

.reviews-section {
    padding: 64px 0 86px;
    background: #ffffff;
}

.review-summary-card {
    background:
        linear-gradient(135deg, var(--about-navy) 0%, var(--about-smoke) 100%);
    color: #ffffff;
}

.review-summary-score {
    background: var(--about-gold);
    color: var(--about-navy);
}

.review-summary-meta p {
    color: rgba(255, 255, 255, 0.78);
}

.review-card h3,
.review-card h4 {
    color: var(--about-navy);
    font-weight: 900;
}

.review-branch {
    color: #9a6b00;
}

.cta-banner {
    padding: 44px 20px 52px;
    background: #f8fafc;
    color: var(--about-navy);
}

.cta-banner .container {
    max-width: 1396px;
    padding: 52px 28px 48px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-2) 74%, #18202c 100%);
    color: #ffffff;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.14);
}

.cta-banner h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.08;
}

.cta-banner p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
}

.cta-banner .btn-dark,
.cta-banner .btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 64px;
    border-radius: 8px;
    padding: 0 34px;
    gap: 14px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
}

.cta-banner .btn-dark {
    background: var(--about-gold);
    color: var(--about-navy);
    border: 1px solid var(--about-gold);
}

.cta-banner .btn-white {
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: #ffffff;
    color: var(--about-navy);
}

@media (max-width: 991.98px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .about-hero h1,
    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-circle {
        grid-column: auto;
        grid-row: auto;
        max-width: 620px;
        margin: 0 auto;
    }

    .cta-banner .container {
        border-radius: 24px;
        padding: 44px 24px;
    }
}

@media (max-width: 575.98px) {
    .about-hero,
    .our-story,
    .mission-values,
    .reviews-section,
    .cta-banner {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .hero-image-circle {
        height: 240px;
    }

    .value-card,
    .review-card {
        padding: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-banner .container {
        border-radius: 18px;
        padding: 36px 18px;
    }

    .cta-banner .btn-dark,
    .cta-banner .btn-white {
        width: 100%;
        min-height: 54px;
    }
}
