.contact-section {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }
}


.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.social-link {
    color: var(--primary-color);
    font-size: 3.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
}

.social-link .fab {
    transition: color 0.3s ease;
}

.social-link .fa-facebook:hover {
    color: #1877F2;
}

.social-link .fa-instagram:hover {
    color: #E4405F;
}

.social-link .fa-linkedin:hover {
    color: #0A66C2;
}

.social-link .fa-twitter:hover {
    color: #1DA1F2;
}

@media (max-width: 768px) {
    .social-icons {
        gap: 2.5rem;
    }
    
    .social-link {
        font-size: 2.8rem;
    }

    .social-title {
        font-size: 1.8rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    display: block;
    position: absolute;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: waves 2s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

@keyframes waves {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}