/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 850px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    width: 50%;
    padding-right: 5%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    color: #c4a47c;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title .highlight {
    color: #c4a47c;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: #c4a47c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: #a88a62;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 164, 124, 0.3);
}

.hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-banner {
        min-height: 600px;
    }

    .new-banners-wrapper .hero-banner:first-child {
        padding-top: 150px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-banner {
        min-height: 600px;
        padding: 60px 5%;
        flex-direction: column;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .hero-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-desc {
        margin: 0 auto 30px auto;
    }

    .hero-image {
        width: 100%;
    }
}

/* Specific styling for absolute images */
.hero-image-absolute {
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image-absolute img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    object-position: bottom;
}

.upvc-img {
    bottom: 0;
    right: 5%;
    /* Aligned with standard padding */
    width: 45%;
    max-width: 700px;
    /* Constrain max size relative to text */
}

.indoor-img {
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: 850px;
}

@media (max-width: 1024px) {

    .upvc-img,
    .indoor-img {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .hero-image-absolute {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100% !important;
        max-width: none;
        margin-top: 30px;
        align-items: center;
    }
}