/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #9D3A04;
}

/* Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(157, 58, 4, 1) 0%, rgba(157, 58, 4, 1) 28%, rgba(157, 58, 4, 0) 72%);
    z-index: 1;
}

/* Bottom gradient for achievement strap area */
.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(157, 58, 4, 0) 0%, rgba(157, 58, 4, 0.9) 44%);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.hero-text-part {
    max-width: 942px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

/* Tags */
.hero-tags {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF6A00;
}

.hero-tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF6A00;
    flex-shrink: 0;
}

/* Heading */
.hero-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #FFFFFF;
    margin: 0;
}

.hero-subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Achievement Strap */
.hero-achievement-strap {
    position: relative;
    z-index: 2;
    justify-content: center;
    margin-top: auto;
    padding-top: 40px;
    padding-bottom: 50px;
}

.hero-achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-achievement-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.hero-achievement-icon img {
    width: 64px;
    height: 64px;
}

.hero-achievement-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #FFFFFF;
}

/* ===== HERO RESPONSIVE ===== */

@media (max-width: 1400px) {

    .hero-achievement-label {
        font-size: 1.25rem;
    }
}

@media (max-width: 1199.98px) {

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 20px;
    }

    .hero-tag {
        font-size: 14px;
    }

    .hero-achievement-label {
        font-size: 18px;
    }

    .hero-achievement-icon,
    .hero-achievement-icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 991.98px) {
    
    .hero-bg {
        width: 100%;
        height: 100%;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-subheading {
        font-size: 18px;
    }

    .hero-tags {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-tag {
        font-size: 12px;
    }

    .hero-achievement-label {
        font-size: 16px;
    }

    .hero-achievement-icon,
    .hero-achievement-icon img {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 767.98px) {
    .hero-content{
        padding-top: 40px;
    }
    .hero-heading {
        font-size: 28px;
    }

    .hero-subheading {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        justify-content: center;
        font-size: 16px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 24px;
    }

    .hero-tags {
        gap: 6px;
    }

    .hero-tag {
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .hero-tag-dot {
        width: 6px;
        height: 6px;
    }
}
