.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: -80px;
}

.hero-section.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.hero-overlay {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 150px;
    background: linear-gradient(90deg, 
        rgba(48, 48, 48, 1) 0%, 
        rgba(48, 48, 48, 0.67) 53%, 
        rgba(48, 48, 48, 0.32) 62%, 
        rgba(80, 137, 145, 0) 100%);
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 60px;
    line-height: 72px;
    color: #fff;
    margin: 0 0 30px 0;
}

.hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    color: #fff;
    margin: 0 0 40px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-button-primary {
    background: #D1ED45;
    color: #000;
    border: 2px solid #D1ED45;
}

.hero-button-primary:hover {
    background: #bfd838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 237, 69, 0.3);
}

.hero-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-scroll-mouse::before {
    content: '';
    width: 2px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scrollWheel 4s infinite;
}

@keyframes scrollWheel {
    0%, 15% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        opacity: 0.8;
        transform: translateY(12px);
    }
    30%, 50% {
        opacity: 1;
        transform: translateY(12px);
    }
    65% {
        opacity: 0.8;
        transform: translateY(0);
    }
    75%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.5px;
    animation: scrollTextFade 4s infinite;
}

@keyframes scrollTextFade {
    0%, 28% {
        opacity: 0;
        visibility: hidden;
    }
    30% {
        visibility: visible;
        opacity: 0;
    }
    35%, 48% {
        opacity: 0.9;
    }
    53% {
        opacity: 0;
    }
    55%, 100% {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        margin-top: -70px;
    }
    
    .hero-overlay {
        min-height: 100vh;
        padding-top: 120px;
    }
    
    .hero-container {
        padding: 0 20px 60px 20px;
    }
    
    .hero-heading {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    
    .hero-subheading {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .hero-button {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .hero-scroll {
        bottom: 120px;
    }
    
    .hero-scroll-mouse {
        width: 18px;
        height: 28px;
        border-radius: 10px;
    }
    
    .hero-scroll-mouse::before {
        height: 5px;
        top: 5px;
    }
    
    .hero-scroll-text {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        margin-top: -65px;
    }
    
    .hero-overlay {
        min-height: 100vh;
        padding-top: 100px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        padding: 0 15px 40px 15px;
        text-align: center;
    }
    
    .hero-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero-subheading {
        font-size: 16px;
        line-height: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-scroll {
        bottom: 100px;
    }
    
    .hero-scroll-mouse {
        width: 16px;
        height: 24px;
        border-radius: 8px;
    }
    
    .hero-scroll-mouse::before {
        width: 2px;
        height: 5px;
        top: 5px;
    }
    
    .hero-scroll-text {
        font-size: 7px;
    }
}

