/* Site Footer - Modern Design */
.site-footer-new {
    background: linear-gradient(135deg, #000035, #0a2e5a);
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

body.dark-mode .site-footer-new {
    background: linear-gradient(135deg, #000020, #0a2540);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 12px;
    opacity: 0.6;
}

/* Social Links */
.social-links-footer {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10b981;
    transform: translateY(-3px);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-link.twitter:hover {
    background: #1DA1F2;
}

.social-link.linkedin:hover {
    background: #0A66C2;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #000035;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info-item i {
    margin-top: 4px;
    color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .site-footer-new {
        padding: 30px 16px 16px;
    }
}

/* Policy Modal */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.policy-modal.active {
    display: flex;
}

.policy-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

body.dark-mode .policy-modal-content {
    background: var(--card-dark);
}

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .policy-modal-header {
    border-bottom-color: var(--border-dark);
}

.policy-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.policy-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--grey-dark);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.policy-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.policy-modal-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-primary);
}

body.dark-mode .policy-modal-body {
    color: var(--text-dark);
}

.policy-modal-body h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.policy-modal-body p {
    margin-bottom: 15px;
}

.policy-modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}