

/* Add these styles to your contact.css */
.butons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.butons p {
    margin: 0;
    color: #666;
}
.whatsapp-btn {
    background-color: #25D366;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-btn:hover {
    background-color: #128C7E;
}
.service-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.barber-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.barber-hero p {
    font-size: 1.2rem;
}

.section-padding {
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
    font-weight: 700;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-info, .contact-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex: 1 1 400px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #444;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 1rem;
    color: #555;
}

.contact-item i {
    margin-right: 10px;
    color: #e74c3c;
    font-size: 1.2rem;
}

.contact-map iframe {
    margin-top: 20px;
    border-radius: 10px;
    width: 100%;
    height: 300px;
    border: none;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus {
    border-color: #e74c3c;
    outline: none;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    background:rgb(133, 43, 33);
}

.whatsapp-btn {
    background: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background:rgb(16, 104, 48);
}


.whatsapp-btn text:hover {
    background:rgb(255, 255, 255);
}

.butons {
    text-align: center;
    margin-top: 20px;
}

.butons p {
    margin: 15px 0;
    font-weight: 600;
    color: #666;
}



@media screen and (max-width: 768px) {
    .butons {
        flex-direction: column;
    }
    .container {
        width: 100%;
    }
    .section-padding {
         padding: 10px; 
    }
    .contact-info {
        padding: 5px;
    }
    .contact-container {
        align-items: flex-start;
        flex-direction: column;
    }
}
