/* ===============================
   HERO SECTION
   =============================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    /* height: 100%; */
    height: 900px;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

/* Content */
.hero-content {
    max-width: 850px;
}

/* Title */
.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

/* Description */
.hero-description {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.7;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

/* CTA Wrapper */
.hero-actions {
    display: flex;
    gap: 20px;
}

/* Primary Button */
.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-actions .btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-actions .btn-primary svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-actions .btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-actions .btn-primary span {
    position: relative;
    z-index: 1;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 991px) {
    .hero-container {
        padding: 60px 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 38px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .hero-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 75vh;
    }
    
    .hero-container {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-actions .btn-primary {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* hero-section-end */