/* Variables */
:root {
    --primary-color: #5f27cd;
    --primary-color-light: #8854d0;
    --secondary-color: #ff9f43;
    --accent-color: #00d2d3;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-5px);
    --transition-speed: 0.3s;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/korea-pattern.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    animation: fadeIn 1.2s ease-out 0.5s both;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.hero-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.hero-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: #f5f5f5;
    -webkit-clip-path: ellipse(50% 60% at 50% 100%);
    clip-path: ellipse(50% 60% at 50% 100%);
}

.btn-hero {
    background: var(--secondary-color);
    color: white;
    border: none;
    font-size: 1.2rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 159, 67, 0.6);
    background: #ff8a1d;
    color: white;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #f5f5f5;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    height: 500px;
}

.about-image-main {
    width: 80%;
    height: 400px;
    border-radius: 20px;
    background-image: linear-gradient(135deg, #0984e3, #00cec9);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(9, 132, 227, 0.3);
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(135deg, rgba(9, 132, 227, 0.7), rgba(0, 206, 201, 0.7)), url('https://images.unsplash.com/photo-1534274867514-d5b47ef89ed7');
}

.about-image-accent {
    width: 60%;
    height: 300px;
    border-radius: 20px;
    background-image: linear-gradient(135deg, #6c5ce7, #a29bfe);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(135deg, rgba(108, 92, 231, 0.7), rgba(162, 155, 254, 0.7)), url('https://images.unsplash.com/photo-1517154421773-0529f29ea451');
}

.about-content {
    padding: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    box-shadow: 0 10px 20px rgba(95, 39, 205, 0.2);
}

.highlight-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* Korea Info Section */
.korea-info-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(95, 39, 205, 0.2);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.info-list li:before {
    content: '\f14a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.korean-phrases {
    margin-bottom: 1.5rem;
}

.phrase-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.phrase-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.korean-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.phrase-meaning {
    font-size: 0.9rem;
    color: #666;
}

/* Planner Section */
.planner-section {
    background: #f8f9fa;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any other CSS that might hide the planner section */
#plannerSection {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
}

/* Budget Options */
.budget-options {
    margin-bottom: 2rem;
}

.budget-option {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.budget-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.budget-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(95, 39, 205, 0.05);
}

.budget-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.budget-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.budget-description {
    font-size: 0.9rem;
    color: #666;
}

.custom-budget {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 159, 67, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-image-wrapper {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-wave {
        height: 80px;
    }
    
    .hero-feature-card {
        margin-bottom: 1.5rem;
    }
    
    .about-image-wrapper {
        display: none;
    }
    
    .info-card {
        margin-bottom: 2rem;
    }
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/korea-pattern.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

header:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 50px;
    background: #f5f5f5;
    clip-path: ellipse(50% 50% at 50% 100%);
}

header h1, header p {
    position: relative;
    z-index: 1;
}

header h1 {
    font-weight: 700;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

header p.lead {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

/* Currency Info */
.currency-info-container {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

#currencyInfo {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.5s ease;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: none;
}

/* Survey Card */
.survey-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(95, 39, 205, 0.1);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
}

.survey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
}

.survey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(95, 39, 205, 0.15);
}

.survey-card .card-title {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.survey-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 10px;
}

/* Steps Progress Styling */
.progress-container {
    margin-bottom: 2rem;
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e9ecef;
    z-index: 1;
    margin: 0 auto;
    width: calc(100% - 80px);
}

.progress-line.active {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: #6c757d;
    background-color: #ffffff;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.step-icon.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 60%);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(95, 39, 205, 0.2);
    transform: scale(1.1);
}

.step-icon.active::after {
    opacity: 0.15;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.step-icon.completed {
    color: white;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffbe76 60%);
    border-color: transparent;
}

.step-label {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}

.step-title {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 10px;
}

.step-counter {
    background-color: #e9ecef;
    color: #495057;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: normal;
}

/* Form Options Styling */
.budget-option, .duration-option, .season-option, .travel-style-option, .interest-option, .food-option, .accommodation-option {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    height: 100%;
    cursor: pointer;
}

.budget-option::before, .duration-option::before, .season-option::before, 
.travel-style-option::before, .interest-option::before, .food-option::before, 
.accommodation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 39, 205, 0.1) 0%, rgba(0, 210, 211, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.budget-option:hover, .duration-option:hover, .season-option:hover, 
.travel-style-option:hover, .interest-option:hover, .food-option:hover, 
.accommodation-option:hover {
    transform: translateY(-5px);
    border-color: rgba(95, 39, 205, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.budget-option:hover::before, .duration-option:hover::before, .season-option:hover::before, 
.travel-style-option:hover::before, .interest-option:hover::before, .food-option:hover::before, 
.accommodation-option:hover::before {
    opacity: 1;
}

.budget-option.selected, .duration-option.selected, .season-option.selected, 
.travel-style-option.selected, .interest-option.selected, .food-option.selected, 
.accommodation-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(95, 39, 205, 0.05) 0%, rgba(0, 210, 211, 0.05) 100%);
    box-shadow: 0 10px 25px rgba(95, 39, 205, 0.15);
    transform: translateY(-5px);
}

.budget-option.selected::after, .duration-option.selected::after, .season-option.selected::after, 
.travel-style-option.selected::after, .interest-option.selected::after, .food-option.selected::after, 
.accommodation-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    background: var(--primary-color);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Form navigation buttons */
.btn-nav-container {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(95, 39, 205, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(95, 39, 205, 0.3);
}

.btn-outline-secondary {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.2);
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffbe76 100%);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.2);
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #ffbe76 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 159, 67, 0.3);
}

