/* ========================================
   Japan Cruises - Subpage Styles
   ======================================== */

.page-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
    color: var(--primary-light);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.page-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

/* Company Page */
.company-section {
    margin-bottom: 32px;
}

.company-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--secondary);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.info-table th,
.info-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.info-table th {
    width: 30%;
    background: var(--bg-card);
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.88rem;
}

.info-table td {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.philosophy-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.philosophy-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.philosophy-box p:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.map-placeholder {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border-light);
}

.map-placeholder p {
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Contact Page */
.contact-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--secondary);
}

.contact-info-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Contact Form */
.contact-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-group label .required {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-left: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

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

.submit-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* FAQ Page */
.faq-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--secondary);
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: #eef2f6;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-toggle {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 16px 20px 16px 60px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Privacy Page */
.privacy-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--secondary);
}

.privacy-section p {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.privacy-section ul {
    margin-bottom: 16px;
    margin-left: 24px;
    list-style: disc;
}

.privacy-section ul li {
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sitemap */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.sitemap-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.sitemap-col ul li {
    margin-bottom: 8px;
}

.sitemap-col ul li a {
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sitemap-col ul li a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
}

.sitemap-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Law Page */
.law-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--secondary);
}

/* Terms Page */
.terms-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--secondary);
}

.terms-section p {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 640px) {
    .page-content {
        padding: 20px;
    }
    
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }
    
    .info-table th {
        background: none;
        padding-bottom: 4px;
        border-bottom: none;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}
