/* Contact Page Styles */

/* Page Title */
.page-title {
    margin-top: 80px;
    background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-title-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: #FAFAFA;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Introduction */
.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-title {
    font-size: 2rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.intro-note {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.intro-link {
    color: #FF9E00;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #FF9E00;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.intro-link:hover {
    color: #FF8800;
    border-bottom-color: #FF8800;
}

/* Form */
.consultation-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.75rem;
}

.form-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    margin-top: -0.5rem;
}

.required {
    display: inline-block;
    background: #FF9E00;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E0E0E0;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF9E00;
    box-shadow: 0 0 0 3px rgba(255, 158, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232C3E50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-label:hover {
    border-color: #FF9E00;
    background: rgba(255, 158, 0, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: #FF9E00;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #2C3E50;
}

/* Submit Button */
.form-submit {
    margin-top: 3rem;
    text-align: center;
}

.btn-submit {
    background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.25rem 4rem;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
    font-family: 'Zen Maru Gothic', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Form Notes */
.form-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 0.75rem;
}

.form-notes p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 968px) {
    .page-title-content h1 {
        font-size: 2rem;
    }

    .intro-title {
        font-size: 1.7rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .consultation-form {
        padding: 2rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-title {
        padding: 3rem 1.5rem;
    }

    .page-title-content h1 {
        font-size: 1.7rem;
    }

    .contact-form-section {
        padding: 3rem 1rem;
    }

    .intro-title {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .consultation-form {
        padding: 1.5rem;
    }

    .form-label {
        font-size: 0.95rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .checkbox-label {
        padding: 0.65rem 0.85rem;
    }

    .checkbox-label span {
        font-size: 0.9rem;
    }

    .btn-submit {
        width: 100%;
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
    }

    .form-notes {
        padding: 1rem;
    }

    .form-notes p {
        font-size: 0.85rem;
    }
}
