/* Professional Modern Footer Design - Using Color Variables */
.footer--container {
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 0;
}
.footer--text
{
    color: var(--accent-gold);
    font-size: 0.9rem;
}
.footer--divider
{
    color: var(--accent-gold);
}
/* Top Border Accent */
.footer--container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 2;
}

/* Footer Content Wrapper */
.footer--content {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, var(--overlay-black-medium), var(--overlay-black-light));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    padding: 60px 0 0 0;
    margin: 0 -15px;
    border: 1px solid var(--border-light);
    border-bottom: none;
}

/* Brand Section - Enhanced */
.footer--brand {
    padding: 40px;
    background: var(--gradient-gray);
    border-radius: 20px;
    border: 1px solid var(--border-medium);
    box-shadow: 0 8px 32px var(--shadow-dark);
    margin-bottom: 40px;
    transition: all var(--transition-normal) ease;
    position: relative;
    overflow: hidden;
}

.footer--brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0.8;
}

.footer--brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--shadow-dark);
    border-color: var(--accent-gold);
}

.footer--logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.footer--logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer--description {
    color: var(--lighter-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 400;
}

/* Social Media - Modern Design */
.footer--social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer--social-link {
    width: 50px;
    height: 50px;
    background: var(--secondary-black);
    border: 2px solid var(--border-medium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter-gray);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-normal) ease;
    position: relative;
    overflow: hidden;
}

.footer--social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left var(--transition-slow) ease;
    z-index: -1;
}

.footer--social-link:hover::before {
    left: 0;
}

.footer--social-link:hover {
    color: var(--primary-black);
    border-color: var(--accent-gold);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Footer Sections */
.footer--section {
    padding: 20px;
    transition: all var(--transition-normal) ease;
    position: relative;
}

.footer--section:hover {
    transform: translateY(-2px);
}

.footer--title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer--title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

/* Links Styling */
.footer--links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer--links li {
    position: relative;
}

.footer--link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all var(--transition-normal) ease;
    position: relative;
    display: inline-block;
    padding: 8px 0;
}

.footer--link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal) ease;
}

.footer--link:hover {
    padding-left: 15px;
    transform: translateX(5px);
}

.footer--link:hover::before {
    width: 10px;
}

/* Contact Information */
.footer--contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    background: var(--secondary-black);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal) ease;
    position: relative;
    overflow: hidden;
}

.footer--contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

.footer--contact-item:hover {
    background: var(--dark-gray);
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.footer--contact-item:hover::before {
    opacity: 1;
}

.footer--contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer--contact-text {
    flex: 1;
}

.footer--contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--light-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer--contact-value {
    display: block;
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
    margin-top: 4px;
    text-decoration: none;
}

.footer--contact-value:hover {
    color: var(--accent-gold);
}


.footer--contact-box {
    background: var(--secondary-black);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    transition: all var(--transition-normal) ease;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer--contact-box:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-box-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 20px;
    flex-shrink: 0;
}

.contact-box-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin: 0;
    white-space: nowrap;
}

.contact-box-value {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-box-value a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.contact-box-value a:hover {
    color: var(--primary-color);
}

/* Social Links in Contact Box */
.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 5px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: var(--secondary-black);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-normal) ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left var(--transition-normal) ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: var(--primary-black);
    border-color: var(--accent-gold);
    transform: translateY(-2px) scale(1.05);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: var(--text-white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: var(--text-white);
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: var(--text-white);
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: var(--text-white);
}

/* Bottom Section */
.footer--bottom {
    background: var(--primary-black);
    border-top: 1px solid var(--border-light);
    padding: 30px 0;
    margin-top: 40px;
    position: relative;
}

.footer--bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer--copyright {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer--copyright i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Payment Methods */
.footer--payment {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.footer--payment-label {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px;
}

.footer--payment-icon {
    height: 32px;
    width: auto;
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 6px 10px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal) ease;
    filter: grayscale(1) opacity(0.8);
}

.footer--payment-icon:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-2px) scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Newsletter Section in Footer */
.footer--newsletter {
    background: var(--gradient-gray);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border-medium);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.footer--newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer--newsletter-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer--newsletter-title i {
    color: var(--accent-gold);
    font-size: 1.6rem;
}

