.cd-footer-wrapper {
    background-color: var(--cd-primary, #005baa);
    color: #fff;
    padding: 40px 0 0 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cd-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.cd-footer-col {
    display: flex;
    flex-direction: column;
}

.cd-footer-logo img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    margin-bottom: 20px;
}

.cd-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    display: inline-block;
}

.cd-footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.cd-footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.cd-footer-contact-item .dashicons {
    margin-right: 10px;
    font-size: 18px;
    width: 20px;
    height: 20px;
}

.cd-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.cd-footer-social a {
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cd-footer-social a:hover {
    background: rgba(255,255,255,0.3);
}

.cd-footer-social .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.cd-footer-copyright {
    background-color: rgba(0,0,0,0.2);
    padding: 15px 0;
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cd-footer-copyright a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.cd-footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cd-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cd-footer-title {
        display: inline-block;
        margin: 0 auto 15px auto;
    }

    .cd-footer-contact-item {
        justify-content: center;
    }

    .cd-footer-social {
        justify-content: center;
    }
}