/* Form Summary */
.form-summary {
    background: linear-gradient(135deg, rgba(95, 39, 205, 0.05) 0%, rgba(0, 210, 211, 0.05) 100%);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1.5rem;
    border: 1px dashed rgba(95, 39, 205, 0.3);
}

.form-summary h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.form-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.summary-item-pill {
    background: white;
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    border: 1px solid rgba(95, 39, 205, 0.2);
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(95, 39, 205, 0.1);
    transition: all 0.3s ease;
}

.summary-item-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(95, 39, 205, 0.15);
}

/* Result Card */
.result-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background-color: #fff;
}

/* Plan Header */
.plan-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.plan-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.plan-header .card-title {
    color: var(--text-color);
    font-weight: 700;
}

/* Plan Content */
.plan-content {
    padding: 2rem;
}

/* Travel Summary */
.travel-summary {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.travel-summary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.summary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(95, 39, 205, 0.3);
}

.summary-details {
    flex: 1;
}

.summary-title {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Animation for loading */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.loading-icon {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(95, 39, 205, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

.loading-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
    animation: pulse 1.5s ease infinite;
}

.loading-subtitle {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
}

/* Plan Controls */
.plan-controls {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #888;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

.nav-tabs .nav-link:hover:not(.active) {
    color: var(--text-color);
    border-color: #ddd;
}

.btn-control {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.btn-control:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Intro and Highlight Sections */
.intro-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.intro-section:hover {
    transform: var(--hover-transform);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.intro-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color-light));
}

.highlights-section, .korea-tips-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 1;
}

.highlights-section:hover, .korea-tips-section:hover {
    transform: var(--hover-transform);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(95, 39, 205, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 1.5rem 0;
    position: relative;
    margin-top: 3rem;
}

/* Additional animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 2.5rem 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .intro-section, .highlights-section, .korea-tips-section {
        padding: 1.5rem;
    }
    
    .survey-card {
        margin-top: 1.5rem;
    }
    
    .plan-content {
        padding: 1.5rem;
    }
    
    .summary-item {
        margin-bottom: 1rem;
    }
    
    .summary-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .summary-title {
        font-size: 0.8rem;
    }
    
    .summary-value {
        font-size: 1rem;
    }
    
    .btn-control {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Keep print styles at the end */
@media print {
    header, footer, form, button, .intro-section, .highlights-section, .korea-tips-section, .btn-group, .helpful-tips-card, .nav-tabs, .plan-controls {
        display: none !important;
    }
    
    #results {
        display: block !important;
    }
    
    .travel-plan-content {
        font-size: 12pt;
    }
    
    .result-card {
        box-shadow: none;
        border: none;
    }
    
    .plan-header {
        background: none;
        padding-bottom: 0;
    }
    
    .travel-summary {
        background: none;
        box-shadow: none;
        padding: 0;
    }
    
    .summary-item {
        box-shadow: none;
        background: none;
    }
    
    .summary-icon {
        background: none;
        color: var(--text-color);
        box-shadow: none;
    }
    
    .travel-plan-content ul, 
    .travel-plan-content ol {
        background: none;
    }
    
    .result-card, .travel-plan-content, .travel-summary {
        page-break-inside: avoid;
    }
    
    body {
        background-color: #fff;
    }
    
    .card {
        box-shadow: none;
        border: none;
    }
}

/* Header Shapes and Decorations */
.header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.07));
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: 10%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.05));
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.header-content {
    position: relative;
    z-index: 1;
}