.footer--newsletter-text {
    color: var(--lighter-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer--newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border-medium);
    background: var(--secondary-black);
    transition: border-color var(--transition-normal) ease;
}

.footer--newsletter-form .input-group:focus-within {
    border-color: var(--accent-gold);
}

.footer--newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 18px 25px;
    font-size: 1rem;
}

.footer--newsletter-form .form-control:focus {
    background: transparent;
    color: var(--text-white);
    box-shadow: none;
}

.footer--newsletter-form .form-control::placeholder {
    color: var(--light-gray);
}

.footer--newsletter-form .btn {
    background: var(--gradient-gold);
    border: none;
    color: var(--primary-black);
    padding: 18px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 50px 50px 0;
    transition: all var(--transition-normal) ease;
}

.footer--newsletter-form .btn:hover {
    background: var(--accent-gold);
    transform: translateX(-3px) scale(1.02);
}

/* Back to Top Button */
.footer--back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal) ease;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--overlay-white-medium);
}

.footer--back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: footerPulse 2s ease-in-out infinite;
}

.footer--back-to-top:hover {
    background: var(--accent-gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

@keyframes footerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    }
}

/* thebora.dev Credit Section - Enhanced Large & Minimal Design */
.footer--thebora-credit {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--dark-gray) 100%);
    border: 2px solid var(--border-medium);
    border-radius: 25px;
    padding: 60px 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow) ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer--thebora-credit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    opacity: 1;
    z-index: 1;
}

.footer--thebora-credit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(212, 175, 55, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.footer--thebora-credit:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 20px 60px var(--shadow-dark),
        0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.footer--thebora-credit p {
    margin: 0;
    font-size: 1.8rem;
    color: var(--lighter-gray);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    line-height: 1.4;
    text-align: center;
    flex-wrap: wrap;
}

.footer--thebora-credit i {
    color: var(--accent-gold);
    font-size: 2.2rem;
    filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.4));
    animation: theboraPulse 4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes theboraPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.4));
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 5px 12px rgba(212, 175, 55, 0.6));
    }
}

