/* Contact Page Styles */

.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.page-label {
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
}

.page-title {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 32px;
    color: var(--text-main);
}

.page-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    padding: 100px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.form-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-box {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-muted);
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.campaign-badge {
    background: linear-gradient(135deg, #0058a5 0%, #003366 100%);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-icon {
    font-size: 2rem;
}

.campaign-badge strong {
    display: block;
    margin-bottom: 4px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-jp);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 40px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 300px;
}

.notification-error .notification-content {
    border-left: 4px solid #e74c3c;
}

.notification-success .notification-content {
    border-left: 4px solid #27ae60;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-main);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    color: var(--text-main);
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.success-modal-content {
    position: relative;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    margin: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #27ae60;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.success-modal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-close-modal {
    min-width: 120px;
}

.checkbox-group.error .checkbox-label {
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .notification {
        left: 20px;
        right: 20px;
    }
    
    .notification-content {
        min-width: auto;
    }
}
