        /* ========== PROFESSIONAL FOOTER STYLES SU STRĖLYTĖMIS ========== */
.main-footer {
   margin-left: 270px;
    background: linear-gradient(135deg, #0a141f 0%, #0e1a24 100%);
    color: #a0bedb;
    padding: 60px 0 0 0;
    margin-top: 60px;
    font-size: 15px;
    border-top: 3px solid #e9b741;
    position: relative;
    overflow: hidden;
}

/* Dekoratyvinis fonas - šviesos efektas */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9b741, transparent);
    opacity: 0.5;
}

/* Pagrindinis konteineris */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Kolonėlių stiliai */
.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-col h3 {
    font-size: 26px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #e9b741 0%, #f5cd7a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-col h4 {
    font-size: 18px;
    padding-bottom: 14px;
}

/* Dekoratyvinė linija po h4 su animacija */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: #e9b741;
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 70px;
}

/* Logo ir aprašymas */
.footer-logo {
    background: linear-gradient(135deg, #e9b741 0%, #f5cd7a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 13px;
    margin-bottom: 18px;
    color: #b8cfec;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
    opacity: 0.85;
}

/* Kontaktiniai duomenys - su strėlytėmis */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.footer-contact-info a {
    color: #a0bedb;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    position: relative;
}

.footer-contact-info a i {
    width: 22px;
    color: #e9b741;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* STRĖLYTĖS EFEKTAS kontaktams */
.footer-contact-info a::after {
    content: '→';
    position: relative;
    opacity: 0;
    margin-left: 0;
    transition: all 0.3s ease;
    color: #e9b741;
}

.footer-contact-info a:hover::after {
    opacity: 1;
    margin-left: 8px;
}

.footer-contact-info a:hover {
    color: #e9b741;
    transform: translateX(5px);
}

.footer-contact-info a:hover i {
    transform: scale(1.1);
}

/* Nuorodų sąrašai - su animuotomis strėlytėmis */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a {
    color: #a0bedb;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* STRĖLYTĖS EFEKTAS nuorodoms (animuota) */
.footer-links a::before {
    content: '→';
    position: relative;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #e9b741;
    font-weight: 600;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: #e9b741;
    transform: translateX(6px);
}

/* Alternatyvus variantas - strėlytė dešinėje */
.footer-links a.arrow-right::after {
    content: '→';
    position: relative;
    opacity: 0;
    margin-left: 0;
    transition: all 0.3s ease;
    color: #e9b741;
}

.footer-links a.arrow-right:hover::after {
    opacity: 1;
    margin-left: 8px;
}

/* Apatinė juosta */
.footer-bottom {
    background: linear-gradient(135deg, #051016 0%, #07121c 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(233, 183, 65, 0.2);
    margin-top: 20px;
    position: relative;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-container p {
    font-size: 13px;
    margin: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-bottom-container p:hover {
    opacity: 1;
}

/* Social media ikonos - su animacija */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #a0bedb;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(160, 190, 219, 0.1);
    text-decoration: none;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #e9b741;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #0e1a24;
    transform: translateY(-4px);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Papildomas efektas - pulsuojanti linija footer viršuje */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.main-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e9b741, transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* Animuotas skaičius metų - jei norite */
.footer-year {
    display: inline-block;
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 2px rgba(233, 183, 65, 0.5);
    }
}

/* Responsive dizainas */
@media screen and (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0 0;
        margin-top: 40px;
    }

    .footer-container {
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-container p {
        order: 2;
    }

    .social-links {
        order: 1;
    }
    
    .footer-col h3 {
        font-size: 24px;
    }
    
    .footer-col h4 {
        font-size: 17px;
    }
}



      @media (max-width: 769px) {
     .main-footer{ 
                margin-left: 0px!important; 

            }
        }


@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }

    .footer-col h3 {
        font-size: 22px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-links a,
    .footer-desc,
    .footer-contact-info a {
        font-size: 13px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .footer-links a::before {
        font-size: 12px;
    }
}