 /* Contact Section */
.contact-three {
    background-color: #f9f9f9;
    padding: 100px 0;
}

/* Left Image */
.contact-three__left .contact-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-three__left .contact-img:hover {
    transform: scale(1.05);
}

/* Contact Card */
.contact-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Section Title */
.section-tagline {
    color: #00b3db;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: #1c5572;
    font-size: 34px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.3;
}

/* Form Labels */
.form-label {
    font-weight: 500;
    color: #5a5859;
    margin-bottom: 6px;
    display: block;
}

/* Form Inputs */
.contact-form .form-control {
    border: 2px solid #00b3db;
    border-radius: 12px;
    padding: 14px 16px;
    color: #1c5572;
    font-size: 16px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #1c5572;
    box-shadow: 0 0 12px rgba(0,179,219,0.3);
}

/* Submit Button */
.btn-submit {
    background-color: #00b3db;
    color: #fff;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1c5572;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .contact-three {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-card {
        padding: 30px;
    }
}
