
          /* Galerijos hero sekcija */
.gallery-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 50%;
    z-index: 0;
}




.gallery-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Teksto stilius */
.gallery-hero-text {
    max-width: 500px;
}

.gallery-hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e31b23;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.gallery-hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: #e31b23;
}

.gallery-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e2b37;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-hero-description {
    font-size: 1.1rem;
    color: #5a6a7a;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Statistikos blokas */
.gallery-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mygtukas */
.btn-gallery-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #e31b23;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #e31b23;
}

.btn-gallery-hero i {
    transition: transform 0.3s ease;
}

.btn-gallery-hero:hover {
    background: transparent;
    color: #e31b23;
    transform: translateY(-2px);
}

.btn-gallery-hero:hover i {
    transform: translateX(5px);
}

.gallery-hero-image {
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: 184px;
    border-radius: 8px;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.gallery-hero-image:hover .hero-main-img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #e31b23;
    color: white;
    padding: 25px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.experience-badge .years {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Dekoratyvinė forma */
.gallery-hero-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border: 5px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    z-index: -1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive dizainas */
@media (max-width: 992px) {
    .gallery-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gallery-hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .gallery-hero-subtitle {
        padding-left: 0;
    }
    
    .gallery-hero-subtitle::before {
        display: none;
    }
    
    .gallery-hero-stats {
        justify-content: center;
    }
    
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .experience-badge {
        bottom: -10px;
        right: -10px;
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .gallery-hero {
        padding: 50px 0;
    }
    
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -5px;
        right: -5px;
    }
    
    .experience-badge .years {
        font-size: 1.3rem;
    }
    
    .experience-badge .text {
        font-size: 0.6rem;
    }
    
    .gallery-hero-shape {
        width: 100px;
        height: 100px;
        top: -10px;
        left: -10px;
    }
}
