
/* Inquiry Form Styles - All selectors prefixed with jprop_ to avoid conflicts */
.jprop_detail_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #fff;
}

/* Breadcrumb Navigation */
.jprop_breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.jprop_breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.jprop_breadcrumb a:hover {
    color: #ff4d4d;
    text-decoration: underline;
}

/* Inquiry Container */
.jprop_inquiry_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.jprop_inquiry_title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}

/* Form Sections */
.jprop_inquiry_section {
    margin-bottom: 40px;
}

.jprop_section_title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: #222;
}

.jprop_section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #ff4d4d);
    border-radius: 3px;
}

.jprop_form_divider {
    height: 1px;
    background-color: #eee;
    margin: 40px 0;
}

/* Form Groups */
.jprop_form_group {
    margin-bottom: 30px;
}

.jprop_form_label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.jprop_required {
    display: inline-block;
    background-color: #ff4d4d;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: normal;
}

/* Checkbox and Radio Styles */
.jprop_checkbox_group, .jprop_radio_group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.jprop_checkbox_label, .jprop_radio_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 5px 0;
}

.jprop_checkbox_label:hover, .jprop_radio_label:hover {
    color: #ff4d4d;
}

.jprop_checkbox_text, .jprop_radio_text {
    margin-left: 8px;
    font-size: 15px;
}

/* Input Styles */
.jprop_input, .jprop_textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.jprop_input:focus, .jprop_textarea:focus {
    border-color: #ff4d4d;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.1);
    outline: none;
}

.jprop_textarea {
    resize: vertical;
    min-height: 150px;
}

.jprop_form_note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

/* Contact Fields */
.jprop_contact_fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jprop_form_subgroup {
    width: 100%;
}

.jprop_sublabel {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}

/* Property Card in Inquiry Form */
.jprop_property_card_large {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.jprop_property_card_large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.jprop_property_card_content {
    display: flex;
    padding: 20px;
}

.jprop_property_card_info {
    flex: 1;
    padding-right: 20px;
}

.jprop_property_price {
    margin-bottom: 15px;
    font-size: 16px;
}

.jprop_price_main {
    font-size: 28px;
    font-weight: bold;
    color: #ff4d4d;
}

.jprop_price_detail {
    font-size: 14px;
    color: #666;
}

.jprop_property_details {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.jprop_property_details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.jprop_property_details i {
    color: #ff4d4d;
    margin-right: 8px;
    width: 16px;
}

.jprop_not_required {
    color: #ff4d4d;
    font-weight: 600;
}

.jprop_property_card_image {
    flex: 0 0 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.jprop_property_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jprop_property_card_image img:hover {
    transform: scale(1.05);
}

/* Privacy Policy */
.jprop_privacy_policy {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.jprop_privacy_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.jprop_privacy_content {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.jprop_privacy_content ul {
    padding-left: 20px;
    margin: 10px 0;
}

.jprop_privacy_content li {
    margin-bottom: 5px;
}

.jprop_privacy_agreement {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.jprop_agreement_label {
    font-weight: 600;
}

/* Submit Button */
.jprop_submit_container {
    text-align: center;
    margin-top: 40px;
}

.jprop_submit_btn {
    background: linear-gradient(135deg, #00857e, #00857e);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 18px 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jprop_submit_btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff3838);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 77, 77, 0.4);
}

.jprop_submit_btn i {
    margin-right: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .jprop_checkbox_group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jprop_contact_fields {
        flex-direction: row;
        gap: 30px;
    }
    
    .jprop_form_subgroup {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .jprop_inquiry_title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .jprop_section_title {
        font-size: 20px;
    }
    
    .jprop_property_card_content {
        flex-direction: column-reverse;
    }
    
    .jprop_property_card_info {
        padding-right: 0;
        padding-top: 20px;
    }
    
    .jprop_property_card_image {
        width: 100%;
        flex: 0 0 auto;
        height: 200px;
        margin-bottom: 15px;
    }
    
    .jprop_submit_btn {
        width: 100%;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .jprop_detail_container {
        padding: 15px;
    }
    
    .jprop_inquiry_title {
        font-size: 22px;
    }
    
    .jprop_section_title {
        font-size: 18px;
    }
    
    .jprop_form_label {
        font-size: 15px;
    }
    
    .jprop_input, .jprop_textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .jprop_checkbox_text, .jprop_radio_text {
        font-size: 14px;
    }
    
    .jprop_privacy_policy {
        padding: 20px;
    }
    
    .jprop_privacy_title {
        font-size: 16px;
    }
    
    .jprop_privacy_content {
        font-size: 13px;
    }
    
    .jprop_submit_btn {
        font-size: 16px;
    }
}
