


:root {
  --global--font-family: "Helvetica Neue", sans-serif;
  --colors--text-black: #2f2b43;
  --colors--text-gray: #475467;
  --colors--text-gray-dark: #3B4758;
  --colors--brand-primary: #9747FF;
  --colors--Primary--Purple: Purple;
  --colors--brand-secondary: #F7B500;
  --colors--black: black;
  --colors--gray--dark: #474545;
  --container-sizing--container-large: 1280px;
  --container-sizing--container-padding-x-large: 40px;
  --container-sizing--container-padding-x-small: 16px;
  --container-sizing--container-full: 100vw;
  --colors--white: #fff;
  --colors--white-snow: Snow - White;
  --colors--brand-hover: #ecdeff;  
  --container-sizing--section-padding-y-large: 60px;
  --container-sizing--section-padding-y-medium: 60px;
  --container-sizing--section-padding-y-small: 40px;
  --colors--border: #eceae1;
  --colors--gray: #9f9a9a;
  --colors--border-invert: #ffffff1a; 
  --colors--light-gray: #f9fafb;
  --container-sizing--container-small: 1080px;
}
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130, 67, 213, 0.5), transparent);
}

.footer-brand-section {
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
}

.footer-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.925);
    margin-bottom: 30px;
    line-height: 28px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--colors--brand-primary);
    transform: translateX(5px);
}

.footer-contact-item i {
    width: 20px;
    color: var(--colors--brand-primary);
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(130, 67, 213, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(130, 67, 213, 0.3);
}

.footer-social-link:hover {
    background: var(--colors--brand-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(130, 67, 213, 0.3);
    color: #ffffff;
}

.footer-links-section h6 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-section h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--colors--brand-primary);
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section ul li {
    margin-bottom: 12px;
}

.footer-links-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.footer-links-section ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links-section ul li a:hover {
    color: var(--colors--brand-primary);
    padding-left: 10px;
}

.footer-links-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    margin-top: 10px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--colors--brand-primary);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .modern-footer {
        padding: 50px 0 0;
    }
    
    .footer-brand-section {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-links-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-links-section h6::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}