.thebora-text {
    color: var(--text-white);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    transition: all var(--transition-normal) ease;
    font-size: 1.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.footer--thebora-credit:hover .thebora-text {
    color: var(--accent-gold);
    text-shadow: 2px 2px 12px rgba(212, 175, 55, 0.4);
    transform: translateX(3px);
}

.thebora-year {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
    animation: theboraYearGlow 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes theboraYearGlow {
    0%, 100% { 
        text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
    }
    50% { 
        text-shadow: 2px 2px 16px rgba(212, 175, 55, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer--container {
        padding: 60px 0 0 0;
    }
    
    .footer--content {
        padding: 50px 0 0 0;
    }
    
    .footer--brand {
        padding: 35px;
    }
    
    .footer--thebora-credit {
        padding: 20px 25px;
        margin-top: 25px;
    }
    
    .footer--thebora-credit p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .footer--container {
        padding: 50px 0 0 0;
    }
    
    .footer--content {
        padding: 40px 0 0 0;
        border-radius: 15px 15px 0 0;
    }
    
    .footer--brand {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .footer--social {
        justify-content: center;
    }
    
    .footer--payment {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer--copyright {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer--container {
        padding: 40px 0 0 0;
    }
    
    .footer--content {
        padding: 30px 0 0 0;
        border-radius: 12px 12px 0 0;
        margin: 0 -10px;
    }
    
    .footer--brand {
        padding: 25px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    /* Mobile 2x2 Layout for Footer Blocks */
    .footer--container .row:first-child .col-lg-3:first-child,
    .footer--container .row:first-child .col-lg-3:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer--container .row:first-child .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .footer--section {
        padding: 15px;
        text-align: center;
    }
    
    .footer--title {
        text-align: center;
    }
    
    .footer--title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer--links {
        text-align: center;
    }
    
    .footer--link::before {
        display: none;
    }
    
    .footer--link:hover {
        padding-left: 0;
        transform: none;
    }
    
    .footer--social {
        justify-content: center;
    }
    
    .footer--social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer--newsletter {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .footer--bottom {
        padding: 25px 0;
    }
    
    .footer--back-to-top {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 1.2rem;
    }
    
    .footer--thebora-credit {
        padding: 18px 20px;
        margin-top: 20px;
        border-radius: 12px;
    }
    
    .footer--thebora-credit p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer--thebora-credit i {
        font-size: 1.1rem;
    }
    
    .thebora-year {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .footer--container {
        padding: 30px 0 0 0;
    }
    
    .footer--content {
        padding: 25px 0 0 0;
        border-radius: 10px 10px 0 0;
        margin: 0 -5px;
    }
    
    .footer--brand {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .footer--logo {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .footer--description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    
    /* Contact Boxes Mobile Small */
    .footer--contact-boxes {
        margin: 25px 0;
        padding: 20px 0;
    }
    
    .footer--contact-boxes .row {
        margin: 0 -5px;
    }
    
    .footer--contact-boxes [class*="col-"] {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .footer--contact-box {
        padding: 18px 12px;
        min-height: 110px;
        border-radius: 12px;
    }
    
    .contact-box-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-box-title {
        font-size: 0.8rem;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }
    
    .contact-box-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .social-links {
        gap: 6px;
        margin-top: 6px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    }
    
    .footer--section {
        padding: 10px;
        text-align: center;
    }
    
    .footer--title {
        font-size: 0.8rem;
        margin-bottom: 20px;
        text-align: center;
    }
    .footer--text
    {
        text-align: justify;
        font-size: 0.8rem;
    }
    
    .footer--title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer--link
    {
        font-size: 0.8rem;
    }
    
    .footer--links {
        text-align: center;
        padding: 0 10px;
    }
    
    .footer--link {
        display: block;
        text-align: center;
        padding: 6px 0;
    }
    
    .footer--link::before {
        display: none;
    }
    
    .footer--link:hover {
        padding-left: 0;
        transform: none;
    }
    
    .footer--social {
        gap: 10px;
        justify-content: center;
    }
    
    .footer--social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .footer--contact-item {
        padding: 12px;
        margin-bottom: 15px;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.8rem;
    }
    
    .footer--contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer--contact-label {
        font-size: 0.8rem;
    }
    
    .footer--contact-value {
        font-size: 0.9rem;
    }
    
    .footer--newsletter {
        padding: 20px;
        border-radius: 12px;
    }
    
    .footer--newsletter-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .footer--newsletter-title i {
        font-size: 1.4rem;
    }
    
    .footer--newsletter-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer--newsletter-form .form-control {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .footer--newsletter-form .btn {
        padding: 15px 25px;
        font-size: 0.8rem;
    }
    
    .footer--bottom {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .footer--copyright {
        font-size: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .footer--payment {
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
    }
    
    .footer--payment-icon {
        height: 28px;
        padding: 4px 6px;
    }
    
    .footer--back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    .footer--thebora-credit {
        padding: 15px 18px;
        margin-top: 18px;
        border-radius: 10px;
    }
    
    .footer--thebora-credit p {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .footer--thebora-credit i {
        font-size: 1rem;
    }
    
    .thebora-text {
        font-size: 0.85rem;
    }
    
    .thebora-year {
        font-size: 0.95rem;
    }
}

/* Animation Enhancements */
.footer--container {
    animation: footerFadeIn 1s ease-out;
}

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

/* Floating Elements Animation */
.footer--social-link,
.footer--contact-item,
.footer--newsletter {
    animation: footerElementFloat 0.8s ease-out;
}

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

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

/* Enhanced Accessibility */
.footer--link:focus,
.footer--social-link:focus,
.footer--contact-value:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .footer--container {
        background: var(--bg-primary) !important;
        color: var(--text-primary) !important;
        box-shadow: none !important;
    }
    
    .footer--back-to-top {
        display: none !important;
    }
    
    .footer--newsletter {
        display: none !important;
    }
    
    .footer--social {
        display: none !important;
    }
}
