/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo h1 {
    color: #e74c3c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo span {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #e74c3c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
/* Modern Hero Section */
.hero-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 70vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

/* Hero Content (Left Side) */
.hero-content {
    padding: 2rem 0;
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge i {
    color: #ffd700;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-highlight {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.title-main {
    color: #2c3e50;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modern Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern.btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.btn-modern.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-modern.btn-secondary {
    background: white;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn-modern.btn-secondary:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Hero Visual (Right Side) */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: white;
    padding: 1rem;
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    z-index: 10;
}

.hero-image-overlay:hover {
    background: rgba(231, 76, 60, 1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: white;
}

.hero-image-container:hover .hero-image-overlay {
    opacity: 1;
}

.overlay-content i {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    min-width: 140px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.floating-card strong {
    color: #2c3e50;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.floating-card small {
    color: #6c757d;
    font-size: 0.7rem;
}

.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 4s;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #6c757d;
    animation: fadeIn 2s ease-out 2s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #6c757d;
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #6c757d;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, -8px);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, 0px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 8px);
    }
}

/* Section Common Styles */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Advantages Section */
.advantages {
    background: #f8f9fa;
    padding-top: 30px;
}

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

.advantage-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.8;
}

/* Facilities Section */
.facilities {
    background: #fff;
}

.facilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.facility-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.facility-list {
    list-style: none;
    space: 1rem;
}

.facility-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.facility-list i {
    color: #e74c3c;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Facility Images */
.facility-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Legacy styles for backward compatibility */
.facility-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.image-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Rental Section */
.rental {
    background: #f8f9fa;
}

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

.rental-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.rental-card.highlight {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    transform: scale(1.05);
}

.rental-card:hover {
    transform: translateY(-5px);
}

.rental-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.rental-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rental-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.rental-note i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

/* Support Section */
.support {
    background: #fff;
}

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

.support-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.support-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.8rem;
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.support-card p {
    color: #666;
    line-height: 1.8;
}

/* Professional Chef Support Section */
.chef-support {
    background: #fff;
    padding: 100px 0;
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.chef-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.chef-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.chef-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
}

.chef-badge span:first-child {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.chef-badge span:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

.chef-info {
    display: grid;
    gap: 2.5rem;
}

.chef-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
}

.chef-feature h3::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    margin-right: 1rem;
    border-radius: 2px;
}

.chef-feature ul {
    list-style: none;
}

.chef-feature li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.chef-feature li i {
    color: #e74c3c;
    margin-right: 1rem;
    width: 20px;
    font-size: 1.1rem;
}

/* Startup Process Section */
.startup-process {
    background: #f8f9fa;
    padding: 100px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-duration {
    background: #f8f9fa;
    color: #e74c3c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 100px 0;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-image img,
.faq-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* FAQ 이미지 캡션 스타일 */
.faq-image-caption {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.faq-image-caption .caption-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.1);
}

.faq-image-caption .caption-header h4 {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-image-caption .caption-header h4 i {
    color: #ff6b6b;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.caption-subtitle {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.caption-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.caption-content p i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.restaurant-list {
    margin-bottom: 1.5rem;
}

.restaurant-list h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restaurant-list h5 i {
    color: #e74c3c;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.restaurant-tag {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.restaurant-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.instagram-link {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(231, 76, 60, 0.1);
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    color: white;
}

.instagram-btn i {
    font-size: 1.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(231, 76, 60, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.faq-question i {
    color: #e74c3c;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

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

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

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

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

/* Success Stories Section */
.success-stories {
    background: #f8f9fa;
    padding: 100px 0;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
}

.success-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.success-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.success-image.todam-slideshow,
.success-image.teneburger-slideshow,
.success-image.ddangddang-slideshow {
    height: 250px !important;
    overflow: hidden !important;
    position: relative !important;
    background: transparent !important;
}

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

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

.success-content {
    padding: 2rem;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.success-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.feature-tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Inquiry Section */
.inquiry {
    background: #f8f9fa;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.inquiry-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.inquiry-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.inquiry-info li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
}

.inquiry-info i {
    color: #e74c3c;
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-item i {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    margin-top: 0.2rem;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    flex-shrink: 0;
}

.contact-item > div {
    flex: 1;
    width: 100%;
}

.contact-item div strong {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-item div span {
    color: #666;
    font-size: 0.95rem;
}

/* Phone Number Styling */
.phone-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.8rem;
    width: 100%;
}

.phone-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    max-width: calc(50% - 0.4rem);
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.phone-link:hover::before {
    left: 100%;
}

.phone-link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border-color: #c0392b;
}

.phone-link:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}


/* Larger screens styling */
@media (min-width: 1024px) {
    .phone-numbers {
        gap: 1rem;
    }
    
    .phone-link {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

.phone-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.phone-buttons .map-link-button {
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.inquiry-form {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.inquiry-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 22px !important;
    height: 22px !important;
    border: 2px solid #ccc !important;
    border-radius: 4px !important;
    margin-right: 0.8rem !important;
    position: relative !important;
    transition: all 0.3s !important;
    flex-shrink: 0 !important;
    background-color: #fff !important;
    display: inline-block !important;
    z-index: 1000 !important;
    min-width: 22px !important;
    min-height: 22px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.checkbox-label:hover .checkmark {
    border-color: #e74c3c !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\2713' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 16px !important;
    line-height: 1 !important;
    display: block !important;
}

.btn-submit {
    width: 100%;
    font-size: 1.2rem;
    padding: 15px;
    margin-top: 1rem;
}

/* Location Section */
.location {
    background: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.location-details {
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.location-item i {
    background: #e74c3c;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.2rem;
}

.location-item div strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.location-item div span {
    color: #666;
    line-height: 1.6;
}

.location-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.location-note i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#naver-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

/* Custom Naver Map Marker */
.custom-marker {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transform: rotate(-45deg);
}

.custom-marker i {
    transform: rotate(45deg);
}

/* Interactive Map Placeholder */
.interactive-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: scale(1.02);
}

.map-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.map-content i.fa-map-marker-alt {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.map-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.map-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.map-link i {
    font-size: 0.9rem;
}

.map-container iframe {
    border-radius: 15px;
    filter: brightness(0.9) contrast(1.1);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 20px;
}

.map-info {
    color: #fff;
}

.map-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info p {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.map-info small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.map-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.map-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-link-button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-link-button i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .map-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .map-link-button {
        text-align: center;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-section p,
.footer-section ul li {
    color: #ccc;
    line-height: 1.8;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 3rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.modal-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Modern Hero Mobile */
    .hero-modern {
        min-height: auto;
        padding: 3rem 0 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.5rem 1rem 0 1rem;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
        padding: 1rem 0;
    }
    
    .hero-visual {
        order: 1;
        margin-top: 1rem; /* Reduced margin for mobile to save space */
        margin-bottom: 1rem; /* Reduced bottom margin */
    }

    .hero-image-container {
        padding: 0.5rem; /* Reduced padding on mobile */
        margin: 0.5rem 0; /* Reduced top/bottom margin */
    }

    .hero-main-image {
        height: 300px; /* Reduced height on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .btn-modern {
        padding: 0.8rem 1.5rem;
        justify-content: center;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .hero-scroll-indicator {
        position: relative;
        margin-top: 2rem;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding-top: 2rem;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section */
    .hero {
        min-height: 55vh;
    }
    
    .hero-content {
        padding: 100px 0 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .hero-stats {
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }
    
    .advantages {
        padding-top: 40px;
    }

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

    /* Grid Adjustments */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facilities-content,
    .inquiry-content,
    .location-content,
    .chef-content,
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chef-image img {
        height: 300px;
    }

    .faq-image img {
        height: 250px;
    }

    .rental-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .advantage-card,
    .support-card {
        padding: 2rem;
    }

    .inquiry-form {
        padding: 2rem;
    }

    /* Modal */
    .modal-content {
        margin: 20% auto;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        margin-top: 4rem !important; /* Maximum margin for small screen header clearance */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .advantage-card,
    .support-card,
    .rental-card {
        padding: 1.5rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* Enhanced Facility Styles */
.facility-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #e74c3c;
}

.facility-highlight h4 {
    color: #e74c3c;
    font-size: 1.2em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-highlight p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Enhanced Chef Support Styles */
.success-case {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ffd93d;
}

.success-case h4 {
    color: #d68910;
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-case p {
    margin: 5px 0;
    font-size: 0.9em;
}

.training-program {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #17a2b8;
}

.training-program h4 {
    color: #117a8b;
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.training-program p {
    margin: 5px 0;
    font-size: 0.9em;
}

.consulting-service {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #28a745;
}

.consulting-service h4 {
    color: #155724;
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consulting-service p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Enhanced Success Cards */
.success-stats {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #e74c3c;
}

.success-stats p {
    margin: 8px 0;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-stats i {
    color: #e74c3c;
    width: 16px;
    text-align: center;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .facility-highlight {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .facility-highlight h4 {
        font-size: 1.1em;
    }
    
    .success-case,
    .training-program,
    .consulting-service {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .success-case h4,
    .training-program h4,
    .consulting-service h4 {
        font-size: 1em;
    }
    
    .success-stats {
        padding: 12px;
    }
    
    .success-stats p {
        font-size: 0.9em;
    }
}

/* Business Highlight Styles */
.business-highlight {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.business-highlight p {
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Location Advantages Styles */
.location-advantages {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #e74c3c;
}

.location-advantages h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.location-advantages ul {
    list-style: none;
    padding: 0;
}

.location-advantages li {
    padding: 0.5rem 0;
    color: #444;
}

/* Pasta Slideshow Styles */
.pasta-slideshow .slideshow-container,
.chicken-slideshow .slideshow-container,
.baekyam-slideshow .slideshow-container,
.imsabu-slideshow .slideshow-container,
.todam-slideshow .slideshow-container,
.teneburger-slideshow .slideshow-container,
.ddangddang-slideshow .slideshow-container,
.ildungdwaeji-slideshow .slideshow-container,
.nunkkot-yukhoe-slideshow .slideshow-container {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    border-radius: 15px;
    display: block !important;
    background: transparent !important;
}

.pasta-slideshow .slide,
.chicken-slideshow .slide,
.baekyam-slideshow .slide,
.imsabu-slideshow .slide,
.todam-slideshow .slide,
.teneburger-slideshow .slide,
.ddangddang-slideshow .slide,
.ildungdwaeji-slideshow .slide,
.nunkkot-yukhoe-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: block;
    z-index: 1;
}

.pasta-slideshow .slide.active,
.chicken-slideshow .slide.active,
.baekyam-slideshow .slide.active,
.imsabu-slideshow .slide.active,
.todam-slideshow .slide.active,
.teneburger-slideshow .slide.active,
.ddangddang-slideshow .slide.active,
.ildungdwaeji-slideshow .slide.active,
.nunkkot-yukhoe-slideshow .slide.active {
    opacity: 1 !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
}

.pasta-slideshow .slide img,
.chicken-slideshow .slide img,
.baekyam-slideshow .slide img,
.imsabu-slideshow .slide img,
.todam-slideshow .slide img,
.teneburger-slideshow .slide img,
.ddangddang-slideshow .slide img,
.ildungdwaeji-slideshow .slide img,
.nunkkot-yukhoe-slideshow .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 15px;
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    background-color: transparent !important;
    opacity: 1 !important;
    z-index: inherit;
}

/* Hankki-Hanjuk Video Styles */
.hankki-hanjuk-video .video-container {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    border-radius: 15px;
    display: block !important;
    background: transparent !important;
}

.hankki-hanjuk-video video {
    width: 120% !important;
    height: 120% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px;
    display: block !important;
    visibility: visible !important;
    background-color: transparent !important;
    transform: scale(0.8) translate(-12.5%, -12.5%);
    transform-origin: center center;
}

/* Majangdong-Jingukmeal Video Styles */
.majangdong-jingukmeal-video .video-container {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    border-radius: 15px;
    display: block !important;
    background: transparent !important;
}

.majangdong-jingukmeal-video video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px;
    display: block !important;
    visibility: visible !important;
    background-color: transparent !important;
}

.slideshow-indicators {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.indicator.active {
    background: #e74c3c;
    border-color: #fff;
    transform: scale(1.2);
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
}

.slideshow-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: 15px;
}

.slideshow-nav.next {
    right: 15px;
}

.slideshow-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Mobile responsiveness for slideshow */
@media (max-width: 768px) {
    .slideshow-nav {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .slideshow-indicators {
        right: 15px;
        gap: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .slideshow-nav.prev {
        left: 10px;
    }
    
    .slideshow-nav.next {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}
    position: relative;
    padding-left: 1.5rem;
}

.location-advantages li:before {
    content: '✓';
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .business-highlight {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .location-advantages {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .location-advantages h4 {
        font-size: 1.1rem;
    }
    
    .location-advantages li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }
}

/* Blog Link Styles */
.blog-link {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4267B2, #365899);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 103, 178, 0.3);
}

.btn-blog:hover {
    background: linear-gradient(135deg, #365899, #2d4373);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 103, 178, 0.4);
    color: #fff;
}

.btn-blog i {
    font-size: 0.8rem;
}

/* Navigation Blog Link Styling */
.nav-menu a[href*="blog.naver.com"] {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.nav-menu a[href*="blog.naver.com"]:hover {
    background: linear-gradient(135deg, #365899, #2d4373);
    transform: translateY(-1px);
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

.btn-instagram i {
    font-size: 1.1rem;
}

/* Mobile Blog Link Adjustments */
@media (max-width: 768px) {
    .blog-link {
        margin-top: 1rem;
    }
    
    .btn-blog {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .nav-menu a[href*="blog.naver.com"] {
        margin: 0.5rem 0;
        display: block;
        text-align: center;
    }
}

/* Instagram Section */
.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    padding: 80px 0;
    color: white;
}

.instagram .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.instagram .section-header p {
    color: rgba(255,255,255,0.9);
}

.instagram-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.instagram-profile {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.profile-image {
    text-align: center;
    margin-bottom: 20px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: center;
}

.profile-info h4 {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 15px;
}

.profile-info p {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.profile-stats .stat {
    text-align: center;
}

.profile-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.profile-stats .label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-instagram,
.btn-youtube {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-instagram {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-instagram:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn-youtube {
    background: #ff0000;
    color: white;
    border: 2px solid #ff0000;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.instagram-gallery {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.gallery-header {
    margin-bottom: 25px;
}

.gallery-header h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-header p {
    color: rgba(255,255,255,0.9);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item .overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-cta .btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Instagram Mobile Styles */
@media (max-width: 768px) {
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instagram-profile,
    .instagram-gallery {
        padding: 20px;
    }
    
    .profile-stats {
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .profile-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* YouTube Section */
.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    padding: 80px 0;
    color: white;
}

.youtube .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.youtube .section-header p {
    color: rgba(255,255,255,0.9);
}

.youtube-content {
    display: grid;
    gap: 40px;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.video-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-info p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.video-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 0.9rem;
}

.highlight-item i {
    color: #ffeb3b;
}

.youtube-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-youtube-watch,
.btn-youtube-channel {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-youtube-watch {
    background: #ff0000;
    color: white;
    border: 2px solid #ff0000;
}

.btn-youtube-watch:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-youtube-channel {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-youtube-channel:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.channel-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.channel-header {
    text-align: center;
    margin-bottom: 30px;
}

.channel-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.channel-header p {
    color: rgba(255,255,255,0.9);
}

.channel-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: #ffeb3b;
    margin-bottom: 10px;
    display: block;
}

.feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

/* YouTube Mobile Styles */
@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        padding: 6px;
    }
    
    .channel-info {
        padding: 20px;
    }
    
    .channel-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .youtube-links {
        gap: 8px;
    }
    
    .btn-youtube-watch,
    .btn-youtube-channel {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Contact Item Mobile Styles */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 1.5rem;
        padding: 0.8rem;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .contact-item div strong {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
}

/* Phone Number Mobile Styles */
@media (max-width: 768px) {
    .phone-numbers {
        gap: 0.6rem;
        margin-top: 0.6rem;
        flex-wrap: wrap;
    }
    
    .phone-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 8px;
        gap: 0.4rem;
        flex: 1;
        min-width: 140px;
    }
    
    .phone-link:hover {
        transform: none; /* Remove hover animation on mobile */
    }
    
    .phone-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .phone-buttons {
        gap: 0.5rem;
    }
    
    .phone-buttons .map-link-button {
        min-height: 44px;
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

/* Phone Number Small Mobile Styles */
@media (max-width: 480px) {
    .phone-numbers {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        border-radius: 8px;
        flex: none;
        min-width: auto;
    }
    
    
    .phone-buttons .map-link-button {
        min-height: 42px;
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

/* FAQ Slideshow Styles */
.faq-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.faq-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.faq-slide.active {
    opacity: 1;
    z-index: 10;
}

.faq-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* FAQ Slide Navigation */
.faq-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 20;
}

.faq-slide-nav button {
    background: rgba(231, 76, 60, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-slide-nav button:hover {
    background: rgba(231, 76, 60, 1);
    transform: scale(1.1);
}

.faq-slide-nav button:active {
    transform: scale(0.95);
}

/* FAQ Slide Indicators */
.faq-slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.faq-slide-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-slide-indicators .indicator.active {
    background: rgba(231, 76, 60, 1);
    transform: scale(1.2);
}

.faq-slide-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile FAQ Slideshow */
@media (max-width: 768px) {
    .faq-slideshow {
        height: 300px;
    }
    
    .faq-slide-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slide-caption {
        font-size: 0.8rem;
        padding: 15px 10px 10px;
    }
    
    .faq-slide-indicators .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* FAQ 캡션 모바일 반응형 */
    .faq-image-caption {
        padding: 1rem;
        margin-top: 0.8rem;
    }
    
    .faq-image-caption .caption-header h4 {
        font-size: 1.1rem;
    }
    
    .caption-subtitle {
        font-size: 0.85rem;
    }
    
    .restaurant-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.5rem;
    }
    
    .restaurant-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .instagram-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-slideshow {
        height: 250px;
    }
    
    .faq-slide-nav {
        padding: 0 10px;
    }
    
    .faq-slide-nav button {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .slide-caption {
        font-size: 0.75rem;
        padding: 12px 8px 8px;
    }
    
    /* FAQ 캡션 작은 화면 */
    .faq-image-caption {
        padding: 0.8rem;
    }
    
    .faq-image-caption .caption-header h4 {
        font-size: 1rem;
    }
    
    .caption-subtitle {
        font-size: 0.8rem;
    }
    
    .restaurant-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.4rem;
    }
    
    .restaurant-tag {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .instagram-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}