.footer {
    background: linear-gradient(to bottom, #000, #1a1a1a);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-sections-container {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-sections-container::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

.footer-section {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.footer-section .contact-info p {
    font-size: 0.85rem !important;
}

.footer-section .contact-info i {
    font-size: 0.95rem !important;
}

.footer-section h3 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    transform: scaleX(0.7);
    transition: transform 0.3s ease;
}

.footer-section:hover h3::after {
    transform: scaleX(1);
}

.footer-section p {
    margin: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    line-height: 1.2;
    white-space: nowrap;
    font-size: 0.85rem;
}

.social-link i {
    font-size: 0.95rem;
    width: 14px;
    text-align: center;
    margin-right: 0.4rem;
}

.social-link span {
    font-size: 0.85rem;
}

.social-link:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Specific colors for each platform */
.social-link .fa-facebook { color: #1877f2; }
.social-link .fa-instagram { color: #e4405f; }
.social-link .fa-linkedin { color: #0077b5; }

.social-link:hover .fab {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.copyright-text {
    font-size: 0.75rem;  /* Even smaller */
    color: #ffffff;
    margin: 0;
    font-weight: normal;
}

@media (max-width: 768px) {
    .footer-sections-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
        max-width: none;
    }
}
