/* ==================================================
    Contact Us Page Custom Styles (Light Theme)
================================================== */

.custom-contact-page {
    padding: 120px 0;
    background-color: #f8f9fa; /* Light grey background */
    color: #333333;
}

.custom-contact-page .contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.custom-contact-page .contact-header h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111111; /* Dark text */
}

.custom-contact-page .contact-header p {
    font-size: 18px;
    color: #555555; /* Muted text */
    max-width: 600px;
    margin: 0 auto;
}

/* Form Styles */
.custom-contact-form-wrapper {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.custom-contact-form .form-group {
    margin-bottom: 25px;
}

.custom-contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333333;
}

.custom-contact-form .form-control {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e0e6ed;
    color: #333333;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.custom-contact-form .form-control:focus {
    background: #ffffff;
    border-color: #8DC63F;
    outline: none;
    box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.15);
}

.custom-contact-form .form-control::placeholder {
    color: #999999;
}

.custom-contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.custom-contact-form select.form-control option {
    background: #ffffff;
    color: #333333;
}

.custom-submit-btn {
    display: inline-block;
    width: 100%;
    background: linear-gradient(90deg, #8DC63F 0%, #309B74 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

.custom-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(48, 155, 116, 0.3);
}

/* Contact Info Side */
.contact-info-card {
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.08) 0%, rgba(48, 155, 116, 0.08) 100%);
    border: 1px solid rgba(141, 198, 63, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 30px;
    color: #111111;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #8DC63F 0%, #309B74 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 18px;
    color: #111111;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-text p, .contact-info-text a {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: none;
}

.contact-info-text a:hover {
    color: #8DC63F;
}

@media (max-width: 991px) {
    .custom-contact-page {
        padding: 80px 0;
    }
    .custom-contact-form-wrapper {
        padding: 30px;
        margin-top: 40px;
    }
}
