/* Footer Fix Styles */
.footer {
    background: linear-gradient(to bottom, #2d5d99, #1e3a8a);
    color: #fff;
    padding: 70px 0 40px;
    margin-top: 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-section p {
    margin-top: 18px;
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.05);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 22px;
    font-size: 1.15rem;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-links li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: -1px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 3px;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.85;
    font-size: 0.95rem;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.footer-contact p:first-of-type::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 0;
}

.footer-contact p:nth-of-type(2)::before {
    content: '📱';
    position: absolute;
    left: 0;
    top: 0;
}

.footer-contact p:last-of-type::before {
    content: '✉️';
    position: absolute;
    left: 0;
    top: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-legal p {
    margin-bottom: 18px;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal-links {
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-legal-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.9;
    padding: 0 15px;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* Social Icons Styles */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

/* Newsletter Styles */
.newsletter {
    margin-top: 25px;
}

.newsletter h5 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background-color: #4a9af8;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2f8bff;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: 1/-1;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        width: 30px;
    }
    
    .footer-links li {
        padding-left: 12px;
    }
    
    .footer-links li::before {
        font-size: 16px;
    }
    
    .footer-contact p {
        padding-left: 24px;
    }
    
    .footer-contact p::before {
        font-size: 14px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-links ul {
        text-align: left;
        display: inline-block;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li {
        padding-left: 10px;
    }
    
    .footer-links li::before {
        font-size: 14px;
    }
    
    .footer-contact p::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        padding-left: 0;
        text-align: center;
    }
} 