/* Contact Section */
.contact-us-section {
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    min-height: 100vh; 
    background-color: #f8f8f8; 
    padding-bottom: 6rem;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    padding: 1.5rem;
}

/* Contact Information */
.contact-info p,
.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.contact-phone,
.contact-address {
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-directions {
    font-size: .85rem;
    color: #9f9f9f;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
	margin-bottom: 2rem;
}

/* GET DIRECTIONS Link */
.directions-link {
	font-size: 1rem;
    text-decoration: none; 
    color: #bcbcbc; 
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.directions-link:hover {
    color: #555;
    transform: translateY(-2px); 
    text-decoration: none; 
}

/* Icon Pin Styling */
.icon-pin {
    margin-right: 0.5rem;
    color: grey; 
    font-size: 1.2rem; 
    vertical-align: middle;
}


/* Contact Form */
.form-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form label {
    display: block;
    text-align: left;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none; /* Prevent resizing */
}

.send-message-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    color: #fff;
    background-color: #555;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-message-btn:hover {
    background-color: #333;
}

.contact-info p {
    text-align: center;
}



/* ======================
   TNAHKS MODAL
   ====================== */


.thankyou-modal {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    /* Align center */
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-overlay.active {
    display: flex;
    /* Show modal when active class is added */
}

/* Modal Content */
.modal-content-sign-up {
    background-color: #fff;
    padding: 2rem;
    font-size: 1rem;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #555;
}

.modal-close:hover {
    color: #007BFF;
}


@media (max-width: 600px) {
    .modal-content {
        width: 85%;
        padding: 2rem;
        max-height: 90%;
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }
}
