/* 솔천사 스타일시트 - Updated 2026-02-07 */

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c44569;
    --accent-color: #ffa07a;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
    --text-color: #2d3436;
    --border-color: #dfe6e9;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 20px;
    min-height: 70px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-brand a {
    text-decoration: none;
    display: block;
}

.nav-brand .logo-img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-brand .logo-img:hover {
    transform: scale(1.05);
}

.nav-brand h1:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-primary-nav,
.btn-secondary-nav {
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}

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

.btn-secondary-nav {
    border: 2px solid var(--secondary-color);
    color: white !important;
    background: var(--secondary-color);
}

.btn-secondary-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary-nav.active,
.btn-secondary-nav.active {
    background: var(--secondary-color);
    color: white !important;
    border-color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
============================================ */

.hero {
    position: relative;
    height: 110vh;
    background: url('../images/hero-background.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,133.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    z-index: 2;
}

/* ============================================
   Buttons
============================================ */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Sections
============================================ */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #636e72;
}

/* ============================================
   About Section
============================================ */

.about {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ============================================
   Programs Section
============================================ */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border: 3px solid var(--primary-color);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 2.5rem;
    color: white;
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.program-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.program-badge.popular {
    background: var(--primary-color);
    color: white;
}

.program-desc {
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.7rem 0;
    color: var(--text-color);
}

.program-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.program-price-info {
    background: rgba(255, 107, 157, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.program-price-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.program-price-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================
   Locations Section
============================================ */

.locations {
    background: var(--light-color);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem;
}

.location-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-info {
    padding: 2rem;
}

.location-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.location-info ul {
    list-style: none;
}

.location-info li {
    padding: 0.7rem 0;
    color: var(--text-color);
}

.location-info li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    width: 20px;
}

/* ============================================
   Features Section
============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ============================================
   B2G Section
============================================ */

.b2g-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.b2g-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.b2g-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.b2g-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.b2g-desc {
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.b2g-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.b2g-benefits li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.b2g-benefits li i {
    margin-right: 1rem;
    color: var(--accent-color);
}

.b2g-image {
    text-align: center;
}

.b2g-image i {
    font-size: 15rem;
    opacity: 0.2;
}

/* ============================================
   B2B Section
============================================ */

.b2b-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.b2b-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.b2b-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.b2b-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.b2b-desc {
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.b2b-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.b2b-benefits li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.b2b-benefits li i {
    margin-right: 1rem;
    color: #ffd89b;
}

.b2b-image {
    text-align: center;
}

.b2b-image i {
    font-size: 15rem;
    opacity: 0.2;
}

.b2g-image {
    text-align: center;
}

.b2g-image i {
    font-size: 15rem;
    opacity: 0.2;
}

/* ============================================
   CTA Section
============================================ */

.cta-section {
    background: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
    font-weight: 600;
}

.cta-buttons .btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FAQ Section
============================================ */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 157, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: #636e72;
}

.faq-answer strong {
    color: var(--dark-color);
}

.sub-desc {
    font-size: 1.1rem;
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ============================================
   Payment Section
============================================ */

.payment-section {
    padding: 60px 0;
}

.payment-notice {
    margin-bottom: 3rem;
}

.notice-box {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.notice-box.important {
    border-color: var(--primary-color);
    background: rgba(255, 107, 157, 0.05);
}

.notice-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.notice-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.notice-box p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #636e72;
}

.notice-box ul {
    margin-left: 1.5rem;
}

.notice-box li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.notice-box .highlight {
    background: rgba(255, 107, 157, 0.15);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
}

.payment-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.payment-form h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-selection {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.program-option {
    position: relative;
}

.program-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.program-label {
    display: block;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.program-label.featured {
    border-color: var(--primary-color);
}

.program-label:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.program-option input[type="radio"]:checked + .program-label {
    border-color: var(--secondary-color);
    background: rgba(255, 107, 157, 0.05);
    box-shadow: var(--shadow-lg);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.program-header h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
}

.program-duration {
    color: #636e72;
    font-size: 0.95rem;
}

.program-price {
    text-align: right;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.program-details ul {
    list-style: none;
    padding: 0;
}

.program-details li {
    padding: 0.5rem 0;
    color: #636e72;
}

.program-details li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.additional-options {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.option-list {
    display: grid;
    gap: 1rem;
}

.option-item {
    position: relative;
}

.option-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.option-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item label:hover {
    border-color: var(--primary-color);
}

.option-item input[type="checkbox"]:checked + label {
    border-color: var(--secondary-color);
    background: rgba(255, 107, 157, 0.05);
}

.option-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.option-info .badge {
    background: var(--accent-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.option-info p {
    font-size: 0.9rem;
    color: #636e72;
    margin: 0;
}

.option-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.payment-summary {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.payment-summary h3 {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.summary-total span:last-child {
    color: var(--secondary-color);
}

/* 장바구니 아이템 스타일 */
.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    font-size: 1rem;
    color: var(--dark-color);
}

.cart-item.option-item .cart-item-name {
    color: #666;
    font-size: 0.95rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--dark-color);
}

.cart-item.option-item .cart-item-price {
    color: var(--primary-color);
}

/* 할인 행 스타일 */
.discount-row {
    color: #dc3545;
    font-weight: 600;
}

.discount-text {
    color: #dc3545;
}

/* 수량 컨트롤 */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 8px;
}

.quantity-control label {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 0.4rem;
    font-size: 1rem;
    font-weight: 600;
    background: white;
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* 할인코드 섹션 */
.discount-section {
    background: #fff;
    border: 2px dashed var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.discount-section h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.discount-input-group {
    display: flex;
    gap: 0.5rem;
}

.discount-input-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
}

.discount-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.discount-input-group input:disabled {
    background: var(--light-color);
    cursor: not-allowed;
}

.discount-input-group .btn {
    min-width: 100px;
}

.discount-message {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.discount-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.discount-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.discount-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.payment-actions button {
    min-width: 150px;
}

/* ============================================
   Page Header
============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 140px 20px 60px;
    margin-top: 100px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ============================================
   Form Sections
============================================ */

.form-section {
    padding: 60px 0;
}

.form-intro {
    margin-bottom: 3rem;
}

.intro-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
}

.intro-box i {
    font-size: 2rem;
    color: #ffc107;
}

.intro-box h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.intro-box ul {
    margin-left: 1.5rem;
}

.intro-box li {
    margin-bottom: 0.5rem;
    color: #666;
}

.application-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-section-title {
    margin: 2rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.form-section-title h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
}

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

.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-content {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.radio-card input[type="radio"]:checked + .radio-content {
    border-color: var(--primary-color);
    background: rgba(255, 107, 157, 0.05);
}

.radio-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.radio-content h4 {
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.radio-content p {
    font-size: 0.9rem;
    color: #666;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.char-count {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color);
}

.success-message {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #00b894;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.success-message p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.success-message button {
    margin-top: 2rem;
}

.notice-text {
    background: rgba(255, 107, 157, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.notice-text i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================
   Inquiry Type Selection
============================================ */

.inquiry-type-selection {
    padding: 60px 0;
    background: var(--light-color);
}

.inquiry-type-selection h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.type-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.type-card.selected {
    border: 3px solid var(--primary-color);
    background: rgba(255, 107, 157, 0.05);
}

.type-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.type-icon i {
    font-size: 3rem;
    color: white;
}

.type-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.type-card p {
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================================
   Inquiry Info Section
============================================ */

.inquiry-info {
    background: var(--light-color);
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ============================================
   Benefits Section
============================================ */

.benefits-section {
    background: var(--light-color);
    padding: 60px 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

/* ============================================
   Footer
============================================ */

.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.seo-content {
    background: #34495e;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    display: none; /* SEO용 콘텐츠 - 화면에 표시 안함 */
}

.seo-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.seo-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.seo-text {
    line-height: 1.8;
    color: #ecf0f1;
}

.seo-text p {
    margin-bottom: 1.5rem;
}

.seo-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.seo-keywords {
    background: rgba(255, 107, 157, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #636e72;
    color: #b2bec3;
}

/* ============================================
   Animations
============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   Responsive Design
============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar .container {
        padding: 0.6rem 20px;
        min-height: 65px;
    }

    .nav-brand .logo-img {
        height: 48px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 98vh;
        padding-top: 70px;
        background-position: center 40%;
        background-size: cover;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .programs-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .b2g-content {
        grid-template-columns: 1fr;
    }

    .b2g-image {
        display: none;
    }

    .b2b-content {
        grid-template-columns: 1fr;
    }

    .b2b-image {
        display: none;
    }

    .type-cards {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

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

    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* 모바일 가로 모드 (Landscape) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 140vh;
        padding-top: 65px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
