/* Footer Section Block Styles */
.pmk-footer-section-block {
    background-color: var(--pmk-secondary);
    padding: 80px 0 30px;
    font-size: 17px;
}

/* Footer Grid */
.pmk-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Columns */
.pmk-footer-col {
    color: var(--pmk-white);
}

.pmk-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pmk-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Column */
.pmk-footer-logo img {
    max-height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.pmk-footer-desc {
    color: var(--pmk-white);
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 25px;
}

/* Social Links */
.pmk-footer-social {
    display: flex;
    gap: 15px;
}

.pmk-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pmk-social-link svg {
    width: 20px;
    height: 20px;
    color: var(--pmk-white);
}

.pmk-social-link:hover {
    background-color: var(--pmk-primary);
    border-color: var(--pmk-primary);
}

/* Footer Menu */
.pmk-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pmk-footer-menu li {
    margin-bottom: 12px;
}

.pmk-footer-menu a {
    color: var(--pmk-white);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.pmk-footer-menu a:hover {
    color: var(--pmk-primary);
}

/* Footer Contact */
.pmk-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pmk-footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--pmk-white);
    font-size: 17px;
}

.pmk-footer-contact li svg {
    width: 16px;
    height: 16px;
    color: var(--pmk-primary);
    flex-shrink: 0;
}

.pmk-footer-contact a {
    color: var(--pmk-white);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.pmk-footer-contact a:hover {
    color: var(--pmk-primary);
}

.pmk-footer-hours {
    align-items: flex-start !important;
}

.pmk-footer-hours svg {
    margin-top: 4px;
}

.pmk-footer-hours div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pmk-hours-note {
    font-size: 11px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    line-height: 1.4;
}

/* Footer Bottom */
.pmk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.pmk-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .pmk-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pmk-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pmk-footer-section-block {
        padding: 50px 0 20px;
    }
}
