/* TAGS Awards 2026 - Revamped Executive Footer Section */

/* Animated Waving Gradient Background */
.tags-footer {
    background: linear-gradient(125deg, #180036 0%, #2A0968 25%, #141124 50%, #0F1424 75%, #250752 100%);
    background-size: 260% 260%;
    animation: footerGradientWave 14s ease-in-out infinite;
    color: #FFFFFF;
    border-top: 3.5px solid transparent;
    border-image: linear-gradient(90deg, #CD9C21 0%, #F0DA6A 35%, #41AAC4 70%, #CD9C21 100%) 1;
    padding-top: 76px;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

@keyframes footerGradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Ambient Blended Radial Glows (Violet from the hero banner + Gold + Teal) with floating wave */
.tags-footer::before {
    content: "";
    position: absolute;
    top: -60px;
    right: 2%;
    width: 550px;
    height: 450px;
    background: radial-gradient(circle, rgba(168, 120, 255, 0.22) 0%, rgba(168, 120, 255, 0) 70%);
    pointer-events: none;
    animation: footerGlowFloat1 10s ease-in-out infinite alternate;
}

.tags-footer::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 2%;
    width: 500px;
    height: 400px;
    background: radial-gradient(circle, rgba(65, 170, 196, 0.16) 0%, rgba(65, 170, 196, 0) 70%);
    pointer-events: none;
    animation: footerGlowFloat2 12s ease-in-out infinite alternate;
}

@keyframes footerGlowFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-60px, 40px) scale(1.15);
        opacity: 1;
    }
}

@keyframes footerGlowFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(60px, -40px) scale(1.2);
        opacity: 1;
    }
}

.tags-footer__main {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.tags-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 40px;
}

/* Column Titles */
.tags-footer__title {
    font-family: var(--font-display, 'Bodoni Moda', serif);
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 22px;
    position: relative;
    display: inline-block;
}

.tags-footer__title::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #CD9C21 0%, #41AAC4 100%);
    margin-top: 6px;
    border-radius: 2px;
}

/* Brand Column */
.tags-footer__brand-logo {
    display: inline-block;
    padding: 9px 18px;
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tags-footer__brand-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(205, 156, 33, 0.35);
}

.tags-footer__brand-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.tags-footer__brand-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* Social Badges */
.tags-footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 156, 33, 0.3);
    color: #F0DA6A !important;
    text-decoration: none !important;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tags-footer__social-link:hover,
.tags-footer__social-link:focus-visible {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #CD9C21 0%, #F0DA6A 100%);
    color: #16161A !important;
    border-color: #CD9C21;
    box-shadow: 0 8px 20px rgba(205, 156, 33, 0.45);
}

.tags-footer__social-link svg,
.tags-footer__social-link i {
    font-size: 15px;
    width: 16px;
    height: 16px;
}

/* Contact List & Info Cards */
.tags-footer__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-footer__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.tags-footer__info-item:last-child {
    margin-bottom: 0;
}

.tags-footer__info-icon {
    width: 20px;
    height: 20px;
    color: #F0DA6A;
    flex-shrink: 0;
    margin-top: 2px;
}

.tags-footer__info-text {
    flex: 1;
}

.tags-footer__info-text strong {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 3px;
}

.tags-footer__info-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tags-footer__info-text a:hover {
    color: #F0DA6A;
}

/* Navigation Links Column */
.tags-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-footer__nav-item {
    margin-bottom: 12px;
}

.tags-footer__nav-item:last-child {
    margin-bottom: 0;
}

.tags-footer__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.tags-footer__nav-link::before {
    content: "›";
    font-size: 17px;
    color: #41AAC4;
    transition: transform 0.2s ease, color 0.2s ease;
}

.tags-footer__nav-link:hover,
.tags-footer__nav-link:focus-visible {
    color: #F0DA6A;
    transform: translateX(4px);
}

.tags-footer__nav-link:hover::before {
    color: #CD9C21;
    transform: translateX(2px);
}

/* Bottom Copyright Bar */
.tags-footer__bottom {
    position: relative;
    z-index: 2;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.tags-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.tags-footer__copy strong {
    color: rgba(255, 255, 255, 0.9);
}

.tags-footer__credit {
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .tags-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 32px;
    }
}

@media (max-width: 767px) {
    .tags-footer {
        padding-top: 56px;
    }

    .tags-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tags-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tags-footer {
        animation: none !important;
        background-size: 100% 100% !important;
    }

    .tags-footer::before,
    .tags-footer::after {
        animation: none !important;
    }

    .tags-footer__social-link,
    .tags-footer__nav-link,
    .tags-footer__nav-link::before {
        transition: none !important;
        transform: none !important;
    }
}
