.modern-footer {
    background-color: #061b3c;
    color: #ffffff;
    padding: 120px 5% 40px 5%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
}

.footer-vision h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 500;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
}

.footer-vision p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    color: rgba(255, 255, 255, 0.7);
}

.magnetic-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-circle-btn {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #061b3c; /* Navy background */
    border: 2px solid #fff; /* White stroke added */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff; /* White text */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-circle-btn:hover {
    background-color: #fff; /* White on hover */
    color: #061b3c; /* Navy text on hover */
    border-color: #061b3c; /* Navy stroke on hover */
}

.footer-links-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 80px 0;
    gap: 20px;
}

.footer-col h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 40px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 20px;
}

.footer-col a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-col a i {
    font-size: 10px;
    transform: rotate(-45deg);
    opacity: 0.5;
}

.footer-col a:hover {
    color: var(--accent-color, #b5d7e9);
}

.hq-info {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}

.hq-location {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.copyright-text {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom-giant {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
    overflow: hidden;
}

.giant-footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11vw;
    line-height: 1;
    margin: 0;
    color: #ffffff;
    opacity: 0.08;
    white-space: nowrap;
    letter-spacing: 0.05em;
    user-select: none;
    display: flex;
    justify-content: center;
}

.giant-footer-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
    will-change: transform, opacity;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-links-row {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-circle-btn {
        width: 120px;
        height: 120px;
    }
    .footer-links-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .giant-footer-text {
        font-size: 15vw;
    }
}