/* Feature Badges */
.header-features {
    margin-top: 30px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-badge i {
    margin-right: 8px;
}

/* Enhanced Tip Icons */
.tip-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
    background-color: rgba(0, 210, 211, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 210, 211, 0.2);
}

/* Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: rgba(95, 39, 205, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(95, 39, 205, 0.25);
}

.accordion-button::after {
    background-color: rgba(95, 39, 205, 0.1);
    border-radius: 50%;
    background-position: center;
    padding: 10px;
}

/* Helpful Tips Card */
.helpful-tips-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

.helpful-tips-card .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 1.5rem;
    position: relative;
}

.helpful-tips-card .card-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Korean Plan Format */
.korean-plan-table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.korean-plan-table th,
.korean-plan-table td {
    border: 1px solid #eee;
    padding: 12px 15px;
}

.korean-plan-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.korean-plan-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Plan Type Badge */
.plan-type-badge .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Enhanced Travel Plan Content */
.travel-plan-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(95, 39, 205, 0.2);
}

.travel-plan-content h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.travel-plan-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

.travel-plan-content ul, 
.travel-plan-content ol {
    background-color: #f9f9f9;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.travel-plan-content li {
    margin-bottom: 0.5rem;
}

.travel-plan-content .alert-info {
    background-color: #e7f3ff;
    border-left: 4px solid #0dcaf0;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.travel-plan-content .badge {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
}

/* Immigration Document Style */
.immigration-document {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.immigration-document:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed #ccc;
    pointer-events: none;
    z-index: 0;
}

.immigration-document .document-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.immigration-document .document-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.immigration-document .document-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.immigration-document .document-content {
    position: relative;
    z-index: 1;
}

.immigration-document .document-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    z-index: 1;
}

/* Official Stamp Effect */
.official-stamp {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(220, 53, 69, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(220, 53, 69, 0.7);
    font-weight: 700;
    font-size: 14px;
    transform: rotate(-15deg);
    opacity: 0.8;
    z-index: 1;
}

.official-stamp:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 50%;
}

