/* Form Container */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px 35px 20px 35px;  
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/* Remove default spacing */
.wpcf7-form p {
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
}

/* Labels */
.wpcf7-form label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #2d5a27 !important;
    margin-bottom: 5px !important;
    font-family: inherit !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
}

/* ALL INPUTS */
html body .wpcf7-form .wpcf7-form-control-wrap input[type="text"],
html body .wpcf7-form .wpcf7-form-control-wrap input[type="email"],
html body .wpcf7-form .wpcf7-form-control-wrap input[type="tel"],
html body .wpcf7-form .wpcf7-form-control-wrap input[type="date"],
html body .wpcf7-form .wpcf7-form-control-wrap input[type="number"],
html body .wpcf7-form .wpcf7-form-control-wrap textarea {
    width: 100% !important;
    padding: 16px 18px !important;
    margin-bottom: 8px !important;
    border: 2px solid #c8e6c0 !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
    color: #333 !important;
    background: #f9fdf7 !important;
    transition: all 0.3s ease !important;
    height: 54px !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Textarea */
html body .wpcf7-form .wpcf7-form-control-wrap textarea {
    height: 130px !important;
    resize: vertical !important;
    padding-top: 14px !important;
    margin-bottom: 8px !important;
}

/* Hover */
html body .wpcf7-form .wpcf7-form-control-wrap input:hover,
html body .wpcf7-form .wpcf7-form-control-wrap textarea:hover {
    border-color: #2d6a2d !important;
}

/* Focus */
html body .wpcf7-form .wpcf7-form-control-wrap input:focus,
html body .wpcf7-form .wpcf7-form-control-wrap textarea:focus {
    border-color: #2d6a2d !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(45,106,45,0.1) !important;
}

/* Submit Button */
html body .wpcf7-form input[type="submit"],
html body .wpcf7-form .wpcf7-submit {
    width: 100% !important;
    padding: 16px !important;
    background: #2d6a2d !important;
    border: none !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    margin-top: 2px !important;
    height: 54px !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

html body .wpcf7-form input[type="submit"]:hover,
html body .wpcf7-form .wpcf7-submit:hover {
    background: #1a4a1a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(45,106,45,0.3) !important;
}

/* Inline Fields */
.inline-fields {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
}

.inline-fields .wpcf7-form-control-wrap {
    flex: 1 !important;
}

/* Date Input */
html body .wpcf7-form .wpcf7-form-control-wrap input[type="date"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-color: #f9fdf7 !important;
    height: 54px !important;
}

/* Error */
.wpcf7-not-valid-tip {
    color: #c0392b !important;
    font-size: 12px !important;
    margin-top: 2px !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* Success/Error Message */
.wpcf7-response-output {
    margin-top: 10px !important;
    padding: 14px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    text-align: center !important;
    border: none !important;
    background: #eaf5e4 !important;
    color: #1a4a1a !important;
}

/* Mobile */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 20px !important;
    }
    .inline-fields {
        flex-direction: column !important;
    }
}
