.elite-footer {
    background: #ffffff; /* changed to white */
    color: #0d9488;
    position: relative;
    overflow: hidden;
    border-top:2px solid #0d9488;
}

.elite-overlay {
    display: none; /* optional: hide the SVG overlay since background is now white */
}

.footer-top {
    position: relative;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    position: relative;
    padding: 30px 0;
    background: rgba(20, 184, 166, 0.05); /* subtle shade */
}

.footer-card {
    background: rgba(20, 184, 166, 0.02);
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    color: #0f766e;
}

.footer-card:hover {
    transform: translateY(-5px);
    background: rgba(20, 184, 166, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer-title {
    color: #14b8a6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #14b8a6;
}

.company-info p {
    color: #0f766e;
    line-height: 1.8;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #0f766e;
}

.contact-list i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    border-radius: 8px;
    margin-right: 12px;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-links a {
    color: #0f766e;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.quick-links a:hover {
    color: #14b8a6;
    transform: translateX(5px);
}

.quick-links i {
    font-size: 12px;
    margin-right: 8px;
}

.social-payment-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #14b8a6;
    color: #fff;
    transform: translateY(-3px) rotate(8deg);
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: #0f766e;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #14b8a6;
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    color: #0f766e;
    margin: 0;
}

@media (max-width: 768px) {
    .social-payment-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }
}
