/* ---- About page specific styles ---- */
.about-layout {
    padding: 5rem 0;
    background: var(--bg-section);
}

.navbar-brand img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 168, 75, 0.4));
    transition: filter 0.3s;
}

/* Vertical side banner */
.about-side-banner {
    position: relative;
    width: 100%;
    min-height: 600px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-side-banner img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-side-banner .side-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 10, 4, 0.85) 0%,
        rgba(20, 10, 4, 0.2) 55%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.about-side-banner .side-banner-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

.about-side-banner .side-banner-label em {
    color: var(--gold-light);
    font-style: italic;
}

/* Right-side feature image */
.about-feature-img-wrap {
    position: relative;
    border: 1px solid var(--border);
    overflow: visible;
    background: #2a1b12;
    padding-bottom: 46px;
}

.about-feature-frame {
    position: relative;
    overflow: hidden;
}

.about-feature-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.about-feature-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.about-feature-slide.active {
    opacity: 1;
}

.about-feature-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-feature-slide.is-ceo img {
    object-position: center 15%;
}

.about-feature-slide.is-logo img {
    object-fit: contain;
    background: linear-gradient(
        180deg,
        rgba(20, 12, 7, 0.98),
        rgba(20, 12, 7, 0.92)
    );
    padding: 2rem;
}

.about-feature-slider::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(
        to top,
        rgba(20, 10, 4, 0.75),
        rgba(20, 10, 4, 0)
    );
    pointer-events: none;
}

.about-feature-indicators {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 2;
}

.about-feature-indicators button {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        width 0.3s ease;
}

.about-feature-indicators button.active {
    background: var(--gold);
    width: 1.5rem;
}

.about-feature-img-wrap .img-badge {
    position: absolute;
    left: 2rem;
    bottom: -0.9rem;
    transform: none;
    z-index: 5;
    background: var(--gold);
    color: #1a100a;
    padding: 0.95rem 1.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    white-space: nowrap;
}

/* Stats grid */
.about-stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem 1.2rem;
    text-align: center;
}

.about-stat-box .num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.about-stat-box .lbl {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
}

/* CEO profile + expert team */
.about-ceo-panel {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0)
    );
    border: 1px solid var(--border);
    padding: 2rem 1.8rem;
    margin-bottom: 2rem;
}

.about-ceo-top {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
}

.about-ceo-photo {
    flex: 0 0 300px;
    align-self: stretch;
    border: 1px solid var(--border);
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.about-ceo-photo img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-ceo-copywrap {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-ceo-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.55rem;
}

.about-ceo-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    color: var(--gold-light);
    line-height: 1.05;
    margin-bottom: 0.3rem;
}

.about-ceo-title {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-ceo-copy {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-ceo-quote {
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    color: var(--text);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-ceo-fact {
    margin-top: 1rem;
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.team-section {
    background: var(--bg-section);
    padding: 5rem 0;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.expert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.expert-photo {
    position: relative;
    overflow: hidden;
}

.expert-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 10%;
    display: block;
    transition: transform 0.35s ease;
}

.expert-photo {
    cursor: pointer;
}

.expert-card:hover .expert-photo img {
    transform: scale(1.05);
}

.expert-body {
    padding: 1.3rem 1.4rem 1.45rem;
}

.expert-name {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.2rem;
}

.expert-role {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.expert-bio {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0.75rem 0 0;
}

.expert-experience {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.55rem;
    color: var(--gold-light);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.expert-modal .modal-content {
    background: rgba(10, 7, 4, 0.97);
    border: 1px solid var(--border);
}

.expert-modal .modal-dialog {
    max-width: 980px;
}

.expert-modal-img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    background: #0c0805;
}

.expert-modal-name {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold-light);
    font-size: 2.1rem;
    line-height: 1.1;
}

.expert-modal-role {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

.expert-modal-desc {
    color: var(--muted);
    line-height: 1.9;
    margin-top: 1rem;
}
.about-page-desc p {
    color: var(--muted) !important;
    font-size: 0.93rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}
.about-page-desc p:last-child {
    margin-bottom: 1.3rem;
}

@media (max-width: 767.98px) {
    .about-ceo-top {
        flex-direction: column;
    }

    .about-ceo-photo {
        flex-basis: auto;
        width: 100%;
    }

    .about-ceo-photo img {
        height: 400px;
        min-height: 400px;
    }

    .about-feature-slider {
        height: 300px;
    }

    .about-feature-img-wrap {
        padding-bottom: 40px;
    }
}
