/* ============================================
   Footer Styles - Professional Modern Design
   ============================================ */
.footer {
    background: #000;
    color: #ecf0f1;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(82, 201, 122, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section:first-child {
    padding-right: 30px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #27ae60, #52c97a);
    border-radius: 2px;
}

.footer-section:first-child h4::after {
    width: 50px;
}

.footer-section:first-child .footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section:first-child .footer-logo::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #27ae60, #52c97a);
    border-radius: 2px;
    display: inline-block;
}

.footer-section:first-child p {
    color: #bdc3c7;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: transform 0.2s ease;
    overflow: hidden;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #27ae60, #52c97a);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section ul li:hover::before {
    transform: translateY(-50%) scaleX(1);
    height: 60%;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1.6;
    white-space: nowrap;
    word-break: keep-all;
}

.footer-section ul li a:hover {
    color: #52c97a;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p strong {
    color: #fff;
    font-weight: 600;
    min-width: 60px;
}

.footer-contact p a {
    color: #52c97a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact p a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 13px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(82, 201, 122, 0.5), transparent);
}

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

/* ============================================
   Footer Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section:first-child {
        grid-column: 1;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }
}