*{
    scrollbar-width: thin;
}
.contact-section {
    margin-top: 100px;
    padding: 40px 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.contact-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.contact-item:hover {
    transform: translateX(10px);
}
.contact-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.contact-icon svg {
    stroke: white;
}
.contact-icon.whatsapp {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}
.contact-icon.phone {
    background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
}
.contact-icon.email {
    background: linear-gradient(135deg, #D84315 0%, #BF360C 100%);
}
.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.contact-bar {
    flex: 1;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}
.contact-item:hover .contact-bar {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background-color: #f9f9f9;
}
.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}
.contact-item:hover .contact-icon.whatsapp {
    background: linear-gradient(135deg, #075E54 0%, #054740 100%);
}
.contact-item:hover .contact-icon.phone {
    background: linear-gradient(135deg, #0D47A1 0%, #01579B 100%);
}
.contact-item:hover .contact-icon.email {
    background: linear-gradient(135deg, #BF360C 0%, #A02A0A 100%);
}
@media (max-width: 600px) {
    .contact-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    .contact-bar {
        padding: 15px 20px;
    }
    .contact-label {
        font-size: 12px;
    }
    .contact-info {
        font-size: 16px;
    }
    .contact-section h1 {
        font-size: 28px;
    }
}
