/* CONTACT SECTION MAIN */
.phone-number {
    font-family: Arial, sans-serif;
    font-size: 16px;
    /* optional */
    color: #333;
    /* optional */
}

.contact-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    width: 40%;
}

.contact-info h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #7b8b5e;
}

.info-block {
    margin-bottom: 25px;
}

.info-block i {
    margin-right: 8px;
    color: #7b8b5e;
}

/* FORM STYLES */

.contact-form {
    width: 70%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.input-group {
    display: flex;
    gap: 15px;
}

.input-group input {
    width: 50%;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.send-btn {
    background: #7b8b5e;
    border: none;
    padding: 14px 30px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.send-btn:hover {
    background: #7b8b5e;
}

.contact-section h4 i {
    color: #7b8b5e;

    font-size: 20px;
}

.contact-section p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-section .form-control {
    border-radius: 6px;
    padding: 25px 15px;
    font-size: 15px;
}

.contact-section .form-control:focus {
    border-color: #7b8b5e;

    box-shadow: 0 0 5px rgba(38, 198, 218, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group input {
        width: 100%;
    }
}

/* SMOOTH FADE-UP EFFECT */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity !important;
}

/* CARD HOVER EFFECT FOR FORM + INFO */
.contact-section .col-md-6 {
    transition: 0.4s ease;
}

.contact-section .col-md-6:hover {
    transform: translateY(-6px);
}

/* INPUT ANIMATION */
.contact-section .form-control {
    transition: 0.3s ease-in-out;
}

.contact-section .form-control:hover {
    border-color: #7b8b5e;
}

.contact-section .form-control:focus {
    border-color: #7b8b5e;
    box-shadow: 0 8px 20px rgba(123, 139, 94, 0.25);
    transform: scale(1.02);
}

/* BUTTON HOVER EFFECT */
button.btn {
    transition: 0.4s ease;
}

button.btn:hover {
    background: #657750 !important;
    color: black !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 139, 94, 0.3);
}

/* FOOTER HOVER EFFECT */
.footer-col {
    transition: 0.4s ease;
}

.footer-col:hover {
    transform: translateY(-5px);
}

/* SOCIAL ICON ANIMATION */
.social-icons a {
    display: inline-block;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #7b8b5e;
}
.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Optional: smaller height on mobile */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}