/**
 * MORG Contact Page - Styles
 * EVERTONEスタイル準拠
 */

/* ========================================
   Hero Section
   ======================================== */
.contact-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('../../images/equipment/ssl-mixer.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
}

.contact-hero .hero-content {
    text-align: center;
    z-index: 1;
}

.contact-hero h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.contact-hero .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
}

/* ========================================
   Contact Container
   ======================================== */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.required {
    color: #FF6600;
    margin-left: 0.3rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6600;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

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

/* ========================================
   Checkbox
   ======================================== */
.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FF6600;
    border-color: #FF6600;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: #FF6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #ff7722;
    text-decoration: underline;
}

/* ========================================
   Form Buttons
   ======================================== */
.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-submit,
.btn-clear {
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.1em;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit {
    background: #FF6600;
    color: #fff;
    border: none;
}

.btn-submit:hover {
    background: #ff7722;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.btn-clear {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-clear:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* ========================================
   Alternative Contact
   ======================================== */
.alternative-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.alternative-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    color: #FF6600;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ff7722;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 30vh;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

    .contact-container {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-submit,
    .btn-clear {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 0.8rem 1rem;
    }
}
