/* ==================== FONT FACE ==================== */
@font-face {
    font-family: 'Bodoni MT';
    src: url('BOD_R_0.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bodoni MT';
    src: url('BOD_B_0.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bodoni MT';
    src: url('BOD_CR_0.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-stretch: condensed;
    font-display: swap;
}

@font-face {
    font-family: 'Bodoni MT';
    src: url('BOD_CB_0.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-stretch: condensed;
    font-display: swap;
}

/* ==================== CSS VARIABLES ==================== */
:root {
    --bhl-green: #1B4332;
    --bhl-green-light: #2D5A3D;
    --bhl-gold: #C8A96E;
    --bhl-gold-light: #D4B87A;
    --bhl-white: #FFFFFF;
    --bhl-off-white: #F8F6F1;
    --bhl-dark: #1A1A1A;
    --bhl-gray: #6B6B6B;
    --bhl-font: 'Bodoni MT', 'Bodoni', 'Didot', Georgia, serif;
    --bhl-transition: all 0.3s ease;
}

/* ==================== RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bhl-font);
    color: var(--bhl-dark);
    background: var(--bhl-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--bhl-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==================== COOKIE BANNER ==================== */
.bhl-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--bhl-green);
    padding: 1.5rem 3rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.bhl-cookie-banner.is-visible {
    transform: translateY(0);
}

.bhl-cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bhl-cookie-banner__text {
    flex: 1;
}

.bhl-cookie-banner__title {
    font-family: var(--bhl-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bhl-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bhl-cookie-banner__description {
    font-family: var(--bhl-font);
    font-size: 0.9rem;
    color: var(--bhl-white);
    line-height: 1.5;
    opacity: 0.9;
}

.bhl-cookie-banner__accept {
    font-family: var(--bhl-font);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bhl-green);
    background: var(--bhl-gold);
    border: none;
    padding: 0.875rem 2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--bhl-transition);
    white-space: nowrap;
}

.bhl-cookie-banner__accept:hover {
    background: var(--bhl-gold-light);
}

/* ==================== HEADER ==================== */
.bhl-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bhl-green);
    padding: 1.25rem 3rem;
    transition: var(--bhl-transition);
}

.bhl-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.bhl-header__logo {
    display: flex;
    align-items: center;
}

.bhl-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bhl-logo__line {
    display: block;
    width: 80px;
    height: 1.5px;
    background: var(--bhl-gold);
}

.bhl-logo__text {
    font-family: var(--bhl-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bhl-gold);
    letter-spacing: 8px;
    line-height: 1;
}

.bhl-header__logo:hover .bhl-logo__text {
    color: var(--bhl-gold-light);
}

/* Navigation */
.bhl-header__nav {
    display: flex;
    align-items: center;
}

.bhl-header__menu {
    display: flex;
    gap: 2.5rem;
}

.bhl-header__link {
    font-family: var(--bhl-font);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--bhl-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.bhl-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bhl-gold);
    transition: width 0.3s ease;
}

.bhl-header__link:hover::after,
.bhl-header__link--active::after {
    width: 100%;
}

.bhl-header__link:hover,
.bhl-header__link--active {
    color: var(--bhl-gold);
}

/* Mobile Toggle */
.bhl-header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bhl-header__mobile-toggle span {
    width: 25px;
    height: 1.5px;
    background: var(--bhl-gold);
    transition: var(--bhl-transition);
}

/* ==================== HERO SECTION ==================== */
.bhl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bhl-off-white);
    padding: 120px 3rem 4rem;
    overflow: hidden;
}

.bhl-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Left Column */
.bhl-hero__content {
    max-width: 650px;
}

/* Subtitle */
.bhl-hero__subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bhl-hero__subtitle-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--bhl-gold);
}

.bhl-hero__subtitle span:last-of-type {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bhl-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Main Title */
.bhl-hero__title {
    font-family: var(--bhl-font);
    font-size: 6rem;
    font-weight: 700;
    color: var(--bhl-green);
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* Description */
.bhl-hero__desc {
    font-family: var(--bhl-font);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--bhl-gray);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 3rem;
}

/* Buttons */
.bhl-hero__buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bhl-hero__btn {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--bhl-transition);
    display: inline-block;
}