/* Button styling improvements */
.btn-control {
    padding: 0.7rem 1.5rem;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.btn-control:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Additional transitions */
.step {
    animation: fadeIn 0.5s ease forwards;
}

/* Form Steps Progress */
.progress-container {
    padding: 0 15px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-icon.active {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    color: white;
    box-shadow: 0 0 0 3px rgba(95, 39, 205, 0.2);
}

.step-icon.completed {
    background: linear-gradient(45deg, var(--accent-color), #39CABB);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-line {
    flex-grow: 1;
    height: 3px;
    background-color: #e9ecef;
    margin: 0 8px;
    position: relative;
    z-index: 0;
    min-width: 15px;
}

.progress-line.active {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
}

.step-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(95, 39, 205, 0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.step-counter {
    background-color: #f8f9fa;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
}

/* Budget Slider */
.budget-slider-container {
    padding: 30px 10px 10px;
    position: relative;
}

.form-range {
    height: 10px;
}

.form-range::-webkit-slider-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    box-shadow: 0 0 10px rgba(95, 39, 205, 0.5);
    height: 24px;
    width: 24px;
}

.budget-value-display {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    color: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(95, 39, 205, 0.3);
    transition: all 0.3s ease;
}

.budget-value-display:hover {
    transform: scale(1.05);
}

.budget-amount {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.budget-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.budget-description {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 10px;
}

/* Duration Options */
.duration-options {
    padding: 10px 0;
}

.duration-option {
    background-color: white;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.duration-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.duration-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(95, 39, 205, 0.03);
}

.duration-option.selected::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    background-color: var(--primary-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.duration-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.duration-value {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.duration-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.duration-input {
    margin-top: 5px;
}

/* Season Options */
.season-options {
    margin-top: 10px;
}

.season-option {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 15px;
    border: 2px solid transparent;
    background-color: white;
}

.season-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.season-option.selected {
    border-color: var(--primary-color);
}

.season-image {
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.spring-image {
    background: url('https://images.unsplash.com/photo-1522383225653-ed111181a951') center/cover;
}

.summer-image {
    background: url('https://images.unsplash.com/photo-1503614472-8c93d56e92ce') center/cover;
}

.fall-image {
    background: url('https://images.unsplash.com/photo-1540204732389-5e536eb86b6e') center/cover;
}

.winter-image {
    background: url('https://images.unsplash.com/photo-1588856122867-363b0aa7f598') center/cover;
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.season-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.season-info {
    padding: 15px;
}

.season-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Travel Style Options */
.travel-style-options {
    padding: 10px 0;
}

.travel-style-option {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.travel-style-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.travel-style-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(95, 39, 205, 0.03);
}

.style-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(95, 39, 205, 0.2);
    flex-shrink: 0;
}

.style-details {
    flex-grow: 1;
}

.style-details h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.style-details p {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Interest Options */
.interests-options {
    padding: 10px 0;
}

.interest-option {
    position: relative;
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.interest-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.interest-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(95, 39, 205, 0.05);
}

.interest-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.interest-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.interest-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.interest-option.selected .interest-check {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Food Options */
.food-options {
    margin-bottom: 2rem;
}

.food-option {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
}

.food-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.food-option.selected {
    border-color: var(--primary-color);
}

.food-image {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.food-authentic {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.7), rgba(255, 165, 0, 0.7));
}

.food-mostly-korean {
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.7), rgba(64, 224, 208, 0.7));
}

.food-mix {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.7), rgba(138, 43, 226, 0.7));
}

.food-veggie {
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.7), rgba(154, 205, 50, 0.7));
}

.food-details {
    padding: 1.2rem;
}

.food-details h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.food-details p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* Accommodation Options */
.accommodation-options {
    margin-bottom: 2rem;
}

.accommodation-option {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.accommodation-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.accommodation-option.selected {
    border-color: var(--primary-color);
}

.accommodation-image {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.acc-luxury {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.7), rgba(139, 69, 19, 0.7));
}

.acc-midrange {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.7), rgba(135, 206, 250, 0.7));
}

.acc-budget {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.7), rgba(152, 251, 152, 0.7));
}

.acc-hanok {
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.7), rgba(255, 99, 71, 0.7));
}

.acc-hostel {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.7), rgba(255, 215, 0, 0.7));
}

.acc-airbnb {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.7), rgba(255, 105, 180, 0.7));
}

