﻿/* Contact 페이지 전용 스타일 */

.contact-page {
    padding: 0;
    background-color: #f8f5ff;
    color: #1f1b2e;
}

.contact-hero {
    background: radial-gradient(circle at top, #d9c7ff 0%, #b8a7ff 35%, #8f82ff 100%);
    color: #fff;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero__inner h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-hero__lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-cta-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.contact-cta-group .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-cta-group .cta-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.contact-section {
    padding: 80px 20px;
}

.contact-section:nth-of-type(even) {
    background-color: #ffffff;
}

.contact-section__inner {
    max-width: 960px;
    margin: 0 auto;
}

.contact-section__header {
    margin-bottom: 32px;
}

.contact-section__header h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #3b2da3;
}

.contact-section__header p {
    font-size: 18px;
    line-height: 1.7;
    color: #4f4b60;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(62, 56, 140, 0.1);
    border: 1px solid rgba(107, 98, 210, 0.18);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #322774;
}

.contact-card p,
.contact-card li {
    color: #4f4b60;
    line-height: 1.6;
}

.contact-card ul {
    margin: 12px 0 0;
    padding-left: 18px;
    list-style: disc;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-meta a {
    color: #4738c9;
    font-weight: 600;
    text-decoration: none;
}

.contact-meta a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(111, 103, 211, 0.08);
    color: #463c8b;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 24px 80px;
    }

    .contact-hero__inner h1 {
        font-size: 36px;
    }

    .contact-hero__lead {
        font-size: 18px;
    }

    .contact-section {
        padding: 64px 18px;
    }

    .contact-hero__lead br {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-cta-group {
        width: 100%;
    }

    .contact-cta-group .cta-link {
        width: 100%;
        justify-content: center;
    }
}