.bhl-hero__btn--primary {
    background: var(--bhl-green);
    color: var(--bhl-gold);
    border: 1px solid var(--bhl-green);
}

.bhl-hero__btn--primary:hover {
    background: var(--bhl-green-light);
    color: var(--bhl-gold-light);
    transform: translateY(-3px);
}

.bhl-hero__btn--secondary {
    background: transparent;
    color: var(--bhl-green);
    border: 1px solid var(--bhl-green);
}

.bhl-hero__btn--secondary:hover {
    background: var(--bhl-green);
    color: var(--bhl-gold);
    transform: translateY(-3px);
}

/* Right Column: Visual */
.bhl-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* Decorative Circles */
.bhl-hero__circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bhl-hero__circle {
    position: absolute;
    border: 1px solid var(--bhl-gold);
    border-radius: 50%;
    opacity: 0.4;
}

.bhl-hero__circle--large {
    width: 450px;
    height: 450px;
    top: 0;
    left: 0;
}

.bhl-hero__circle--small {
    width: 220px;
    height: 220px;
    top: -40px;
    right: -40px;
    opacity: 0.3;
}

/* Main Image with Border and Shadow */
.bhl-hero__image-wrapper {
    position: relative;
    z-index: 2;
    padding: 8px;
    background: var(--bhl-white);
    border: 2px solid var(--bhl-gold);
    box-shadow: 0 30px 80px rgba(27, 67, 50, 0.25),
                0 15px 40px rgba(200, 169, 110, 0.15);
    transition: var(--bhl-transition);
}

.bhl-hero__image-wrapper:hover {
    box-shadow: 0 40px 100px rgba(27, 67, 50, 0.35),
                0 20px 50px rgba(200, 169, 110, 0.25);
    transform: translateY(-5px);
}

.bhl-hero__image {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Scroll Indicator */
.bhl-hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.bhl-hero__scroll-text {
    font-family: var(--bhl-font);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bhl-gray);
}

.bhl-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--bhl-gold);
    animation: bhlScrollPulse 2s ease-in-out infinite;
}

@keyframes bhlScrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bhl-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bhl-hero__title {
        font-size: 5rem;
    }
    
    .bhl-hero__visual {
        min-height: 500px;
    }
    
    .bhl-hero__circle--large {
        width: 350px;
        height: 350px;
    }
    
    .bhl-hero__circle--small {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .bhl-header {
        padding: 1rem 1rem;
    }
    
    .bhl-logo__text {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }
    
    .bhl-logo__line {
        width: 60px;
    }
    
    .bhl-header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bhl-green);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .bhl-header__nav.is-open {
        transform: translateY(0);
    }
    
    .bhl-header__menu {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bhl-header__mobile-toggle {
        display: flex;
    }
    
    .bhl-hero {
        padding: 100px 1rem 4rem;
    }
    
    .bhl-hero__title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .bhl-hero__desc {
        font-size: 1rem;
    }
    
    .bhl-hero__buttons {
        flex-direction: column;
    }
    
    .bhl-hero__btn {
        text-align: center;
    }
    
    .bhl-hero__visual {
        min-height: 400px;
    }
    
    .bhl-hero__circle--large {
        width: 280px;
        height: 280px;
    }
    
    .bhl-hero__circle--small {
        width: 140px;
        height: 140px;
    }
    
    .bhl-hero__image {
        max-width: 300px;
    }
    
    .bhl-cookie-banner {
        padding: 1.5rem 2rem;
    }
    
    .bhl-cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .bhl-hero__title {
        font-size: 2.5rem;
    }
    
    .bhl-hero__subtitle {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .bhl-hero__subtitle-line {
        width: 40px;
    }
}




/* ==================== ABOUT SECTION ==================== */
.bhl-about {
    position: relative;
    padding: 8rem 3rem;
    background: var(--bhl-off-white);
    overflow: hidden;
}

.bhl-about__container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.bhl-about__left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bhl-about__subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bhl-about__subtitle-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--bhl-gold);
}

