.hero {
    /* background: linear-gradient(135deg, rgb(0 0 0 / 0%), rgba(20, 20, 20, 0.8)), url(../img/f0273c67-d627-40fb-b10f-7a46facfb3fb.png) center  / cover fixed; */
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;





        /* background: linear-gradient(135deg, rgb(0 0 0 / 0%), rgba(20, 20, 20, 0.8)), url(../img/f0273c67-d627-40fb-b10f-7a46facfb3fb.png) center / cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7)), url(https://images.unsplash.com/photo-1604014237800-1c9102c219da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80) center / cover fixed;
    color: var(--white);
    padding: 100px 0;
    text-align: center; */
}


.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0), rgba(20,20,20,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}




/* .hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
} */


.hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem); /* Atsakingas šriftas */
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: #D4AF37; /* Aukso spalva */
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 8vw, 80px);
    margin: 60px 0 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #D4AF37; /* Aukso spalva */
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.service-areas {
    margin: 30px 0 40px;
    font-size: 1.2rem;
    /* background: rgba(255, 255, 255, 0.1); */
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    /* backdrop-filter: blur(5px); */
    /* border: 1px solid rgba(212, 175, 55, 0.3); */
}

.service-areas i {
    color: #D4AF37;
    margin-right: 8px;
}

.service-areas strong {
    color: #D4AF37;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #D4AF37;
    color: #1a1a1a;
    border-color: #D4AF37;
}

.btn-primary:hover {
    background-color: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #fff;
    color: #1a1a1a;
}

/* Nematomas SEO blokas */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