.accommodation-name {
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Form Summary */
.form-summary {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px dashed #ddd;
}

.form-summary h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.summary-item-pill {
    display: inline-block;
    background-color: white;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Season Options Styling */
.season-image {
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.spring-image {
    background: url('https://images.unsplash.com/photo-1522383225653-ed111181a951') center/cover;
}

.summer-image {
    background: url('https://images.unsplash.com/photo-1503614472-8c93d56e92ce') center/cover;
}

.fall-image {
    background: url('https://images.unsplash.com/photo-1540204732389-5e536eb86b6e') center/cover;
}

.winter-image {
    background: url('https://images.unsplash.com/photo-1588856122867-363b0aa7f598') center/cover;
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.season-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.season-option:hover .season-image {
    transform: scale(1.03);
}

.season-option:hover .season-overlay {
    background: linear-gradient(to top, rgba(95, 39, 205, 0.7), rgba(0, 210, 211, 0.4));
}

.season-option.selected .season-image {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(95, 39, 205, 0.2);
    border: 2px solid var(--primary-color);
}

.season-option.selected .season-overlay {
    background: linear-gradient(to top, rgba(95, 39, 205, 0.8), rgba(0, 210, 211, 0.5));
}

.season-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.style-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Badge Styling */
.badge {
    padding: 0.4rem 0.8rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Animation for step transitions */
.step {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.step:not([style*="display: none"]) {
    animation: slideInRight 0.4s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Style Icons */
.budget-icon, .duration-icon, .style-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(95, 39, 205, 0.1) 0%, rgba(0, 210, 211, 0.1) 100%);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.budget-option:hover .budget-icon,
.duration-option:hover .duration-icon,
.travel-style-option:hover .style-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(95, 39, 205, 0.2) 0%, rgba(0, 210, 211, 0.2) 100%);
    color: var(--primary-color-light);
}

.budget-option.selected .budget-icon,
.duration-option.selected .duration-icon,
.travel-style-option.selected .style-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(95, 39, 205, 0.2);
}

.budget-amount, .duration-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.budget-description, .duration-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Travel Plan Styles */
.travel-plan {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #3a3a3a;
}

.travel-plan h2 {
    color: #5f27cd;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.travel-plan h3 {
    color: #6c5ce7;
    font-weight: 600;
    margin-top: 25px;
}

.travel-plan h4.travel-day-heading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.heading-day {
    font-size: 1.1em;
    color: #5f27cd !important;
}

.category-heading {
    color: #3d3d3d;
    background-color: #f8f9fa;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 5px;
    display: inline-block;
}

.travel-plan ul, .travel-plan ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.travel-plan li {
    margin-bottom: 8px;
    position: relative;
}

.travel-plan .korean-phrase {
    font-family: 'Nanum Gothic', sans-serif;
    background: linear-gradient(to right, #e0f7fa, #b2ebf2);
    color: #006064 !important;
    border-radius: 4px;
    padding: 2px 8px;
    margin-right: 5px;
    font-weight: 500;
}

.travel-plan .tip-box {
    background: linear-gradient(45deg, #fff1eb 0%, #ace0f9 100%);
    border: none;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.travel-plan .tip-heading {
    display: block;
    margin-bottom: 8px;
    color: #0277bd;
    font-size: 1.05em;
}

.travel-plan hr.my-4 {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(95, 39, 205, 0.5), rgba(0, 0, 0, 0));
    margin: 25px 0;
}

.text-success {
    color: #2ecc71 !important;
}

.text-primary {
    color: #5f27cd !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .travel-plan h4.travel-day-heading {
        padding: 8px 12px;
    }
    
    .travel-plan .tip-box {
        padding: 12px;
    }
}

/* Existing styles... */

.food-halal {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/food-halal.jpg');
    background-size: cover;
    background-position: center;
    height: 120px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

/* Plan görünümü için ek stiller */
.travel-plan {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.travel-plan .plan-title {
    color: #5f27cd;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #5f27cd;
    margin-bottom: 1.5rem;
}

.travel-plan h3, .travel-plan h4 {
    color: #3c6382;
    margin-top: 1.5rem;
}

.travel-plan .travel-day-heading {
    background: #f1f2f6;
    padding: 0.75rem;
    border-left: 4px solid #5f27cd;
    border-radius: 0 4px 4px 0;
    margin-top: 2rem;
}

.travel-plan .category-heading {
    color: #0a3d62;
    display: inline-block;
    margin-right: 0.5rem;
}

.travel-plan li {
    margin-bottom: 0.5rem;
}

.travel-plan .alert.tip-box {
    background-color: #f1f9ff;
    border-color: #74b9ff;
}

.travel-plan .tip-heading {
    color: #0984e3;
    display: block;
    margin-bottom: 0.5rem;
}

.travel-plan .korean-phrase {
    font-family: 'Nanum Gothic', sans-serif;
    background-color: #f5f6fa;
    border: 1px solid #dfe4ea;
    padding: 0.25rem 0.5rem;
}

.travel-plan hr.my-4 {
    border-top: 1px dashed #dcdde1;
    margin: 2rem 0;
}

/* Dollar amount highlighting */
.travel-plan .text-success {
    color: #20bf6b !important;
    font-weight: 500;
}

/* Day headings */
.travel-plan .heading-day {
    font-size: 1.1rem;
    background: linear-gradient(to right, #5f27cd 0%, #a55eea 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: block;
    margin-bottom: 1rem;
}

/* Pre-formatted plan fallback */
.travel-plan pre {
    white-space: pre-wrap;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    padding: 1.5rem;
    border-radius: 4px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    overflow-x: auto;
}

/* Reklam konteynerleri için stiller */
.ad-container {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    overflow: hidden;
    max-width: 100%;
    text-align: center;
    position: relative;
}

.ad-label {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Hero banner'daki reklam için özel stil */
.hero-banner .ad-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-banner .ad-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobil için reklam görünümlerini düzenle */
@media (max-width: 768px) {
    .ad-container {
        padding: 10px;
    }
    
    /* Footer'daki reklam boyutunu düşür */
    footer .adsbygoogle {
        width: 250px !important;
        height: 200px !important;
    }
}

/* Plan kontrol butonları */
.plan-controls {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.btn-control {
    padding: 8px 16px;
    border-radius: 50px;
    margin: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Kore temalı yükleme animasyonu */
.korea-loading {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 30px auto;
}

.korea-loading-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #5f27cd;
    animation: korea-circle-spin 1.5s linear infinite;
}

.korea-loading-circle:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 10px;
    left: 10px;
    border-top-color: #ff9f43;
    animation-delay: -0.5s;
}

.korea-loading-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 20px;
    left: 20px;
    border-top-color: #00d2d3;
    animation-delay: -1s;
}

.korea-loading-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23D80027" d="M256 0c-31.314 0-61.311 5.633-89.043 15.923L256 256 66.957 256C56.667 228.268 51.034 198.271 51.034 166.957c0-113.108 91.858-204.966 204.966-204.966"/><path fill="%23FFDA44" d="M256 0c-31.314 0-61.311 5.633-89.043 15.923L256 256 66.957 256C56.667 228.268 51.034 198.271 51.034 166.957c0-113.108 91.858-204.966 204.966-204.966"/><path fill="%230052B4" d="M460.966 166.957c0 31.314-5.633 61.311-15.923 89.043H256L445.043 75.957C455.333 103.689 460.966 133.686 460.966 166.957z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: korea-symbol-bounce 2s ease-in-out infinite;
    opacity: 0.9;
}

.loading-tips {
    text-align: center;
    max-width: 80%;
    margin: 1rem auto;
    font-size: 16px;
    color: #555;
    animation: fade-in-out 2s infinite;
}

.loading-tips h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #5f27cd;
    font-size: 18px;
}

/* Animasyon keyframes */
@keyframes korea-circle-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes korea-symbol-bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* İpuçları listesi döndürme animasyonu */
.korea-tips-list {
    margin: 15px auto;
    padding: 0;
    list-style: none;
    height: 25px;
    overflow: hidden;
    position: relative;
}

.korea-tips-list li {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    animation: rotate-tips 12s linear infinite;
    text-align: center;
    font-style: italic;
}

.korea-tips-list li:nth-child(1) { animation-delay: 0s; }
.korea-tips-list li:nth-child(2) { animation-delay: 3s; }
.korea-tips-list li:nth-child(3) { animation-delay: 6s; }
.korea-tips-list li:nth-child(4) { animation-delay: 9s; }

@keyframes rotate-tips {
    0%, 20% { opacity: 0; transform: translateY(20px); }
    25%, 45% { opacity: 1; transform: translateY(0); }
    50%, 100% { opacity: 0; transform: translateY(-20px); }
}

/* Tatil planı için responsive tasarım */
.travel-plan-content {
    line-height: 1.6;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
}

.travel-plan-content h2 {
    font-size: 24px;
    color: #5f27cd;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.travel-plan-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d3436;
}

.travel-plan-content h4.travel-day-heading {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #5f27cd;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.travel-plan-content ul, 
.travel-plan-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.travel-plan-content li {
    margin-bottom: 8px;
}

.travel-plan-content .alert-info {
    background-color: rgba(0, 210, 211, 0.1);
    border-left: 4px solid #00d2d3;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.travel-plan-content .badge {
    font-size: 12px;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 50px;
    font-weight: 500;
}

/* Plan içeriğini mobil cihazlara uyarla */
@media (max-width: 768px) {
    .travel-plan-content {
        font-size: 15px;
        padding: 0;
    }
    
    .travel-plan-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .travel-plan-content h3 {
        font-size: 18px;
    }
    
    .travel-plan-content h4.travel-day-heading {
        font-size: 16px;
        padding: 8px 12px;
    }
    
    .travel-plan-content .alert-info {
        padding: 10px;
        margin: 15px 0;
    }
    
    .travel-plan-content ul, 
    .travel-plan-content ol {
        padding-left: 15px;
    }
    
    .travel-plan-content .badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .travel-plan .tip-box {
        padding: 10px;
        margin: 15px 0;
    }
    
    .travel-plan .tip-heading {
        font-size: 15px;
    }
    
    .korea-loading {
        width: 120px;
        height: 120px;
    }
    
    .korea-loading-circle {
        width: 120px;
        height: 120px;
    }
    
    .korea-loading-circle:nth-child(2) {
        width: 100px;
        height: 100px;
        top: 10px;
        left: 10px;
    }
    
    .korea-loading-circle:nth-child(3) {
        width: 80px;
        height: 80px;
        top: 20px;
        left: 20px;
    }
    
    .korea-loading-symbol {
        width: 40px;
        height: 40px;
    }
    
    .loading-tips h4 {
        font-size: 16px;
    }
    
    .loading-tips {
        font-size: 14px;
    }
}

/* Çok küçük ekranlar için (iPhone SE gibi) */
@media (max-width: 375px) {
    .travel-plan-content {
        font-size: 14px;
    }
    
    .travel-plan-content h2 {
        font-size: 18px;
    }
    
    .travel-plan-content h3 {
        font-size: 16px;
    }
    
    .travel-plan-content h4 {
        font-size: 15px;
    }
    
    .travel-plan-content .badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .plan-controls .btn-control {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .btn-control i {
        margin-right: 4px;
    }
    
    .korea-loading {
        width: 100px;
        height: 100px;
    }
    
    .korea-loading-circle {
        width: 100px;
        height: 100px;
        border-width: 6px;
    }
    
    .korea-loading-circle:nth-child(2) {
        width: 85px;
        height: 85px;
        top: 8px;
        left: 8px;
    }
    
    .korea-loading-circle:nth-child(3) {
        width: 70px;
        height: 70px;
        top: 15px;
        left: 15px;
    }
}

/* Sonuçlar bölümünün responsive tasarımı */
.result-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: none;
}

@media (max-width: 768px) {
    .result-card {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
    
    .plan-header {
        padding: 15px;
    }
    
    .plan-header .card-title {
        font-size: 20px;
    }
    
    .plan-content {
        padding: 15px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Butonların düzgün sıralanmasını sağla */
.plan-controls .d-flex {
    flex-wrap: wrap;
    justify-content: center;
}

.plan-controls .btn-control {
    margin-bottom: 10px;
}

/* Yeni eklenen adımlar için CSS stilleri */

/* Travel Group Options */
.travel-group-options .row {
    margin: 0 -10px;
}

.travel-group-option {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.travel-group-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.travel-group-option.selected {
    border: 2px solid #5f27cd;
    background-color: rgba(95, 39, 205, 0.05);
}

.group-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #5f27cd;
}

.group-details h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.group-details p {
    font-size: 0.9rem;
    color: #666;
}

/* Cities Options */
.cities-options .row {
    margin: 0 -10px;
}

.cities-option {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.cities-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cities-option.selected {
    border: 2px solid #5f27cd;
}

.cities-image {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.seoul-image {
    background-image: url('https://images.unsplash.com/photo-1517154421773-0529f29ea451?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.seoul-busan-image {
    background-image: url('https://images.unsplash.com/photo-1601541984851-7bb28a966d42?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.seoul-jeju-image {
    background-image: url('https://images.unsplash.com/photo-1589892887493-e7d4b8d0d89c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.history-tour-image {
    background-image: url('https://images.unsplash.com/photo-1580651315530-69c8e0026377?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.grand-tour-image {
    background-image: url('https://images.unsplash.com/photo-1540998145333-e2eef1a9822d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.cities-details {
    padding: 15px;
}

.cities-details h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.cities-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Travel Pace Options */
.travel-pace-options .row {
    margin: 0 -10px;
}

.travel-pace-option {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.travel-pace-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.travel-pace-option.selected {
    border: 2px solid #5f27cd;
    background-color: rgba(95, 39, 205, 0.05);
}

.pace-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #5f27cd;
}

.pace-details h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.pace-details p {
    font-size: 0.9rem;
    color: #666;
}