/* ============================================
   HERO SECTION - MINIMALIST & MODERN
   ============================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    background: #166534;
}

.glide {
    position: relative;
}

.glide__track {
    overflow: hidden;
}

.glide__slides {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
}

.glide__slide {
    height: 75vh;
    min-height: 550px;
    max-height: 800px;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeInUp 0.8s ease;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Title */
.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-highlight {
    display: block;
    background: linear-gradient(90deg, #4ade80 0%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 58px;
    margin-top: 8px;
}

/* Description */
.hero-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin-bottom: 38px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 580px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 38px;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    color: #166534;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(22, 101, 52, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary i {
    font-size: 19px;
    position: relative;
    z-index: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 38px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-secondary i {
    font-size: 19px;
}

/* ============================================
   GLIDE ARROWS
   ============================================ */

.glide__arrows {
    position: relative;
}

.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glide__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.glide__arrow--left {
    left: 25px;
}

.glide__arrow--right {
    right: 25px;
}

/* ============================================
   GLIDE BULLETS
   ============================================ */

.glide__bullets {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.glide__bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.glide__bullet:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.glide__bullet--active {
    background: #fff;
    width: 32px;
    border-radius: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .glide__slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-highlight {
        font-size: 50px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .glide__arrow {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .glide__slide {
        height: auto;
        min-height: 90vh;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 50px 0;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 22px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-highlight {
        font-size: 40px;
        margin-top: 6px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .glide__arrows {
        display: none;
    }
    
    .glide__bullets {
        bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-highlight {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 26px;
        font-size: 14px;
    }
    
    .btn-primary i,
    .btn-secondary i {
        font-size: 17px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-highlight {
        font-size: 30px;
    }
}
