/* ===============================================
   청춘드라이브 - 소개 페이지 스타일
   =============================================== */

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/img/pattern.png') repeat;
    opacity: 0.1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
   font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
}

.welcome-img-wrapper {
    position: relative;
}

.welcome-img-wrapper img {
    width: 100%;
    height: auto;
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.welcome-content {
    padding-left: 40px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px 0 30px;
}

.description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.highlight-text {
    background: var(--gray-50);
    padding: 15px 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--gray-700);
}

.feature-item i {
    font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gray-900);
   font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: inline-block;
   font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Mission & Vision Section */
.mission-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mission-card .card-header {
    background: var(--gray-50);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.mission-card .card-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.mission-card .card-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--gray-900);
   font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;
}

.mission-card .card-body {
    padding: 30px;
}

.mission-card .card-body p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-600);
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Service Area Section */
.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.area-item {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-item.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(254, 202, 87, 0.05) 100%);
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.area-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.area-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
}

.area-item.active span {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
   font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.cta-buttons-inline {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

/* Section Common Styles */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
   font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-badge {
        width: 80px;
        height: 80px;
        top: 20px;
        right: 20px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .cta-buttons-inline {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons-inline .btn {
        width: 100%;
        max-width: 300px;
    }
}