/* ============================================
   FOOTER — Site footer, Newsletter, Social Links
   Loaded on ALL pages
   ============================================ */

.site-footer {
    background: #1a1a2e;
    color: white;
    margin-top: auto;
}

.footer-main {
    padding: 30px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 10px;
    color: white;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.5;
}

/* Footer Quick Links */
.footer-col ul,
.footer-col li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: inline-block;
    padding: 4px 0;
}

.footer-col a:hover {
    color: #ff6b00;
}

.footer-col li {
    margin-bottom: 6px;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 6px;
    opacity: 0.8;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 12px 24px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #c73652;
}

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

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e94560;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}