/* Footer Styles - 2 sections per column on mobile */
.spm-footer {
    background-color: #010b14;
    color: #ecf0f1;
    padding: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.spm-footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns by default */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.spm-footer-col {
    margin-bottom: 1.5rem;
}

.spm-footer-title {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.spm-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #f39c12;
}

.spm-footer-about {
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.spm-social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.spm-social-link {
    color: #ecf0f1;
    background: #34495e;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.spm-social-link:hover {
    background: #f39c12;
    color: #2c3e50;
}

.spm-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spm-footer-item, 
.spm-footer-contact {
    margin-bottom: 0.6rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.spm-footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.spm-footer-link:hover {
    color: #f39c12;
    transform: translateX(3px);
}

.spm-footer-icon {
    margin-right: 0.5rem;
    color: #f39c12;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.spm-footer-legal {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    margin-top: 1.5rem;
    grid-column: 1 / -1; /* Full width */
}

.spm-footer-copyright {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.8rem;
}

.spm-footer-heart {
    color: #e74c3c;
}

/* Tablet Layout - 4 columns */
@media (min-width: 600px) {
    .spm-footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop adjustments */
@media (min-width: 992px) {
    .spm-footer-content {
        gap: 3rem;
    }
    
    .spm-footer-title {
        font-size: 1.2rem;
    }
    
    .spm-footer-about,
    .spm-footer-item,
    .spm-footer-contact {
        font-size: 1rem;
    }
}