/* =========================================================================
   12. FOOTER (EVC NETWORK)
   ========================================================================= */
.evc-footer-wrapper {
    position: relative;
    width: 100%;
    padding: 100px 5%;
    box-sizing: border-box;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #000312;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
}

.evc-breathing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(59, 80, 234, 0.4), transparent 70%);
    opacity: 0.6;
    animation: evcBreatheTop 5s ease-in-out infinite alternate;
    z-index: 1;
    transform-origin: top center;
}

@keyframes evcBreatheTop {
    0% { opacity: 0.3; transform: scaleY(1); }
    100% { opacity: 0.7; transform: scaleY(1.2); }
}

.evc-footer-huge-text {
    position: absolute;
    bottom: -4%;
    left: -1.5%;
    font-size: clamp(65px, 11vw, 200px);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    letter-spacing: -3px;
    color: rgba(255, 255, 255, 0.15);
    line-height: 0.8;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
    opacity: 1;
    transform: none;
}

.evc-footer-huge-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.evc-footer-huge-text.visible span {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.evc-footer-separator {
    display: none;
}

.evc-footer-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.evc-footer-decoration {
    position: absolute;
    right: -150px;
    bottom: -200px;
    top: auto;
    left: auto;
    transform: none;
    width: 650px;
    height: auto;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    filter: none;
}

.evc-footer-decoration img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.evc-footer-main {
    position: relative;
    z-index: 5;
    background: rgba(23, 23, 35, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 60px 80px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.evc-footer-city {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.evc-footer-info-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evc-footer-label {
    font-size: 0.95rem;
    color: #3b50ea;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.evc-footer-text {
    font-size: 1.1rem;
    color: #e2e2e2;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.evc-map-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 5px;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.evc-map-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.evc-footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evc-social-link {
    color: #e2e2e2;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.evc-social-link:hover {
    color: #3b50ea;
    padding-left: 5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .evc-footer-wrapper { padding: 60px 20px; justify-content: center; }
    .evc-footer-main { padding: 40px 30px; max-width: 100%; }
    .evc-footer-city { font-size: 1.8rem; }
}
