
/* contact */
h1, h2, i{
    color: #2e2e2e;
}
.contact-container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 20px;
}

.contact-container h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-container p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 300px;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
 .contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 300px;
    min-width: 280px;
}


.contact-form form {
    display: flex;
    flex-direction: column;
}
/* .contact-form .row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .row input {
    flex: 1;
} */

/* Responsive: stack vertically on small screens */
@media (max-width: 600px) {
    .contact-form .row {
        flex-direction: column;
    }
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    padding: 12px;
    border: none;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #218838;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
    text-align: left;
}

.contact-info i {
    margin-right: 8px;
}

.contact-info .buttons i {
    margin-right: 8px;
    color: #ffffff;
}


.contact-info .social-icons i{
    margin-right: 8px;
}

.buttons {
    margin-top: 20px;
}

.buttons a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.call-btn {
    background-color: #007bff;
}

.call-btn:hover {
    background-color: #0069d9;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #555;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #28a745;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    .buttons a {
        margin-bottom: 10px;
    }
    .social-icons {
        text-align: center;
    }
}
