/* Enhanced Footer Styles */
.enhanced-footer {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
    font-family: 'Prompt', sans-serif;
}

/* Main Footer Section */
.footer-main {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a78bfa' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Footer Brand */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.footer-about {
    color: #333333 !important;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cert-badge {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Footer Titles */
.footer-title {
    color: #333333 !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #333333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 15px;
    margin-right: 10px;
}

/* Contact Information */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-info .value {
    color: #333333 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a.value:hover {
    color: #8b5cf6;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: white;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #333333 !important;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
    transform: translateY(-3px);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .certification-badges {
        justify-content: center;
    }
    
    .footer-title {
        margin-top: 2rem;
    }
    
    .contact-item {
        align-items: flex-start;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 2rem 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .enhanced-footer {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    }
    
    .footer-about,
    .footer-links a,
    .contact-info .label,
    .copyright {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-title {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .footer-bottom {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .social-link {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .cert-badge,
    .footer-links a,
    .social-link,
    .back-to-top {
        transition: none;
    }
    
    .cookie-consent {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .enhanced-footer {
        background: none;
        border-top: 1px solid #ddd;
    }
    
    .certification-badges,
    .social-links,
    .back-to-top,
    .cookie-consent {
        display: none;
    }
    
    .footer-main::before {
        display: none;
    }
}
/* Footer Titles */
.footer-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff8fb1, #ff5b94);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff8fb1, #ff5b94);
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff5b94;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 15px;
    margin-right: 10px;
}

/* Contact Information */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #ff5b94;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-info .value {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a.value:hover {
    color: #ff5b94;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: white;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: linear-gradient(135deg,rgb(229, 143, 255),rgb(194, 42, 245));
    color: white;
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg,rgb(221, 143, 255),rgb(165, 32, 237));
    color: white;
    transform: translateY(-3px);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .certification-badges {
        justify-content: center;
    }
    
    .footer-title {
        margin-top: 2rem;
    }
    
    .contact-item {
        align-items: flex-start;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 2rem 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}