/* ==============================================
   HERO SECTION - COMPACT VERSION (NO SCROLL)
   ============================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 0px !important;
    padding-left: 0;
    padding-right: 0;
    padding-top: 140px !important;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    border-bottom: none !important;
}


.hero-section + section,
.hero-section + div {
    margin-top: 0 !important;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 101%;
    min-height: 101%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    display: block;
    vertical-align: bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 46, 42, 0.4), rgba(14, 46, 42, 0.8));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    height: 100%;
}

.hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 40px;
}

/* --- IMAGE COLUMN (LEFT) --- */
.hero-col-img {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-person-img {
    position: relative;
    bottom: 0;
    width: auto;
    max-width: 360px;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: block;
}

.hero-image-overlay-card {
    position: absolute;
    top: 28%;
    z-index: 5;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    left: 0;
    transform: none;
    text-align: left;
    white-space: normal;
    max-width: 250px;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 12px;
}

.hi-title {
    color: #ffffff;
    font-family: 'Istok Web', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-bacp-logo {
    position: absolute;
    bottom: 15%;
    right: 0;
    width: 130px;
    height: auto;
    z-index: 4;
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-col-text {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: center;
    margin-top: 140px !important;
    padding-bottom: 50px;
    width: 100%;
}

.hero-text-card {
    width: 100%;
    max-width: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: white;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Istok Web', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.hero-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 400;
}

.hero-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #eab465;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

.hero-contact-info {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    color: white;
}

.hero-signature {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 2.2rem;
    color: #eab465;
    margin: 0 0 -8px -5px;
    line-height: 1;
    transform: rotate(-5deg);
    display: block;
}

.hci-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hci-link {
    display: block;
    color: #eab465;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.hci-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* MOBILE RESPONSIVE (Phone) */
@media (max-width: 768px) {

    .hero-section {
        padding: 80px 0 0 0;
        min-height: auto;
        height: auto;
        display: block;
        margin-bottom: -50px;
        position: relative;
        z-index: 2;
    }

    .hero-container {
        padding: 0 15px;
        display: block;
        height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        height: auto;
    }

    .hero-col-img {
        order: 1;
        width: 100%;
        min-height: 450px;
        margin-bottom: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .hero-person-img {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        max-width: 75%;
        margin: 0 auto;
        display: block;
        z-index: 2;
    }

    .hero-image-overlay-card {
        top: -40px !important;
        left: 0 !important;
        transform: none !important;
        width: auto;
        max-width: 180px;
        padding: 8px 15px;
        text-align: left;
    }

    .hi-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .hero-bacp-logo {
        width: 80px;
        bottom: 60px;
        right: 5%;
        z-index: 20;
    }

    .hero-col-text {
        order: 2;
        padding-bottom: 30px;
        align-items: center;
        background: transparent;
        width: 100%;
        padding-top: 0;
    }

    .hero-text-card {
        text-align: center;
        width: 100%;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);

        margin-top: -30px;
        border-radius: 20px 20px 0 0;
        z-index: 10;
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-contact-info {
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .hero-signature-img {
        margin: 0 auto 10px auto;
        width: 140px;
    }

    .hero-footer {
        text-align: center;
    }
}