/* Contact / Coming Soon Section Styling */
.contact-coming-soon-section {
    background-color: #000000;
    padding-top: 80px;
    padding-bottom: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.coming-soon-title {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

.contact-main-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 35px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: #333333;
}

.contact-info-card {
    background-color: #f7f7f7;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header-padding {
    padding: 24px 24px 10px 24px;
}

.contact-info-title {
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.info-details-box {
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
}

.info-item {
    color: #333333;
    font-size: 14px;
}

.info-icon {
    font-size: 15px;
    margin-right: 6px;
    display: inline-block;
}

.info-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.info-link:hover {
    color: #78A865;
}

.info-item-header {
    color: #000000;
    font-size: 14px;
}

.info-item-sub {
    font-size: 13.5px;
    color: #666666 !important;
}

.contact-map-wrapper {
    width: 100%;
    height: auto;
    flex-grow: 1;
    display: flex;
    min-height: 220px;
}

.contact-map-iframe {
    border: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
}

/* Contact Form Underline Inputs */
.form-underline-label {
    display: block;
    color: #555555;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.form-underline-input {
    width: 100%;
    max-width: 280px;
    border: none;
    border-bottom: 1.5px solid #1a1a1a;
    border-radius: 0;
    padding: 6px 0 8px 0;
    font-size: 14px;
    color: #222222;
    background: transparent;
    outline: none;
    transition: border-color 0.25s ease;
}

.message-field-wrapper {
    margin-bottom: 80px !important;
}

.form-underline-input.message-input {
    padding-bottom: 65px;
}

.form-underline-input:focus {
    border-bottom-color: #78A865;
}

.form-underline-input::placeholder {
    color: #aaaaaa;
    font-size: 13px;
}

/* Bottom Divider Line using ::after pseudo-element */
.form-bottom-underline {
    position: relative;
    width: 100%;
    height: 1.5px;
    margin-top: 15px;
}

.form-bottom-underline::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 280px;
    max-width: 100%;
    height: 1.5px;
    background-color: #1a1a1a;
}

/* Radio buttons */
.custom-radio {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    cursor: pointer;
}

.radio-label {
    font-size: 13px;
    color: #444444;
    cursor: pointer;
}

.btn-send-message {
    background-color: #1a1a1a;
    color: #ffffff !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    width: 250px;
    max-width: 100%;
    padding: 12px 0;
    border-radius: 2px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-send-message:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .contact-main-card {
        padding: 35px 30px;
    }
}

@media (max-width: 575.98px) {
    .coming-soon-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .contact-main-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .contact-info-title {
        font-size: 24px;
    }
}
