/* ===== FOOTER PRO ===== */
.footer-pro {
    background: #3b433a;
    color: #ddd;
    font-family: Arial, sans-serif;
    padding-top: 60px;
    position: relative;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

/* Column */
.footer-column h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}
.footer-column h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #ffd740;
    margin-top: 5px;
}

.footer-column p,
.footer-column a,
.footer-column li {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: #ffd740;
}

/* Explore List */
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
}

/* Recent Posts */
.recent-post {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.recent-post img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}
.recent-post a {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    margin-top: 15px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}
.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #fff;
}
.subscribe-form button {
    background: #ffd740;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s;
}
.subscribe-form button:hover {
    background: #ffb300;
}

/* Social Links */
.social-links a {
    display: inline-block;
    margin-right: 8px;
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
}
.social-links a:hover {
    color: #ffd740;
}

/* Footer Bottom */
.footer-bottom {
    background: #2d322a;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .recent-post {
        justify-content: center;
    }
}
