/* ===== Service Detail Pages ===== */
/* Reuses variables & components from style.css */

/* Serif font sync for English headings on detail pages */
.svc-cta-banner h2 {
    font-family: var(--font-serif);
}

/* ===== Service Hero ===== */
.svc-hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.svc-hero .label-mono {
    margin-bottom: 16px;
}

.svc-hero h1 {
    font-family: var(--font-kr);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.svc-hero-sub {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.svc-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border);
}

.svc-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svc-meta-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.svc-meta-value {
    font-family: var(--font-kr);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}

.svc-meta-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ===== Service Description (2-column) ===== */
.svc-description {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.svc-description-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.svc-description h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.svc-description-text p {
    color: var(--text-sub);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.svc-highlight-card {
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--border);
}

.svc-highlight-card h4 {
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.svc-highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.svc-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.svc-highlight-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--red);
    transform: rotate(45deg);
    margin-top: 7px;
}

/* ===== Pricing Card ===== */
.svc-pricing {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.svc-pricing h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.svc-pricing-card {
    max-width: 560px;
    padding: 40px 36px;
    border: 1px solid var(--red);
    background: var(--cream);
    position: relative;
}

.svc-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.svc-pricing-name {
    font-family: var(--font-kr);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.svc-pricing-amount {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 28px;
}

.svc-pricing-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    margin-bottom: 32px;
}

.svc-pricing-details li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-sub);
}

.svc-pricing-details li span:last-child {
    font-weight: 500;
    color: var(--text);
}

/* ===== Pricing Extras ===== */
.svc-pricing-vat {
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-top: -4px;
    margin-bottom: 8px;
}

.svc-pricing-includes-title {
    font-family: var(--font-kr);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.svc-pricing-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.svc-pricing-includes li {
    font-size: 0.85rem;
    color: var(--text-sub);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.svc-pricing-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent, #333);
}

/* ===== FAQ Section ===== */
.svc-faq {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.svc-faq h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.faq-list {
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    list-style: none;
    transition: color 0.3s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--red);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover { color: var(--red); }

.faq-answer {
    padding: 0 0 20px;
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.8;
}

/* ===== Other Services ===== */
.svc-other-services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.svc-other-services h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.svc-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-other-card {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    border: 1px solid var(--border);
    background: var(--cream);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.svc-other-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(162, 50, 40, 0.08);
}

.svc-other-card .svc-other-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s var(--ease);
}

.svc-other-card:hover .svc-other-name { color: var(--red); }

.svc-other-card .svc-other-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.svc-other-card .svc-other-price {
    font-family: var(--font-mono);
    font-size: 0.84rem;
    color: var(--red);
    font-weight: 500;
}

/* ===== Quote style ===== */
.svc-quote {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--red);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid var(--red);
}

/* ===== Note text (small disclaimer) ===== */
.svc-note-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ===== 6-step process grid ===== */
.svc-process-6 {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ===== Feedback section ===== */
.svc-feedback {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.svc-feedback h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.svc-feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.svc-feedback-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.svc-feedback-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.svc-feedback-card p {
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.7;
    font-style: italic;
}

/* ===== CTA Banner ===== */
.svc-cta-banner {
    padding: 80px 0;
    background: var(--red);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-cta-banner h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--cream);
    margin-bottom: 16px;
}

.svc-cta-banner p {
    color: rgba(244, 239, 233, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.svc-cta-banner .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--cream);
    color: var(--red);
    font-family: var(--font-kr);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--cream);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.svc-cta-banner .btn-cta:hover {
    background: transparent;
    color: var(--cream);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .svc-description-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-other-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-process-6 {
        grid-template-columns: 1fr 1fr !important;
    }

    .svc-feedback-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .svc-hero { padding: 110px 0 48px; }
    .svc-description,
    .svc-pricing,
    .svc-faq,
    .svc-feedback,
    .svc-other-services { padding: 56px 0; }
    .svc-cta-banner { padding: 56px 0; }

    .svc-process-6 {
        grid-template-columns: 1fr !important;
    }

    .svc-feedback-grid {
        grid-template-columns: 1fr;
    }

    .svc-hero h1 { font-size: 1.6rem; }

    .svc-hero-meta {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .svc-meta-divider { display: none; }

    .svc-pricing-card {
        max-width: 100%;
        padding: 28px 24px;
    }

    .svc-other-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .svc-hero h1 { font-size: 1.4rem; }
    .svc-pricing-amount { font-size: 1.6rem; }
    .svc-highlight-card { padding: 24px 20px; }
    .svc-other-card { padding: 24px 20px; }
}
