:root {
  --font-base: 1rem;
  --font-scale: 1.2;
  --text-xs: calc(var(--font-base) / (var(--font-scale) * var(--font-scale)));
  --text-sm: calc(var(--font-base) / var(--font-scale));
  --text-base: var(--font-base);
  --text-lg: calc(var(--font-base) * var(--font-scale));
  --text-xl: calc(var(--text-lg) * var(--font-scale));
  --text-2xl: calc(var(--text-xl) * var(--font-scale));
  --text-3xl: calc(var(--text-2xl) * var(--font-scale));
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --container-padding: 1rem;
  --container-max: 100%;
  --primary-color: #085696;
  --primary-light: #0174AA;
  --text-light: #F4F5F7;
}

footer {
    background: linear-gradient(135deg, #085696 0%, #0174AA 100%);
    color: #F4F5F7;
    padding: 50px 20px 30px;
    margin-top: auto;
}

.footer_cont1 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer_cont2 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer_logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer_logo:hover {
    transform: scale(1.05);
}

.footer_title_cont {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer_logo_title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: #F4F5F7;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-decoration: none;
}

.footer_logo_title2 {
    font-family: "Archivo Narrow", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-decoration: none;
}

.footer_separate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer_cont3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_title2 {
    font-family: "Archivo Narrow", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #F4F5F7;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-decoration: none;
}

.footer_minicont {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 0;
}

.footer_minicont svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer_text {
    font-family: "Archivo Narrow", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.footer_logo_link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer_logo_link:hover {
    color: #F4F5F7;
    transform: translateX(5px);
}

.footer_logo_link:hover .footer_text {
    color: #F4F5F7;
}

.nav_list_footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav_list_footer li {
    margin: 0;
}

.nav_list_footer a {
    font-family: "Archivo Narrow", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: block;
    position: relative;
}

.nav_list_footer a:hover {
    color: #F4F5F7;
    transform: translateX(5px);
}

.nav_list_footer a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #F4F5F7;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav_list_footer a:hover::before {
    height: 16px;
}

.footer_cont3:last-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_cont3:last-child .footer_minicont {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.facebook {
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.facebook:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer_bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer_copyright {
    font-family: "Archivo Narrow", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer_separate {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer_cont2 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer_logo {
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }
    
    .footer_logo_title {
        font-size: 24px;
    }
    
    .footer_logo_title2 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 40px 15px 25px;
    }
    
    .footer_separate {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer_cont1 {
        gap: 30px;
    }
    
    .footer_title2 {
        font-size: 20px;
    }
    
    .footer_minicont {
        gap: 12px;
    }
    
    .footer_text {
        font-size: 15px;
    }
    
    .nav_list_footer a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 10px 20px;
    }
    
    .footer_cont2 {
        padding-bottom: 20px;
    }
    
    .footer_logo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }
    
    .footer_logo_title {
        font-size: 22px;
    }
    
    .footer_title2 {
        font-size: 18px;
    }
    
    .footer_minicont {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer_logo_link {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .nav_list_footer ul {
        align-items: center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer_cont2,
.footer_cont3 {
    animation: fadeInUp 0.6s ease-out;
}

.footer_cont3:nth-child(1) { animation-delay: 0.1s; }
.footer_cont3:nth-child(2) { animation-delay: 0.2s; }
.footer_cont3:nth-child(3) { animation-delay: 0.3s; }
.footer_cont3:nth-child(4) { animation-delay: 0.4s; }