/* FAQ Page Styles */

/* Page Content */
.page-content {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    padding: 40px 0;
    background-color: #f0fdf9;
    background-image:
            radial-gradient(circle at 20% 80%, var(--pink-light) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, var(--pink-pastel) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(232, 249, 245, 0.3) 0%, transparent 50%);
}

/* Cute Breadcrumb */
.breadcrumb {
    background: white;
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.1);
    margin-bottom: 30px;
    display: inline-flex;
    border: 2px solid var(--pink-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "❤️";
    color: var(--primary-color);
    font-size: 0.8rem;
    margin: 0 10px;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Header */
.faq-header {
    background: linear-gradient(135deg, #fff 0%, var(--pink-light) 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--pink-light);
}

.faq-header::before {
    content: '❓';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.faq-header::after {
    content: '💡';
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 107, 157, 0.2);
   font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;
    position: relative;
    z-index: 1;
}

.faq-header h1 i {
    color: var(--primary-color);
    margin-right: 15px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.faq-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid var(--pink-light);
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.2);
    border-color: var(--primary-color);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
}

.category-btn i {
    font-size: 1.1rem;
}

/* FAQ Search */
.faq-search {
    margin-bottom: 40px;
}

.search-box {
    background: white;
    border: 2px solid var(--pink-light);
    border-radius: 50px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 5px 30px rgba(255, 107, 157, 0.2);
}

.search-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.search-box input::placeholder {
    color: var(--text-light);
}

/* FAQ List */
.faq-list {
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    border: 2px solid var(--pink-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-item.highlight {
    border-color: var(--secondary-color);
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* FAQ Question */
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--pink-light);
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-icon i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.question-content {
    flex: 1;
}

.question-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 5px;
}

.category-tag.price {
    background: #ffe4b5;
    color: #ff8c00;
}

.category-tag.process {
    background: #e6f3ff;
    color: #4169e1;
}

.category-tag.reservation {
    background: #ffe4f1;
    color: #ff1493;
}

.category-tag.etc {
    background: #f0f0f0;
    color: #666;
}

.toggle-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-icon i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    background: var(--primary-color);
}

.faq-item.active .toggle-icon i {
    color: white;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
}

.answer-content {
    padding: 0 30px 30px 100px;
    color: var(--text-dark);
    line-height: 1.8;
}

.answer-content p {
    margin-bottom: 15px;
}

/* Price Table */
.price-table {
    background: var(--pink-light);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 15px;
    margin-bottom: 10px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.vehicle-type {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Info Box */
.info-box {
    background: #fff3cd;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-box i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-box p {
    margin: 0;
    color: #721c24;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Reservation Methods */
.reservation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.method {
    background: var(--pink-light);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
}

.method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.method h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.method p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Tip Box */
.tip-box {
    background: linear-gradient(135deg, #fffacd, #ffe4b5);
    border-radius: 20px;
    padding: 20px 25px;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-dark);
    border: 2px solid #ffd700;
}

/* Cancel Policy */
.cancel-policy {
    background: white;
    border: 2px solid var(--pink-light);
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
}

.cancel-policy h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.cancel-policy ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cancel-policy li {
    padding: 10px 0;
    border-bottom: 1px solid var(--pink-light);
}

.cancel-policy li:last-child {
    border-bottom: none;
}

/* Checklist */
.checklist {
    margin: 20px 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    font-size: 1.05rem;
}

.check-item i {
    color: #28a745;
    font-size: 1.3rem;
}

/* Additional Info */
.additional-info {
    background: var(--pink-light);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.additional-info p {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.additional-info ul {
    margin: 0;
    padding-left: 20px;
}

.additional-info li {
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.area-box {
    background: white;
    border: 2px solid var(--pink-light);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.15);
}

.area-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.area-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.highlight-box i {
    font-size: 2rem;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Discount Cards */
.discount-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.discount-card {
    background: linear-gradient(135deg, white, var(--pink-light));
    border: 2px solid var(--pink-light);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.discount-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.discount-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.discount-header h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin: 0;
}

.discount-card p {
    color: var(--text-dark);
    margin: 0;
}

.discount-card strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Notice Box */
.notice-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-top: 20px;
}

.notice-box p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Time Recommendation */
.time-recommendation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.time-card {
    background: white;
    border: 3px solid var(--pink-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.time-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.time-card h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.time-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.time-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Still Have Questions */
.still-questions {
    margin-top: 60px;
}

.question-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    opacity: 0.2;
    animation: sparkle 2s ease-in-out infinite;
}

.question-card::after {
    content: '💭';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 80px;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2.5rem;
}

.question-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.question-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    background: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn.phone {
    color: var(--primary-color);
}

.contact-btn.kakao {
    color: #191919;
    background: var(--yellow-kakao);
}

/* Emoji Float Animation */
.emoji-float {
    position: fixed;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header {
        padding: 30px 20px;
    }

    .faq-header h1 {
        font-size: 1.8rem;
    }

    .faq-categories {
        gap: 10px;
    }

    .category-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .category-btn span {
        display: none;
    }

    .faq-question {
        padding: 20px;
    }

    .question-icon {
        width: 40px;
        height: 40px;
    }

    .question-content h3 {
        font-size: 1rem;
    }

    .answer-content {
        padding: 0 20px 20px 20px;
    }

    .process-steps,
    .reservation-methods,
    .area-grid,
    .discount-cards {
        grid-template-columns: 1fr;
    }

    .question-card {
        padding: 30px 20px;
    }

    .question-card h3 {
        font-size: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}