:root {
    --anf-accent: #C94B3C;
    --anf-accent-hover: #E85B4B;
}

.anf-footer {
    position: relative;
    background-color: #050809;
    padding: 100px 0 50px 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.anf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Giant Background Text */
.anf-giant-text-bg {
    position: absolute;
    bottom: -10%;
    right: -5%;
    font-size: 25vw;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.015);
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

/* Typography & Helpers */
.anf-text-primary { color: #FFFFFF; }
.anf-text-secondary { color: #8C9A9E; font-size: 0.95rem; line-height: 1.6; margin: 0; }
.anf-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--anf-accent);
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Brand Section (Now styled safely below social links with visual border refinement) */
.anf-brand-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 50px;
    margin-top: 20px;
    margin-bottom: 50px;
}
.anf-brand-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.anf-logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #FFFFFF;
}
.anf-logo-img {
    max-height: 60px;
    width: auto;
}
.anf-slogan {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #8C9A9E;
}
.anf-brand-right {
    max-width: 400px;
}

/* Quick Links Section */
.anf-links-section {
    margin-bottom: 60px;
}
.anf-links-grid {
    display: grid;
    gap: 20px 30px;
}
.anf-link {
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    padding: 10px 0;
    display: inline-block;
}
.anf-link-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}
.anf-link-num {
    font-size: 0.8rem;
    color: var(--anf-accent);
    font-weight: 600;
}
.anf-link-txt {
    font-size: 1.15rem;
    font-weight: 500;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.anf-link-arrow {
    font-size: 1.1rem;
    color: var(--anf-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.anf-link-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--anf-accent);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.anf-link:hover .anf-link-txt {
    transform: translateX(5px);
    color: var(--anf-accent);
}
.anf-link:hover .anf-link-arrow {
    opacity: 1;
    transform: translateX(0);
}
.anf-link:hover .anf-link-line {
    width: 100%;
}

/* Three-Word Slogan Section (NEW) */
.anf-slogan-section {
    width: 100%;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}
.anf-slogan-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}
.anf-slogan-word {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #FFFFFF;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
    display: inline-block;
}
.anf-slogan-sep {
    font-size: 1.8rem;
    color: var(--anf-accent);
    font-weight: 300;
    user-select: none;
}
.anf-slogan-word:hover {
    color: var(--anf-accent);
    transform: scale(1.05);
}

/* Contact Cards Section */
.anf-contact-section {
    margin-bottom: 60px;
}
.anf-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.anf-card {
    background-color: #0D1214;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.anf-card-clickable {
    cursor: pointer;
}
.anf-card-icon {
    font-size: 1.5rem;
    color: var(--anf-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.anf-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--anf-accent);
}
.anf-card-content {
    flex-grow: 1;
}
.anf-card-lbl {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #8C9A9E;
    margin-bottom: 8px;
}
.anf-card-val {
    font-size: 1.05rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
}
.anf-card-arrow {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 1.1rem;
    color: var(--anf-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effects for contact cards */
.anf-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.anf-card:hover .anf-card-icon {
    background-color: var(--anf-accent);
    color: #FFFFFF;
}
.anf-card:hover .anf-card-icon svg {
    fill: #FFFFFF;
}
.anf-card-clickable:hover .anf-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Social Links Section (Styling optimized as container dividing-line helper) */
.anf-social-section {
    padding: 30px 0;
    margin-bottom: 20px;
}
.anf-social-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.anf-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8C9A9E;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.anf-social-link svg {
    width: 16px;
    height: 16px;
    fill: #8C9A9E;
    transition: all 0.3s ease;
}
.anf-social-link:hover {
    color: var(--anf-accent);
}
.anf-social-link:hover svg {
    fill: var(--anf-accent);
    transform: scale(1.1);
}

/* Copyright Section */
.anf-copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}
.anf-copyright-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.anf-copyright-right {
    display: flex;
    gap: 20px;
}
.anf-legal-link {
    color: #8C9A9E;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.anf-legal-link:hover {
    color: var(--anf-accent);
}

/* Reveal Animations */
.anf-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.anf-reveal.anf-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .anf-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .anf-brand-section {
        flex-direction: column;
        gap: 25px;
    }
    .anf-slogan-word {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .anf-footer {
        padding: 60px 0 30px 0;
    }
    .anf-cards-grid {
        grid-template-columns: 1fr;
    }
    .anf-copyright-wrap {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .anf-slogan-word {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}
