/* About page (CMS content + view wrapper) */

.about-page {
    --about-red: #B90F16;
    --about-red-dark: #8a0c12;
    --about-black: #050505;
    --about-cream: #f6f2ea;
    --about-panel: #ece7df;
    --about-border: rgba(0, 0, 0, 0.12);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111;
}

body:has(.about-page) .tank-footer {
    margin-top: 0 !important;
}

/* Hero */
.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 340px;
    background: var(--about-black) url('/Assets/Images/about-banner.png') center center / cover no-repeat;
    border-top: 3px solid var(--about-red);
    border-bottom: 3px solid var(--about-red);
    overflow: hidden;
    padding: 88px 24px;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.about-hero-eyebrow {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--about-red);
}

.about-hero-title {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.about-hero-sub {
    margin: 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

/* Main layout */
.about-main {
    background: var(--about-cream);
    padding: 56px 24px 72px;
}

.about-shell {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-section-header {
    margin-bottom: 24px;
}

.about-eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

.about-section-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    color: #111;
    line-height: 1.1;
}

/* Info cards grid */
.about-cards-grid {
    display: grid;
    gap: 20px;
}

.about-cards-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-cards-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
    background: #fff;
    border: 1px solid var(--about-border);
    padding: 28px 24px;
    height: 100%;
}

.about-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--about-panel);
}

.about-card-icon i {
    font-size: 17px;
    color: var(--about-red);
}

.about-card-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111;
}

.about-card-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
}

/* Who we are */
.about-story-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--about-border);
    padding: 32px;
}

.about-story-copy p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.about-story-copy p:last-child {
    margin-bottom: 0;
}

.about-story-copy .about-lead {
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

.about-story-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--about-cream);
    border: 1px solid var(--about-border);
}

.about-story-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Stats */
.about-stats-panel {
    background: #fff;
    border: 1px solid var(--about-border);
    padding: 36px 24px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}

.about-stat-item {
    padding: 8px 12px;
}

.about-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: var(--about-panel);
}

.about-stat-icon i {
    font-size: 22px;
    color: var(--about-red);
}

.about-stat-number {
    margin: 0 0 6px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    color: var(--about-red);
}

.about-stat-label {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

/* CTA */
.about-cta-panel {
    background: var(--about-black);
    border: 1px solid var(--about-black);
    padding: 40px 32px;
    text-align: center;
}

.about-cta-title {
    margin: 0 0 24px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--about-red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.about-cta-btn:hover {
    background: var(--about-red-dark);
    color: #fff;
    text-decoration: none;
}

/* Testimonials */
.about-testimonials {
    background: var(--about-cream);
    padding: 0 24px 72px;
}

.about-testimonials .about-shell {
    gap: 28px;
}

.about-testimonials .owl-carousel {
    background: #fff;
    border: 1px solid var(--about-border);
    padding: 32px 28px;
}

.about-testimonials .owl-carousel .item,
.about-testimonials .owl-carousel > div {
    text-align: center;
}

.about-testimonials .owl-carousel p {
    margin: 0 auto 20px;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.about-testimonials .owl-carousel hr {
    width: 60px;
    margin: 0 auto 16px;
    border: 0;
    border-top: 2px solid var(--about-red);
}

.about-testimonials .owl-carousel .name {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
}

.about-testimonials .owl-carousel .star {
    color: var(--about-red);
    font-size: 14px;
}

.about-testimonials .owl-carousel .star i {
    margin: 0 1px;
}

.about-testimonials .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--about-border) !important;
    border-radius: 0 !important;
    background: var(--about-cream) !important;
    color: #111 !important;
}

.about-testimonials .owl-nav .owl-prev {
    left: -12px;
}

.about-testimonials .owl-nav .owl-next {
    right: -12px;
}

@media (max-width: 991px) {
    .about-cards-grid--3,
    .about-cards-grid--2,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-story-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 260px;
        padding: 56px 16px;
    }

    .about-main,
    .about-testimonials {
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-main {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .about-shell {
        gap: 36px;
    }

    .about-card,
    .about-story-panel,
    .about-stats-panel,
    .about-cta-panel {
        padding: 20px 16px;
    }

    .about-testimonials {
        padding-bottom: 56px;
    }

    .about-testimonials .owl-carousel {
        padding: 24px 16px;
    }

    .about-testimonials .owl-nav .owl-prev {
        left: 4px;
    }

    .about-testimonials .owl-nav .owl-next {
        right: 4px;
    }
}