.bhl-about__subtitle span:last-of-type {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bhl-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bhl-about__title {
    font-family: var(--bhl-font);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--bhl-green);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bhl-about__title-accent {
    color: var(--bhl-gold);
    font-style: italic;
}

.bhl-about__desc {
    font-family: var(--bhl-font);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bhl-gray);
    line-height: 1.9;
    max-width: 550px;
}

/* Values */
.bhl-about__values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.bhl-about__value {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}

.bhl-about__value:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bhl-about__value i {
    font-size: 1.5rem;
    color: var(--bhl-gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bhl-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.bhl-about__value-content h4 {
    font-family: var(--bhl-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bhl-about__value-content p {
    font-family: var(--bhl-font);
    font-size: 0.95rem;
    color: var(--bhl-gray);
    line-height: 1.6;
}

/* Right Column: Image */
.bhl-about__right {
    position: relative;
}

.bhl-about__image-wrapper {
    position: relative;
    padding: 12px;
    background: var(--bhl-white);
    border: 2px solid var(--bhl-gold);
    box-shadow: 0 30px 80px rgba(27, 67, 50, 0.2),
                0 15px 40px rgba(200, 169, 110, 0.15);
}

.bhl-about__image {
    display: block;
    width: 100%;
    height: auto;
}

/* ==================== SERVICES SECTION ==================== */
.bhl-services {
    position: relative;
    padding: 8rem 3rem;
    background: var(--bhl-white);
    overflow: hidden;
}

.bhl-services__container {
    max-width: 1400px;
    margin: 0 auto;
}

.bhl-services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bhl-services__subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bhl-services__subtitle-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--bhl-gold);
}

.bhl-services__subtitle span:last-of-type {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bhl-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bhl-services__title {
    font-family: var(--bhl-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bhl-green);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bhl-services__title-accent {
    color: var(--bhl-gold);
    font-style: italic;
}

.bhl-services__desc {
    font-family: var(--bhl-font);
    font-size: 1.1rem;
    color: var(--bhl-gray);
    line-height: 1.8;
}

/* Services Grid */
.bhl-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.bhl-services__card {
    position: relative;
    padding: 3rem 2.1rem;
    background: var(--bhl-off-white);
    border: 1px solid rgba(200, 169, 110, 0.2);
    transition: var(--bhl-transition);
    overflow: hidden;
}

.bhl-services__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bhl-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bhl-services__card:hover {
    background: var(--bhl-white);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
    transform: translateY(-10px);
}

.bhl-services__card:hover::before {
    transform: scaleX(1);
}

.bhl-services__card-icon {
    width: 70px;
    height: 70px;
    background: var(--bhl-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--bhl-transition);
}

.bhl-services__card-icon i {
    font-size: 1.75rem;
    color: var(--bhl-gold);
}

.bhl-services__card:hover .bhl-services__card-icon {
    background: var(--bhl-gold);
}

.bhl-services__card:hover .bhl-services__card-icon i {
    color: var(--bhl-green);
}

.bhl-services__card-title {
    font-family: var(--bhl-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bhl-services__card-desc {
    font-family: var(--bhl-font);
    font-size: 1.2rem;
    color: var(--bhl-gray);
    line-height: 1.4;
    margin-bottom: 2.2rem;
}

.bhl-services__card-number {
    font-family: var(--bhl-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bhl-gold);
    opacity: 0.2;
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    letter-spacing: -2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bhl-about__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .bhl-about__title {
        font-size: 3.5rem;
    }
    
    .bhl-services__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bhl-services__title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .bhl-about,
    .bhl-services {
        padding: 5rem 2rem;
    }
    
    .bhl-about__title {
        font-size: 2.5rem;
    }
    
    .bhl-about__value {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bhl-services__title {
        font-size: 2rem;
    }
    
    .bhl-services__card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 500px) {
    .bhl-about__title {
        font-size: 2rem;
    }
    
    .bhl-services__card-number {
        font-size: 3rem;
    }
}



/* Language Switcher */
.bhl-header__lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bhl-header__lang-link {
    font-family: var(--bhl-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bhl-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--bhl-transition);
}

.bhl-header__lang-link:hover,
.bhl-header__lang-link--active {
    color: var(--bhl-gold);
}

.bhl-header__lang-separator {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    color: var(--bhl-gold);
    opacity: 0.5;
}

/* Mobile Menu with Language */
@media (max-width: 768px) {
    .bhl-header__lang {
        position: absolute;
        top: 1rem;
        right: 4rem;
    }
    
    .bhl-header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bhl-green);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .bhl-header__nav.is-open {
        transform: translateY(0);
    }
    
    .bhl-header__menu {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bhl-header__mobile-toggle {
        display: flex;
    }
}




/* ==================== PRODUCTS SECTION ==================== */
.bhl-products {
    position: relative;
    padding: 8rem 3rem;
    background: var(--bhl-green);
    overflow: hidden;
}

.bhl-products__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bhl-products__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.bhl-products__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bhl-products__subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bhl-products__subtitle-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--bhl-gold);
}

.bhl-products__subtitle span:last-of-type {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bhl-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bhl-products__title {
    font-family: var(--bhl-font);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--bhl-white);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bhl-products__title-accent {
    color: var(--bhl-gold);
    font-style: italic;
}

.bhl-products__desc {
    font-family: var(--bhl-font);
    font-size: 1.15rem;
    color: var(--bhl-white);
    line-height: 1.8;
    opacity: 0.9;
}

/* Products Grid */
.bhl-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Product Card */
.bhl-product__card {
    position: relative;
    background: var(--bhl-white);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(200, 169, 110, 0.3);
    transition: var(--bhl-transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bhl-product__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bhl-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bhl-product__card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.bhl-product__card:hover::before {
    transform: scaleX(1);
}

.bhl-product__card--featured {
    background: linear-gradient(135deg, var(--bhl-white) 0%, var(--bhl-off-white) 100%);
    border: 2px solid var(--bhl-gold);
}

/* Card Header */
.bhl-product__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.bhl-product__icon {
    width: 70px;
    height: 70px;
    background: var(--bhl-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bhl-transition);
}

.bhl-product__icon i {
    font-size: 1.75rem;
    color: var(--bhl-gold);
}

.bhl-product__card:hover .bhl-product__icon {
    background: var(--bhl-gold);
    transform: rotate(360deg);
}

.bhl-product__card:hover .bhl-product__icon i {
    color: var(--bhl-green);
}

.bhl-product__number {
    font-family: var(--bhl-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bhl-gold);
    opacity: 0.2;
    line-height: 1;
}

/* Product Title */
.bhl-product__title {
    font-family: var(--bhl-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Product Description */
.bhl-product__desc {
    font-family: var(--bhl-font);
    font-size: 0.95rem;
    color: var(--bhl-gray);
    line-height: 1.7;
}

/* Product List */
.bhl-product__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.bhl-product__list li {
    font-family: var(--bhl-font);
    font-size: 0.9rem;
    color: var(--bhl-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bhl-product__list li i {
    color: var(--bhl-gold);
    font-size: 0.8rem;
}

/* Product Footer */
.bhl-product__footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 169, 110, 0.2);
}

.bhl-product__tag {
    font-family: var(--bhl-font);
    font-size: 0.75rem;
    color: var(--bhl-gray);
    letter-spacing: 1px;
}

/* Bottom CTA */
.bhl-products__cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 110, 0.3);
}

.bhl-products__cta-text {
    font-family: var(--bhl-font);
    font-size: 1.25rem;
    color: var(--bhl-white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.bhl-products__cta-btn {
    font-family: var(--bhl-font);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bhl-green);
    background: var(--bhl-gold);
    padding: 1.25rem 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--bhl-transition);
    border: none;
}

.bhl-products__cta-btn:hover {
    background: var(--bhl-gold-light);
    color: var(--bhl-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.4);
}

.bhl-products__cta-btn i {
    transition: transform 0.3s ease;
}

.bhl-products__cta-btn:hover i {
    transform: translateX(5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bhl-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .bhl-products__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .bhl-products {
        padding: 5rem 2rem;
    }
    
    .bhl-products__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bhl-products__title {
        font-size: 2.5rem;
    }
    
    .bhl-product__card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 500px) {
    .bhl-products__title {
        font-size: 2rem;
    }
    
    .bhl-product__icon {
        width: 60px;
        height: 60px;
    }
    
    .bhl-product__title {
        font-size: 1.25rem;
    }
}





/* ==================== ADVANTAGES SECTION ==================== */
.bhl-advantages {
    position: relative;
    padding: 8rem 3rem;
    background: var(--bhl-off-white);
    overflow: hidden;
}

.bhl-advantages__container {
    max-width: 1400px;
    margin: 0 auto;
}

.bhl-advantages__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bhl-advantages__subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bhl-advantages__subtitle-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--bhl-gold);
}

.bhl-advantages__subtitle span:last-of-type {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bhl-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bhl-advantages__title {
    font-family: var(--bhl-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bhl-green);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bhl-advantages__title-accent {
    color: var(--bhl-gold);
    font-style: italic;
}

.bhl-advantages__desc {
    font-family: var(--bhl-font);
    font-size: 1.15rem;
    color: var(--bhl-gray);
    line-height: 1.8;
}

/* Advantages Grid */
.bhl-advantages__grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.bhl-advantage__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bhl-advantage__item--reverse {
    direction: rtl;
}

.bhl-advantage__item--reverse > * {
    direction: ltr;
}

.bhl-advantage__image-wrapper {
    position: relative;
    padding: 10px;
    background: var(--bhl-white);
    border: 2px solid var(--bhl-gold);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
}

.bhl-advantage__image {
    display: block;
    width: 100%;
    height: auto;
}

.bhl-advantage__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bhl-advantage__icon {
    width: 70px;
    height: 70px;
    background: var(--bhl-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bhl-advantage__icon i {
    font-size: 1.75rem;
    color: var(--bhl-gold);
}

.bhl-advantage__title {
    font-family: var(--bhl-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bhl-advantage__desc {
    font-family: var(--bhl-font);
    font-size: 1rem;
    color: var(--bhl-gray);
    line-height: 1.8;
}

.bhl-advantage__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.bhl-advantage__list li {
    font-family: var(--bhl-font);
    font-size: 0.9rem;
    color: var(--bhl-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bhl-advantage__list li i {
    color: var(--bhl-gold);
    font-size: 0.8rem;
}

/* ==================== CONTACT SECTION ==================== */
.bhl-contact {
    position: relative;
    padding: 8rem 3rem;
    background: var(--bhl-white);
    overflow: hidden;
}

.bhl-contact__container {
    max-width: 1400px;
    margin: 0 auto;
}

.bhl-contact__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bhl-contact__subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bhl-contact__subtitle-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--bhl-gold);
}

.bhl-contact__subtitle span:last-of-type {
    font-family: var(--bhl-font);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bhl-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bhl-contact__title {
    font-family: var(--bhl-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bhl-green);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bhl-contact__title-accent {
    color: var(--bhl-gold);
    font-style: italic;
}

.bhl-contact__desc {
    font-family: var(--bhl-font);
    font-size: 1.15rem;
    color: var(--bhl-gray);
    line-height: 1.8;
}

.bhl-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* Contact Info */
.bhl-contact__info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.bhl-contact__cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bhl-contact__card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bhl-off-white);
    border: 1px solid rgba(200, 169, 110, 0.3);
    transition: var(--bhl-transition);
}

.bhl-contact__card:hover {
    background: var(--bhl-white);
    box-shadow: 0 10px 40px rgba(27, 67, 50, 0.1);
    transform: translateX(10px);
}

.bhl-contact__card-icon {
    width: 60px;
    height: 60px;
    background: var(--bhl-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bhl-contact__card-icon i {
    font-size: 1.5rem;
    color: var(--bhl-gold);
}

.bhl-contact__card-content h4 {
    font-family: var(--bhl-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.bhl-contact__card-content p {
    font-family: var(--bhl-font);
    font-size: 0.95rem;
    color: var(--bhl-gray);
    line-height: 1.6;
}

/* Google Maps */
.bhl-contact__map {
    width: 100%;
    border: 2px solid var(--bhl-gold);
    box-shadow: 0 10px 40px rgba(27, 67, 50, 0.1);
}

.bhl-contact__map iframe {
    display: block;
    width: 100%;
}

/* Contact Form */
.bhl-contact__form-wrapper {
    background: var(--bhl-off-white);
    padding: 3rem;
    border: 2px solid var(--bhl-gold);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
}

.bhl-contact__form-title {
    font-family: var(--bhl-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.bhl-contact__form-subtitle {
    font-family: var(--bhl-font);
    font-size: 1rem;
    color: var(--bhl-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.bhl-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bhl-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bhl-contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bhl-contact__form-group label {
    font-family: var(--bhl-font);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bhl-contact__form-group input,
.bhl-contact__form-group select,
.bhl-contact__form-group textarea {
    font-family: var(--bhl-font);
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    background: var(--bhl-white);
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 8px;
    outline: none;
    transition: var(--bhl-transition);
    color: var(--bhl-dark);
}

.bhl-contact__form-group input:focus,
.bhl-contact__form-group select:focus,
.bhl-contact__form-group textarea:focus {
    border-color: var(--bhl-gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.bhl-contact__form-group input::placeholder,
.bhl-contact__form-group textarea::placeholder {
    color: var(--bhl-gray);
}

.bhl-contact__form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B4332'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.bhl-contact__form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Captcha - Alphanumeric */
.bhl-captcha {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.bhl-captcha__display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bhl-white);
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
}

.bhl-captcha__code {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 4px;
    text-transform: uppercase;
    user-select: none;
    background: linear-gradient(135deg, var(--bhl-gold) 0%, var(--bhl-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.25rem 0.5rem;
    border: 1px dashed rgba(200, 169, 110, 0.5);
    border-radius: 4px;
}

.bhl-captcha__refresh {
    background: none;
    border: none;
    color: var(--bhl-gold);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem;
    transition: var(--bhl-transition);
}

.bhl-captcha__refresh:hover {
    color: var(--bhl-green);
    transform: rotate(180deg);
}

.bhl-captcha__input {
    font-family: var(--bhl-font);
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--bhl-white);
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 8px;
    outline: none;
    width: 180px;
    transition: var(--bhl-transition);
    color: var(--bhl-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bhl-captcha__input:focus {
    border-color: var(--bhl-gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.bhl-captcha__input::placeholder {
    color: var(--bhl-gray);
    text-transform: none;
    letter-spacing: normal;
}

/* Submit Button */
.bhl-contact__form-btn {
    font-family: var(--bhl-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bhl-green);
    background: var(--bhl-gold);
    border: none;
    padding: 1.25rem 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--bhl-transition);
    margin-top: 0.5rem;
}

.bhl-contact__form-btn:hover {
    background: var(--bhl-gold-light);
    color: var(--bhl-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.4);
}

.bhl-contact__form-btn i {
    transition: transform 0.3s ease;
}

.bhl-contact__form-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.bhl-contact__success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bhl-white);
    border: 2px solid var(--bhl-gold);
}

.bhl-contact__success-icon {
    width: 80px;
    height: 80px;
    background: var(--bhl-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.bhl-contact__success-icon i {
    font-size: 3rem;
    color: var(--bhl-gold);
}

.bhl-contact__success-title {
    font-family: var(--bhl-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bhl-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bhl-contact__success-text {
    font-family: var(--bhl-font);
    font-size: 1.05rem;
    color: var(--bhl-gray);
    line-height: 1.8;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bhl-advantage__item,
    .bhl-advantage__item--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bhl-advantage__item--reverse {
        direction: ltr;
    }
    
    .bhl-contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .bhl-advantages,
    .bhl-contact {
        padding: 5rem 2rem;
    }
    
    .bhl-advantages__title,
    .bhl-contact__title {
        font-size: 2.5rem;
    }
    
    .bhl-advantage__item,
    .bhl-advantage__item--reverse {
        grid-template-columns: 1fr;
    }
    
    .bhl-contact__form-row {
        grid-template-columns: 1fr;
    }
    
    .bhl-contact__form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .bhl-captcha {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bhl-captcha__input {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .bhl-advantages__title,
    .bhl-contact__title {
        font-size: 2rem;
    }
    
    .bhl-contact__form-btn {
        width: 100%;
    }
}






/* ==================== FOOTER ==================== */
.bhl-footer {
    background: var(--bhl-green);
    padding: 6rem 3rem 0;
    color: var(--bhl-white);
}

.bhl-footer__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

/* Brand Column */
.bhl-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bhl-footer__logo {
    display: inline-flex;
    align-items: center;
}

.bhl-footer__logo .bhl-logo__line {
    background: var(--bhl-gold);
}

.bhl-footer__logo .bhl-logo__text {
    color: var(--bhl-gold);
}

.bhl-footer__logo:hover .bhl-logo__text {
    color: var(--bhl-gold-light);
}

.bhl-footer__tagline {
    font-family: var(--bhl-font);
    font-size: 1.2rem;
    color: var(--bhl-white);
    line-height: 1.4;
    opacity: 0.85;
}

/* Social Icons */
.bhl-footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.bhl-footer__social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bhl-gold);
    transition: var(--bhl-transition);
}

.bhl-footer__social-link:hover {
    background: var(--bhl-gold);
    color: var(--bhl-green);
    border-color: var(--bhl-gold);
    transform: translateY(-3px);
}

.bhl-footer__social-link i {
    font-size: 1.1rem;
}

/* Footer Columns */
.bhl-footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bhl-footer__column-title {
    font-family: var(--bhl-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bhl-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bhl-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bhl-footer__links li a {
    font-family: var(--bhl-font);
    font-size: 1rem;
    color: var(--bhl-white);
    opacity: 0.8;
    transition: var(--bhl-transition);
    display: inline-block;
}

.bhl-footer__links li a:hover {
    color: var(--bhl-gold);
    opacity: 1;
    padding-left: 8px;
}

/* Contact List */
.bhl-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bhl-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: var(--bhl-font);
    font-size: 0.9rem;
    color: var(--bhl-white);
    opacity: 0.85;
    line-height: 1.7;
}

.bhl-footer__contact-list li i {
    color: var(--bhl-gold);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.bhl-footer__contact-list li a {
    color: var(--bhl-white);
    opacity: 0.85;
    transition: var(--bhl-transition);
}

.bhl-footer__contact-list li a:hover {
    color: var(--bhl-gold);
    opacity: 1;
}

/* Bottom Bar */
.bhl-footer__bottom {
    padding: 2.5rem 0;
}

.bhl-footer__bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.bhl-footer__copyright {
    font-family: var(--bhl-font);
    font-size: 0.95rem;
    color: var(--bhl-white);
    opacity: 0.7;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.bhl-footer__legal {
    display: flex;
    gap: 2rem;
}

.bhl-footer__legal a {
    font-family: var(--bhl-font);
    font-size: 0.85rem;
    color: var(--bhl-white);
    opacity: 0.7;
    transition: var(--bhl-transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bhl-footer__legal a:hover {
    color: var(--bhl-gold);
    opacity: 1;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bhl-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .bhl-footer {
        padding: 4rem 2rem 0;
    }
    
    .bhl-footer__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bhl-footer__bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .bhl-footer__legal {
        justify-content: center;
    }
    .bhl-products__cta-btn {
        padding: 1.25rem 1.5rem;
    }
    .bhl-contact__form-btn {
        padding: 1.25rem 2rem;
    }
}




