/* Scoped to contact-page-section */
.contact-page-section {
    background-color: #f9f9f9;
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-info-header {
    background: #f2f2f2;
    padding: 35px 0;
}

.contact-box {
    position: relative;
    padding: 15px;
}

.contact-box.divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #dcdcdc;
}

.contact-box:last-child::after {
    display: none;
}

.icon-box {
    font-size: 28px;
    color: #6ec1e4;
    margin-right: 15px;
}

.info-text h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: #8c8c8c;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.info-text a {
    text-decoration: none;
    color: #111;
    transition: 0.3s;
}

.info-text a:hover {
    color: #6ec1e4;
}



/* Map Styling */
.contact-page-section .map-side .map-outer iframe{
  border-radius: 24px; 

}
.contact-page-section .map-side .map-outer {
    height: 100%;
    min-height: 500px;
    border: 1px solid #333;
    background: #eee;
    border-radius: 24px;
}

/* Form Side Styling */
.contact-page-section .form-side .inner-container {
    background: #fff;
    padding: 40px;
    border: 1px solid #333;
    border-radius: 20px;
}

.contact-page-section .form-group {
    margin-bottom: 20px;
}

.contact-page-section .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.contact-page-section .form-group input, 
.contact-page-section .form-group select, 
.contact-page-section .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Button Styling */
.contact-page-section .btn-private-pool {
    background-color: var(--btn-color, #000);
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-page-section .btn-private-pool:hover {
    opacity: 0.8;
}