/* ========================================
   FOOTER STYLES
======================================== */
.footer {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.social-links {
   display: flex;
   gap: 1rem;
   margin-top: 1rem;
}

.social-link {
   display: flex !important;
   width: 40px;
   height: 40px;
   background: #c8a882;
   border-radius: 50%;
   align-items: center;
   justify-content: center;
   color: white;
   transition: all 0.3s ease;
   margin-bottom: 0 !important;
}

.social-link:hover {
   background: #b8956b;
   transform: translateY(-2px);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icons {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}

.social-icon {
   color: #2c3e50;
   text-decoration: none;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.social-icon i {
   font-size: 1.2rem;
   color: #c8a882;
}

.social-icon:hover {
   color: #c8a882;
   transform: translateX(5px);
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c8a882;
    font-weight: 500;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #c8a882;
    font-weight: 500;
}

.footer-section p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section a {
   color: #2c3e50;
   text-decoration: none;
   display: block;
   margin-bottom: 0.5rem;
   transition: color 0.3s ease;
}

.footer-section .social-link {
   color: #ffffff;
}

.footer-section a:hover {
   color: #c8a882;
   font-weight: 500;
}

.footer-bottom {
   border-top: 1px solid #dee2e6;
   padding-top: 2rem;
   text-align: center;
}

.footer-bottom p {
   color: #6c757d;
   margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
   .footer-content {
       grid-template-columns: 1fr;
       gap: 2rem;
       text-align: center;
   }
   
   .social-links {
       justify-content: center;
   }
   
   .social-icons {
       align-items: center;
   }
}
