/*
Theme Name: GeneratePress Child
Theme URI: https://designdrawingsconsultants.com
Description: Child theme for GeneratePress
Author: Your Name
Author URI: https://designdrawingsconsultants.com
Template: generatepress
Version: 1.0.0
Text Domain: generatepress-child
*/

@import url("../generatepress/style.css");
/* Light Blue Modern Form */
#wpforms-7 {
    max-width: 640px;
    margin: 40px auto;
    padding: 50px;
    background: linear-gradient(299deg, #14599d 0%, #ffffff 100%);
    border-radius: 18px;
    box-shadow: 
        0 10px 30px rgba(100, 149, 237, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    border: 1px solid rgba(173, 216, 230, 0.6);
}

/* Form Title */
#wpforms-7 .wpforms-title {
    color: #2a5d9f;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: -0.8px;
    position: relative;
}

#wpforms-7 .wpforms-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 30%;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, rgba(74,144,226,0) 0%, #4a90e2 50%, rgba(74,144,226,0) 100%);
}

/* Fields Container */
#wpforms-7 .wpforms-field-container {
    margin-bottom: 22px;
}

/* Labels */
#wpforms-7 .wpforms-field-label {
    font-weight: 600;
    color: #4a7bc1;
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 0.4px;
}

/* Input Fields - Crystal Clear */
#wpforms-7 input[type=text],
#wpforms-7 input[type=email],
#wpforms-7 input[type=number],
#wpforms-7 textarea {
    width: 100%;
    padding: 17px 22px;
    border: 1px solid rgba(173, 216, 230, 0.8);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.35s cubic-bezier(0.32, 0.94, 0.6, 1);
    background: rgba(255, 255, 255, 0.7);
    color: #2a5d9f;
    box-shadow: 
        0 4px 15px rgba(100, 149, 237, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Focus State - Soft Glow */
#wpforms-7 input[type=text]:focus,
#wpforms-7 input[type=email]:focus,
#wpforms-7 input[type=tel]:focus,
#wpforms-7 textarea:focus {
    border-color: #6babff;
    box-shadow: 
        0 0 0 3px rgba(107, 171, 255, 0.2),
        0 6px 20px rgba(100, 149, 237, 0.15);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Name Fields */
#wpforms-7 .wpforms-field-name-first,
#wpforms-7 .wpforms-field-name-last {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

#wpforms-7 .wpforms-field-name-first {
    margin-right: 4%;
}

/* Textarea */
#wpforms-7 textarea {
    min-height: 190px;
    resize: vertical;
    line-height: 1.7;
}

/* Submit Button - Floating Blue Gem */
#wpforms-7 .wpforms-submit {
    background: linear-gradient(135deg, #4a90e2 0%, #6babff 100%);
    color: white;
    border: none;
    padding: 19px 35px;
    font-size: 17px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.3, 0.9, 0.4, 1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: 100%;
    margin-top: 25px;
    box-shadow: 
        0 10px 25px rgba(74, 144, 226, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Button Hover Effect */
#wpforms-7 .wpforms-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #3a80d2 0%, #5b9bff 100%);
}

/* Placeholder Text */
#wpforms-7 ::placeholder {
    color: #9ab8e6;
    opacity: 1;
}

/* Success Message */
#wpforms-confirmation-7 {
    background: rgba(74, 144, 226, 0.1);
    color: #2a5d9f;
    padding: 22px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(74, 144, 226, 0.3);
    box-shadow: inset 0 0 15px rgba(74, 144, 226, 0.05);
}
/* experiment*/
.gb-container-7f72fc3d {
    position: static !important;
}

/* Responsive Design */
@media (max-width: 767px) {
    #wpforms-7 {
        padding: 35px 25px;
        border-radius: 14px;
    }
    
    #wpforms-7 .wpforms-title {
        font-size: 28px;
    }
    
    #wpforms-7 .wpforms-field-name-first,
    #wpforms-7 .wpforms-field-name-last {
        width: 100%;
    }
    
    #wpforms-7 .wpforms-field-name-first {
        margin-right: 0;
        margin-bottom: 22px;
    }
}
