/* Footer Styles */
footer {
    background: linear-gradient(to bottom, #2c3e50, #1a252f);
    color: white;
    padding: 4rem 0 1rem 0;
    margin-top: 4rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 3rem;
    padding: 0 2rem;
}

/* About Section */
.footer-section.about h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #3498db;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Links Section */
.footer-section.links h3 {
    color: #3498db;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.two-column-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.two-column-links ul li {
    margin-bottom: 0.8rem;
}

.two-column-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.two-column-links ul li a:before {
    content: '›';
    margin-right: 8px;
    color: #3498db;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.two-column-links ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.two-column-links ul li a:hover:before {
    transform: translateX(3px);
}

/* Connect Section */
.footer-section.connect {
    text-align: center;
}

.footer-section.connect h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

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

.social-icons a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a:hover:before {
    transform: translateY(0);
}

.social-icons a.facebook:hover { background: #1877f2; }
.social-icons a.instagram:hover { background: #e4405f; }
.social-icons a.twitter:hover { background: #1da1f2; }
.social-icons a.whatsapp:hover { background: #25d366; }

/* Newsletter */
.newsletter {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.newsletter h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: #3498db;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #3498db;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #2980b9;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-section.connect {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-section.connect {
        grid-column: auto;
    }
    .two-column-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
    .footer-section {
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
}
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1rem;
    line-height: 2 !important;
}

.contact-info i {
    color: #3498db;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

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

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

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons a.facebook:hover {
    background: #1877f2;
}

.social-icons a.instagram:hover {
    background: #e4405f;
}

.social-icons a.twitter:hover {
    background: #1da1f2;
}

.social-icons a.whatsapp:hover {
    background: #25d366;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section ul li a:hover {
        transform: none;
    }
}
