/* Generated from style.css lines 21389-22397 */
        font-size: 1.5rem;
        padding: 0 0rem 1rem 0rem;
    }
}


/* ========== FOOTER STYLES ========== */

.footer-main {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    text-decoration: none;
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #a5b4fc;
}

/* Contacts in Footer */
.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contacts svg {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #a5b4fc;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}


/* ========== FOOTER V2 (Simple Style like Reference) ========== */

.site-footer-v2 {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.footer-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Row */
.footer-v2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Logo */
.footer-v2-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #6366F1;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.footer-v2-logo svg {
    width: 28px;
    height: 28px;
    stroke: #6366F1;
}

/* Legal Links */
.footer-v2-legal {
    display: flex;
    gap: 2rem;
}

.footer-v2-legal a {
    color: #6366F1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-v2-legal a:hover {
    color: #4F46E5;
    text-decoration: underline;
}

/* Social Icons */
.footer-v2-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

/* Telegram */
.social-telegram {
    background: #0088cc;
    color: #ffffff;
}
.social-telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
}

/* Facebook */
.social-facebook {
    background: #1877F2;
    color: #ffffff;
}
.social-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
}

/* Threads */
.social-threads {
    background: #000000;
    color: #ffffff;
}
.social-threads:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* VK */
.social-vk {
    background: #0077FF;
    color: #ffffff;
}
.social-vk:hover {
    background: #0066DD;
    transform: translateY(-2px);
}

/* Instagram */
.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}
.social-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* TikTok */
.social-tiktok {
    background: #000000;
    color: #ffffff;
    position: relative;
}
.social-tiktok::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, #69C9D0, #EE1D52);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-tiktok:hover::before {
    opacity: 1;
}
.social-tiktok svg {
    position: relative;
    z-index: 1;
}
.social-tiktok:hover {
    transform: translateY(-2px);
}

/* Bottom Row */
.footer-v2-bottom {
    padding-top: 1rem;
    text-align: center;
}

.footer-v2-bottom p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-v2-top {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .footer-v2-logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-v2-legal {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-v2-social {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-v2-container {
        padding: 0 1rem;
    }
    
    .footer-v2-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-v2-social {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ========== SIMPLE FOOTER (Reference Style) ========== */

.footer-simple {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.footer-simple-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Row */
.footer-simple-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Logo */
.footer-simple-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #6366F1;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.footer-simple-logo svg {
    width: 28px;
    height: 28px;
    stroke: #6366F1;
}

/* Legal Links */
.footer-simple-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-simple-legal a {
    color: #6366F1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-simple-legal a:hover {
    color: #4F46E5;
    text-decoration: underline;
}

/* Social Icons */
.footer-simple-social {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Telegram */
.social-telegram {
    background: #0088cc;
    color: #ffffff;
}
.social-telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

/* Facebook */
.social-facebook {
    background: #1877F2;
    color: #ffffff;
}
.social-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Threads */
.social-threads {
    background: #000000;
    color: #ffffff;
}
.social-threads:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* VK */
.social-vk {
    background: #0077FF;
    color: #ffffff;
}
.social-vk:hover {
    background: #0066DD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 255, 0.4);
}

/* Instagram */
.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}
.social-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

/* TikTok */
.social-tiktok {
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.social-tiktok::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, #69C9D0, #EE1D52);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-tiktok:hover::before {
    opacity: 1;
}
.social-tiktok svg {
    position: relative;
    z-index: 1;
}
.social-tiktok:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Bottom Row */
.footer-simple-bottom {
    padding-top: 1.25rem;
    text-align: center;
}

.footer-simple-bottom p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-simple-top {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .footer-simple-logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-simple-legal {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-simple-social {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-simple-container {
        padding: 0 1rem;
    }
    
    .footer-simple-social {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}


/* ========== LIGHT FOOTER (Beautiful Modern Design) ========== */

.footer-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-top: 1px solid #e5e7eb;
    padding: 4rem 0 0;
}

.footer-light-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Brand Column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #0066CC;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.05em;
    transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
    transform: translateX(5px);
}

.footer-brand-logo svg {
    width: 36px;
    height: 36px;
    stroke: #0066CC;
    transition: transform 0.3s ease;
}

.footer-brand-logo:hover svg {
    transform: rotate(5deg);
}

.footer-tagline {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}

/* Social Icons in Brand Column */
.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-social-icons .social-icon svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

/* Footer Columns */
.footer-col h4,
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-col h4::after,
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #0066CC, #0052CC);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066CC, #0052CC);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #0066CC;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contacts List */
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contacts svg {
    color: #0066CC;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contacts a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: #0066CC;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #0066CC;
    text-decoration: underline;
}

.footer-bottom-right .separator {
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-light {
        padding: 3rem 0 0;
    }
    
    .footer-light-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .footer-brand-col {
        grid-column: auto;
        text-align: center;
        align-items: center;
    }
    
    .footer-brand-logo {
        justify-content: center;
    }
    
    .footer-tagline {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4::after,
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contacts {
        align-items: center;
    }
    
    .footer-contacts li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-light {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-brand-logo {
        font-size: 1.5rem;
    }
    
    .footer-brand-logo svg {
        width: 32px;
        height: 32px;
    }
    
    .footer-social-icons .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .footer-social-icons .social-icon svg {
        width: 18px;
        height: 18px;
    }
