/* ============================================
   ZIEL - About Us Page Styles
   Premium Dark Theme Design
   ============================================ */

/* ---------- Page Banner (Hero) ---------- */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(rgba(15, 29, 53, 0.8), rgba(15, 29, 53, 0.8)), 
                url('../images/img-register-now-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Sharper line as in reference */
}

.about-hero .breadcrumb {
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.about-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
}

.about-hero .breadcrumb-item.active {
    color: var(--ziel-yellow);
    font-weight: var(--fw-medium);
}

.about-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.5px;
}

.about-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

/* ---------- About Content Section ---------- */
.about-content-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-text-content {
    padding-left: 30px;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ---------- Vision & Mission ---------- */
.vision-mission-section {
    padding-bottom: 100px;
    background-color: var(--white);
}

.vm-card {
    padding: 30px 0;
}

.vm-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vm-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vm-card:hover .vm-icon {
    transform: rotate(15deg);
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.vm-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---------- Career Support ---------- */
.career-support-section {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.career-support-header {
    margin-bottom: 60px;
}

.career-support-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.career-support-header h2 span {
    color: var(--accent);
}

.career-support-header p {
    color: var(--gray-500);
    font-size: var(--fs-md);
}

.support-card {
    text-align: left;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 29, 53, 0.08);
    border-color: var(--accent-light);
}

.support-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.support-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.support-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Team Section ---------- */
.about-team {
    padding: 100px 0;
    background-color: var(--white);
}

.team-card {
    border: none;
    background: transparent;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.team-avatar-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.team-avatar-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: var(--ziel-yellow);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar-wrapper::after {
    transform: translate(-10px, -10px);
}

.team-avatar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.team-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-socials a {
    color: var(--gray-400);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.team-socials a:hover {
    color: var(--accent);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .about-hero h1 { font-size: 2.8rem; }
    .about-text-content { padding-left: 0; margin-top: 40px; }
    .team-avatar-wrapper { width: 150px; height: 150px; }
}

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

    .about-hero h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .about-hero p,
    .about-text-content p,
    .vm-card p,
    .support-card p {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .about-content-section,
    .career-support-section {
        padding: 56px 0;
    }

    .vision-mission-section {
        padding-bottom: 56px;
    }

    .career-content-zeil {
        padding-bottom: 20px !important;
    }

    .career-content-zeil h2,
    .career-support-header h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .support-card {
        padding: 24px;
        border-radius: 14px;
    }

    .support-card h4,
    .vm-card h3 {
        font-size: 20px;
    }
}

/* ---------- About Page Premium Sync ---------- */
:root {
    --about-title: #111827;
    --about-text: #374151;
    --about-muted: #475569;
    --about-blue: #0b5798;
    --about-navy: #001a33;
    --about-line: #dbe7f2;
    --about-soft: #f2f8fe;
    --about-card-shadow: 0 16px 38px rgba(5, 31, 58, 0.08);
}

.about-hero {
    min-height: 420px;
    padding: 150px 0 72px;
    background:
        linear-gradient(135deg, rgba(0, 26, 51, 0.82), rgba(8, 34, 63, 0.78)),
        url('../images/img-register-now-bg.png');
    background-size: cover;
    background-position: center;
    border-top: 0;
}

.about-hero .breadcrumb {
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.about-hero p {
    max-width: 680px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
}

.about-content-section,
.vision-mission-section,
.career-support-section {
    padding-top: 76px;
    padding-bottom: 76px;
}

.about-content-section,
.vision-mission-section {
    background: #ffffff;
}

.career-support-section {
    background:
        radial-gradient(circle at 10% 8%, rgba(13, 103, 174, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fbfe 0%, #f1f8ff 100%);
}

.about-img-wrapper,
.vm-card,
.support-card {
    border-radius: 8px;
}

.about-img-wrapper {
    border: 1px solid rgba(13, 103, 174, 0.12);
    box-shadow: var(--about-card-shadow);
}

.about-img-wrapper:hover img {
    transform: scale(1.025);
}

.about-text-content {
    padding-left: 18px;
}

.about-text-content p,
.vm-card p,
.support-card p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.68;
    color: var(--about-text);
}

.about-text-content p:last-child,
.vm-card p:last-child,
.support-card p:last-child {
    margin-bottom: 0;
}

.vision-mission-section {
    padding-top: 0;
}

.vm-card {
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--about-line);
    box-shadow: 0 12px 30px rgba(5, 31, 58, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vm-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 103, 174, 0.28);
    box-shadow: var(--about-card-shadow);
}

.vm-icon,
.support-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
}

.vm-card:hover .vm-icon,
.support-card:hover .support-icon {
    transform: translateY(-2px);
}

.vm-card h3,
.support-card h4,
.career-content-zeil h2 {
    font-family: var(--font-heading);
    color: var(--about-title);
    font-weight: 800;
    letter-spacing: 0;
}

.vm-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.career-content-zeil {
    max-width: 720px;
    padding-bottom: 28px !important;
}

.career-content-zeil h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.career-content-zeil h2 span {
    color: var(--about-blue);
}

.career-content-zeil .subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--about-text);
}

.support-card {
    padding: 30px;
    border-color: var(--about-line);
    box-shadow: 0 12px 30px rgba(5, 31, 58, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 103, 174, 0.28);
    box-shadow: var(--about-card-shadow);
}

.support-card h4 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .about-hero {
        min-height: auto;
        padding: 126px 0 58px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-content-section,
    .vision-mission-section,
    .career-support-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .about-text-content {
        padding-left: 0;
        margin-top: 26px;
    }

    .career-content-zeil h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 112px 0 48px;
        text-align: left;
    }

    .about-hero .breadcrumb {
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .about-hero h1 {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .about-hero p {
        font-size: 15px;
        line-height: 1.62;
    }

    .about-content-section,
    .vision-mission-section,
    .career-support-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .vision-mission-section {
        padding-top: 0;
    }

    .about-text-content {
        margin-top: 22px;
    }

    .about-text-content p,
    .vm-card p,
    .support-card p,
    .career-content-zeil .subtitle {
        font-size: 15px;
        line-height: 1.62;
        color: var(--about-text);
    }

    .vm-card,
    .support-card {
        padding: 22px;
    }

    .vm-icon,
    .support-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .vm-card h3,
    .support-card h4 {
        font-size: 18px;
    }

    .career-content-zeil {
        padding-bottom: 20px !important;
    }

    .career-content-zeil h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .career-support-section .row {
        --bs-gutter-y: 14px;
    }
}
