/* ==========================================================================
   Dr. Rizvi College of Law - Footer Theme
   Maroon / Gold / Navy professional law college design
   ========================================================================== */

.footer-content {
    background: linear-gradient(135deg, #1a2e47 0%, #0d1f2d 100%);
    color: #e8f0f8;
    border-top: 3px solid #d4af37;
    padding: 50px 0 0;
}

.footer-content .container {
    padding: 0 20px;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #e6c850);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #c9d6e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 6px;
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 12px;
    margin: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    font-size: 18px;
}

.social-links a:hover {
    background: #d4af37;
    color: #1a2e47;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.footer-content p {
    color: #c9d6e0;
    line-height: 1.6;
    font-size: 14px;
    margin: 0 0 15px 0;
}

/* About section */
.about-section {
    background: rgba(212, 175, 55, 0.08);
    padding: 20px;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
    margin-bottom: 18px;
}

.about-section p {
    margin: 0;
}

/* Newsletter */
.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #e8f0f8;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(232, 240, 248, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input-group {
    display: flex;
    width: 100%;
}

.btn-subscribe {
    background: #d4af37;
    color: #1a2e47;
    border: none;
    padding: 10px 18px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.btn-subscribe:hover {
    background: #e6c850;
    transform: translateX(2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Footer bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 40px;
    padding: 20px 0;
}

.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #c9d6e0;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        padding: 35px 0 0;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }
}

