/* Contact Sections */
.contact-section{
    background: #E8F6E9;
    padding: 90px 0px;
    padding-bottom: 50px;
}


.contact-section-top {
    background-color: var(--light-bg);
    padding: 80px 0;
    padding-top: 30px;
}

.contact-section-bottom {
    padding: 80px 0;
    background-color: white;
    padding-top: 55px;
}

h2 {
    color: var(--dark-black-color);
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: 600;
}

p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* Contact Info Styles */
.info-item {
    margin-bottom: 1.5rem;
}

.info-item h5 {
    color: var(--dark-black-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    margin-bottom: 0;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group .required {
    color: var(--required-color);
    margin-left: 2px;
}

.form-control {
    padding: 0.8rem 1.2rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-control::placeholder {
    color: var(--muted-text);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(70, 182, 73, 0.15);
}

textarea.form-control {
    min-height: 120px;
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.8rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #3a9f3d;
    border-color: #3a9f3d;
    transform: translateY(-1px);
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.ratio-4x3 {
    --bs-aspect-ratio: 40%;
    /* 3/4 = 0.75 (75%) */
}

.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}