/* Custom Contact Page Styles */

/* Why Collaborate Section - Scoped to Contact Page only */
.contact-features.dream-area {
    background-color: #f9f9f9;
    /* Light grey background for section distinction */
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
}

.contact-features .dream-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-features .dream-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #23b187;
}

.contact-features .dream-item h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.contact-features .dream-item h3 a {
    color: #302c51;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-features .dream-item:hover h3 a {
    color: #23b187;
}

.contact-features .dream-item p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Fix for Numbers being hidden - SCOPED to contact page */
.contact-features .dream-item h4 {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(35, 177, 135, 0.1);
    margin: 0;
    line-height: 1;
    user-select: none;
    z-index: 0;
}

/* Contact Form Section */
.contact-area {
    background-color: #fff;
}

.contact-area form {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
    /* Enhanced shadow */
}

/* Enforce Form Styling */
.contact-area form h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #302c51 !important;
    text-align: center;
    font-weight: 700;
}

.contact-area form p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #555 !important;
    font-size: 16px;
}

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

/* Force light inputs for better contrast/professional look */
.contact-area .form-control {
    background-color: #f8f9fa !important;
    border: 2px solid #eaedff !important;
    color: #302c51 !important;
    height: 60px;
    padding-left: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 15px;
}

.contact-area .form-control::placeholder {
    color: #888 !important;
    opacity: 1;
}

.contact-area .form-control:focus {
    background-color: #fff !important;
    border-color: #23b187 !important;
    box-shadow: 0 5px 15px rgba(35, 177, 135, 0.1);
}

.contact-area textarea.form-control {
    height: auto;
    padding-top: 20px;
    min-height: 150px;
}

/* Labels with icons */
.contact-area .form-group label {
    display: none;
    /* Hide default label icons if they clutter, or style them better */
}

/* Checkbox styling */
.agree-label label {
    color: #666;
    font-size: 15px;
}

.agree-label a {
    color: #23b187;
    font-weight: 600;
}

/* Submit Button */
.contact-area .common-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    background-color: #23b187;
    color: #fff;
    border: none;
    transition: 0.3s;
    margin-top: 10px;
}

.contact-area .common-btn:hover {
    background-color: #302c51;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(48, 44, 81, 0.2);
}