/* 
 * Standard Coffee Truck - White/Yellow Theme (Restored)
 * Reference: https://mwpdemo52615.mycafe24.com/
 * User Design: White/Yellow Theme (Exact Match)
 */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

:root {
    --primary: #FFD200;
    /* Extract from ref button */
    --primary-text: #222222;
    --text-main: #333333;
    --text-sub: #666666;
    --border-color: #e5e5e5;
    --bg-light: #f8f9fa;
    --container: 1200px;
    --header-height: 80px;

    /* Social Colors */
    --naver-green: #03C75A;
    --insta-pink: #E1306C;
}

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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    word-break: keep-all;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* 1. Header (Ref Sync) */
header {
    background: #321E06;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: color 0.3s;
}

.nav-menu .cta-btn {
    display: none; /* 데스크톱에서 nav-menu 안의 CTA 버튼 숨김 */
}

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

/* 처음이예요 메뉴 하이라이트 - 박스 스타일 */
.nav-menu .nav-highlight {
    background: #C8A87C;
    color: #321E06 !important;
    padding: 4px 14px;
    border-radius: 15px;
    font-weight: 600;
    animation: navBoxPulse 2s ease-in-out infinite;
}

@keyframes navBoxPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(200, 168, 124, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(200, 168, 124, 0);
    }
}

.nav-menu .nav-highlight:hover {
    background: #fff;
    color: #321E06 !important;
}

.cta-btn {
    background: #000000;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.desktop-cta-group {
    display: flex;
    align-items: center;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
}

.desktop-cta-group .cta-btn {
    padding: 12px 22px;
    font-size: 15px;
    border-radius: 0;
    background: transparent;
    color: #FFF;
    font-weight: 500;
    white-space: nowrap;
}

.desktop-cta-group .cta-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: none;
}

.desktop-cta-group .cta-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.desktop-cta {
    display: block;
}

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

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.lang-toggle a {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Pretendard', sans-serif;
    padding: 6px 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.lang-toggle a:hover {
    color: #fff;
}

.lang-toggle a.active {
    color: #fff;
    font-weight: 700;
}

.lang-toggle .lang-divider {
    color: #666;
    font-size: 12px;
}

/* 2. Hero Slider */
.hero-slider {
    position: relative;
    height: 1150px;
    /* Tall like ref */
    background: #000;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 10; /* 비디오 위로 표시 */
}

.hero-title {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.3;
}

.hero-title strong {
    font-weight: 800;
}

.hero-desc {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    font-family: 'Pretendard';
    /* Serif might be cleaner but ref is sans */
}

/* Hero Text Group - 슬라이드별 텍스트 컨테이너 */
.hero-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-bottom: 20px;
}

/* Masktext - 개별 텍스트 라인 */
.masktext {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    opacity: 0;
}

.hero-text-group .masktext {
    font-size: 100px;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-desc.masktext {
    font-size: 28px;
    font-weight: 400;
    opacity: 0;
    margin-top: 15px;
}

/* Intro Slide Specific Styles (Matching Image) */
.hero-text-group.intro-type {
    gap: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-group.intro-type .masktext {
    line-height: 1.0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-text-group.intro-type .intro-line1 {
    font-size: 68px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 4px !important;
    letter-spacing: 0 !important;
}

.hero-text-group.intro-type .intro-line2 {
    font-size: 68px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 35px !important;
    letter-spacing: 0 !important;
}

.hero-text-group.intro-type .intro-line3 {
    font-size: 180px !important;
    font-weight: 900 !important;
    color: #C8A87C !important;
    letter-spacing: -8px !important;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
    overflow: visible !important;
}

.hero-text-group.intro-type .intro-line4 {
    font-size: 40px !important;
    font-weight: 800 !important;
    color: #C8A87C !important;
    letter-spacing: 32px !important;
    margin-top: -10px !important;
    margin-bottom: 55px !important;
    padding-left: 32px !important;
    word-spacing: 0 !important;
    line-height: 1.2 !important;
    overflow: visible !important;
}

.hero-desc.intro-sub {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 10px !important;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: 0.3px !important;
    max-width: 85% !important;
    line-height: 1.5 !important;
}

/* Slide-up 애니메이션 (아래→위) */
.slide.active .masktext.slide-up {
    animation: maskSlideUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* Slide-bottom 애니메이션 (위→아래) */
.slide.active .masktext.slide-bottom {
    animation: maskSlideBottom 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* 키프레임: 아래에서 위로 */
@keyframes maskSlideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 키프레임: 위에서 아래로 */
@keyframes maskSlideBottom {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slider Dots 개선 (원형) */
.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.dot.active {
    width: 10px !important;
    background: #C8A87C !important;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.1);
}

/* 좌우 화살표 버튼 */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: #C8A87C;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev {
    left: 230px;
}

.slider-next {
    right: 230px;
}

/* 동영상 슬라이드 처리 */
.video-slide {
    background: #000;
}

.video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}

/* 3. Gate Section (Split) */
.gate-section {
    padding: 180px 0 80px 0;
}

.gate-section .section-title {
    font-size: 64px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
}

.section-title .highlight {
    color: var(--primary);
    /* 노란색 텍스트, 배경 없음 */
    font-weight: 700;
}

.section-desc {
    font-size: 22px;
    color: var(--text-main);
    font-weight: 500;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gate-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
}

.gate-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    opacity: 0;
    transform: translateY(60px);
}

.gate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.gate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* 순차 애니메이션 */
.gate-card:nth-child(1) {
    transition-delay: 0.1s;
}

.gate-card:nth-child(2) {
    transition-delay: 0.2s;
}

.gate-header {
    background: var(--primary);
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    color: var(--primary-text);
}

.gate-slider {
    position: relative;
    width: 100%;
    height: 600px; /* 세로형태로 높이 증가 */
    overflow: hidden;
}

.gate-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gate-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .gate-slider {
        height: 450px; /* 모바일에서는 조금 작게 */
    }
}

.gate-tags {
    text-align: center;
    padding: 25px 30px;
    color: var(--text-sub);
    font-size: 18px;
    line-height: 2.2;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    word-spacing: 8px;
}

/* 4. Stats Section (Yellow BG) */
.stats-section {
    background: var(--primary);
    padding: 100px 0;
    text-align: center;
}

/* 섹션 타이틀 추가 */
.stats-section .section-title {
    font-size: 78px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
    color: #000000;
}

.stats-section .section-desc {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 50px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000000;
}

.stats-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 100px;
}

.stat-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    color: #000000;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stat-num {
    font-size: 80px;
    font-weight: 700;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* 5. Scroll Reveal */
.scroll-section {
    padding: 100px 0;
    background: #FBF2E9;
}

.scroll-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 왼쪽: Sticky 영역 */
.scroll-left {
    position: relative;
    height: 100%; /* 높이 확보 */
}

.scroll-sticky {
    position: sticky;
    top: 120px;
    height: fit-content; /* 컨텐츠 높이만큼 */
}

.accent-bar {
    width: 60px;
    height: 4px;
    background: #AD7242;
    margin-bottom: 30px;
}

.scroll-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
    color: #000;
}

.scroll-title .highlight {
    color: #AD7242;
}

.scroll-desc {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

/* 오른쪽: 카드 영역 */
.scroll-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 1200px; /* 충분한 높이 확보 */
}

.scroll-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 순차 딜레이 추가 (더 자연스러운 등장) */
.scroll-card:nth-child(1) {
    transition-delay: 0s;
}

.scroll-card:nth-child(2) {
    transition-delay: 0.1s;
}

.scroll-card:nth-child(3) {
    transition-delay: 0.2s;
}

.scroll-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000;
}

.card-content p {
    font-size: 16px;
    color: #666;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

/* 6. Carousel (Ref Design) */
.carousel-section {
    background: #ECEFF4;
    padding: 100px 0;
    overflow: hidden;
}

.carousel-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.carousel-title .highlight {
    color: var(--primary);
}

.carousel-desc {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: stretch;
    height: 100%;
}

.carousel-card {
    min-width: 33.333%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.carousel-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    background: white;
}

.carousel-content {
    background: white;
    padding: 25px;
    border-radius: 0 0 20px 20px;
    box-shadow: none;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.carousel-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.carousel-content p {
    font-size: 16px;
    color: #666;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.carousel-content .support-type {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.carousel-content .review {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-top: 8px;
    font-weight: 400;
    flex: 1;
}

.carousel-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* 6-2. Instagram Grid Section */
.insta-grid-section {
    background: #ECEFF4;
    padding: 100px 0;
    overflow: hidden;
}

.insta-grid-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.insta-grid-header {
    text-align: center;
    margin-bottom: 40px;
}

.insta-grid-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.insta-grid-sub {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 65px;
}

.insta-grid-desc {
    font-size: 16px;
    color: #888;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
}

.insta-profile-link {
    position: absolute;
    right: 65px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.insta-handle {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.insta-follow-btn {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 6px 18px;
    border: 1.5px solid #1a1a1a;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
}

.insta-profile-link:hover .insta-follow-btn {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

.insta-grid-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.insta-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.insta-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-grid-item:hover img {
    transform: scale(1.08);
}

.insta-grid-item:hover .insta-overlay {
    opacity: 1;
}

.insta-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.insta-arrow:hover {
    background: #1a1a1a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* 7. New Sections (FAQ, Social, Banner) - Added for White Theme */

/* 유튜브 영상 섹션 */
.video-section {
    background: #f5f5f5;
    padding: 100px 0;
}

.video-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.video-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #000;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.video-title .highlight-bg {
    background: linear-gradient(transparent 60%, #C8A87C 60%);
    font-weight: 500;
    display: inline;
}

.video-desc {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 60px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 580px; /* 높이를 고정하여 제어 */
    background: #f5f5f5; /* 섹션 배경색과 일치시켜 틈새 방지 */
    position: relative;
}

.video-wrapper iframe {
    display: block;
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03); /* 비디오를 3% 키워서 테두리 검은 선을 강제로 가림 */
    background: transparent;
}

.sequence-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.sequence-video.active {
    opacity: 1;
    z-index: 1;
}

/* 맛있는 메뉴 안내 섹션 */
.menu-section {
    background: #2a2a2a;
    padding: 100px 0;
    overflow: hidden;
}

.menu-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.menu-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFFFFF;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.menu-title .highlight-yellow {
    color: var(--primary);
}

/* 탭 버튼 */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.menu-tab {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 12px 35px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.menu-tab.active {
    background: var(--primary);
    color: #000000;
    border-color: var(--primary);
}

.menu-tab:hover {
    transform: scale(1.05);
}

/* 슬라이더 */
.menu-slider-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-slider-container {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.menu-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-card {
    min-width: 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

.slider-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
}

.slider-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.menu-card-content {
    text-align: center;
    padding: 25px 15px;
}

.menu-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.menu-card-content p {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.6;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.menu-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s;
    margin-top: 125px;
}

.menu-arrow:hover {
    background: var(--primary);
    color: #000;
}

/* 인디케이터 */
.menu-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.menu-indicator.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 100px 0 0 0;
    margin-bottom: 0;
}

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

.faq-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    color: #000;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
}

.faq-q {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 20px;
    color: #000;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
}

.faq-q:hover {
    color: #000;
    background: rgba(254, 229, 0, 0.1);
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
    padding-right: 15px;
}

.faq-icon {
    font-size: 32px;
    color: #999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 100;
    line-height: 1;
}

.faq-q.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
}

.faq-a > div {
    overflow: hidden;
    padding-top: 20px;
}

.faq-q.active + .faq-a {
    grid-template-rows: 1fr;
}

.faq-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #321E06;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(50, 30, 6, 0.3);
}

.faq-btn:hover {
    background: #4a2e0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 30, 6, 0.4);
}

@media (max-width: 768px) {
    .faq-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Social */
/* 소셜 배너 섹션 */
.social-section {
    background: #ffffff;
    padding: 70px 0;
    position: relative;
}

.social-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.social-card {
    position: relative;
    display: block;
    border-radius: 25px;
    text-decoration: none;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    border: none;
    background: transparent;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.social-image-wrapper img {
    width: 75%;
    height: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-card:hover .social-image-wrapper img {
    transform: scale(0.9);
    opacity: 0.3;
    filter: blur(2px);
}

/* 말풍선 툴팁 - 정중앙 플로팅 스타일 */
.social-tooltip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    background: linear-gradient(135deg, #FFD200 0%, #FFA500 100%);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(255, 210, 0, 0.5);
    z-index: 10;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    border: 2px solid #fff;
}

.social-tooltip::before {
    display: none;
}

.social-card:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

/* Inquiry Banner */
.inquiry-banner {
    background: var(--primary);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.inquiry-char {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 4px solid black;
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    header {
        padding: 0 20px;
    }

    .nav-container {
        height: 60px;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .lang-toggle {
        order: 2;
        margin-right: 15px;
    }

    .nav-container {
        justify-content: flex-start;
    }

    .logo {
        flex: 1;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #321E06;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 40px;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-container {
        position: relative;
    }

    .desktop-cta-group {
        display: none;
    }

    .desktop-cta {
        display: none;
    }

    .nav-menu .cta-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 12px 20px;
        border-radius: 20px;
        font-size: 15px;
    }

    .nav-menu .cta-btn.cta-estimate {
        background: #000000;
        color: #FFF;
        margin-top: 6px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-slider {
        height: 730px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text-group .masktext {
        font-size: 40px;
    }

    .hero-desc.masktext {
        font-size: 20px;
    }

    /* Intro Slide Mobile Adjustments */
    .hero-text-group.intro-type .intro-line1 {
        font-size: 18px !important;
        margin-bottom: 3px !important;
    }

    .hero-text-group.intro-type .intro-line2 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    .hero-text-group.intro-type .intro-line3 {
        font-size: 60px !important;
        letter-spacing: -3px !important;
        margin-top: 0 !important;
    }

    .hero-text-group.intro-type .intro-line4 {
        font-size: 16px !important;
        letter-spacing: 10px !important;
        padding-left: 10px !important;
        margin-top: -10px !important;
        margin-bottom: 25px !important;
    }

    .hero-desc.intro-sub {
        font-size: 12px !important;
        max-width: 85% !important;
    }

    .slider-arrow {
        display: none;
    }

    .section-title {
        font-size: 36px;
    }

    .gate-section .section-title {
        font-size: 42px;
    }

    .section-desc {
        font-size: 16px;
    }

    .gate-header {
        font-size: 20px;
        min-height: 60px;
        padding: 20px 15px;
    }

    .gate-tags {
        font-size: 14px;
        word-spacing: 5px;
    }

    .gate-container {
        grid-template-columns: 1fr;
    }

    .scroll-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scroll-sticky {
        position: relative;
        top: 0;
    }

    .scroll-title {
        font-size: 36px;
    }

    .scroll-desc {
        font-size: 16px;
    }

    .stats-section .section-title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .stats-section .section-desc {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-num {
        font-size: 60px;
    }

    .stat-item h3 {
        font-size: 18px;
    }

    .carousel-title {
        font-size: 36px;
    }

    .carousel-desc {
        font-size: 16px;
    }

    .carousel-card {
        min-width: 100%;
    }

    .carousel-card img {
        height: 280px;
    }

    .carousel-arrow {
        display: none;
    }

    /* Instagram Grid Mobile */
    .insta-grid-section {
        padding: 60px 0;
    }

    .insta-grid-sub {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .insta-profile-link {
        position: static;
    }

    .insta-grid-title {
        font-size: 32px;
    }

    .insta-grid-desc {
        font-size: 15px;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }

    .insta-arrow {
        display: none;
    }

    .insta-handle {
        font-size: 15px;
    }

    .video-title {
        font-size: 36px;
    }

    .video-desc {
        font-size: 16px;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-q {
        font-size: 18px;
    }

    .faq-a {
        font-size: 15px;
    }

    .menu-title {
        font-size: 36px;
    }

    .menu-tabs {
        flex-wrap: wrap;
    }

    .menu-tab {
        font-size: 16px;
        padding: 10px 25px;
    }

    .menu-card {
        min-width: 100%;
    }

    .slider-card {
        min-width: 100%;
    }

    .menu-arrow {
        display: none;
    }

    .social-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .social-card {
        padding: 0;
        min-height: auto;
    }

    .social-image-wrapper {
        padding: 5px;
    }

    .social-image-wrapper img {
        width: 60%;
        max-width: 80px;
    }

    .social-tooltip {
        font-size: 12px;
        padding: 8px 15px;
    }

    .social-label {
        font-size: 24px;
    }

    .social-title {
        font-size: 18px;
    }

    .social-icon img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 150px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .contact-image img {
        width: 200px;
        height: 200px;
    }

    .contact-content {
        text-align: center;
    }

    .contact-title {
        font-size: 48px;
    }

    .contact-desc {
        font-size: 18px;
    }

    .contact-btn {
        font-size: 16px;
        padding: 15px 35px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-info h3 {
        font-size: 28px;
    }

    .footer-info p {
        font-size: 18px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* 건적문의 섹션 */
.contact-section {
    background: #F4EDE7;
    padding: 100px 0;
}

.contact-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.contact-image {
    flex-shrink: 0;
}

.contact-image img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

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

.contact-content {
    text-align: left;
}

.contact-title {
    font-size: 64px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
}

.contact-desc {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-btn {
    display: inline-block;
    background: #222222;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 온라인 견적 문의 페이지 */
.quote-section {
    padding: 100px 0;
    background: #F8F8F8;
    min-height: calc(100vh - 200px);
}

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

.quote-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: center;
}

.quote-desc {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 40px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: center;
}

#quoteForm {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-group .required {
    color: #FF5757;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD200;
    box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.1);
}

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

.submit-button {
    width: 100%;
    padding: 18px;
    background: #FFD200;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    background: #FFE066;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 0, 0.4);
}

.submit-button:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 푸터 */
.footer {
    background: #181818;
    padding: 60px 0;
    color: #FFFFFF;
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-info {
    flex: 1;
}

.footer-info h3 {
    font-size: 32px;
    font-weight: 600;
    color: #C8A87C;
    margin-bottom: 20px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
}

.footer-info p {
    font-size: 20px;
    font-weight: 300;
    color: #B0B0B0;
    margin-bottom: 6px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
}

.footer-info .copyright {
    margin-top: 20px;
    font-size: 17px;
    color: #C8A87C;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-icon {
    width: 60px;
    height: 60px;
    background: #404040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 28px;
}

.footer-social-icon span {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-social-icon:hover {
    background: #505050;
    transform: translateY(-3px);
}

/* 메뉴 페이지 스타일 */
.menu-page-section {
    padding: 120px 0 100px;
    background: #ffffff;
    min-height: calc(100vh - var(--header-height));
}

.menu-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.menu-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.menu-image-wrapper {
    margin: 0 auto;
    max-width: 1200px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-image {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.menu-page-actions {
    margin-top: 60px;
}

.menu-back-btn {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
    text-decoration: none;
}

.menu-back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 210, 0, 0.5);
}

/* ============================================
   메뉴안내 페이지 전용 스타일 (텍스트 기반)
   ============================================ */
.menu-info-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fffef0 50%, #fff9e6 100%);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    position: relative;
}

.menu-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 210, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 210, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.menu-info-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.menu-info-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.menu-info-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(255, 210, 0, 0.2);
    position: relative;
    display: inline-block;
}

.menu-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 3px;
}

.menu-category-section {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.category-note {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-top: 15px;
}

.premium-header {
    margin-top: 50px;
    margin-bottom: 30px;
}

.category-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.menu-info-section .menu-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 210, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-info-section .menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 210, 0, 0.2);
    border-color: rgba(255, 210, 0, 0.4);
}

.menu-info-section .menu-card-header {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 210, 0, 0.2);
}

.menu-info-section .menu-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.menu-info-section .menu-card-header.basic h3 {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.3);
}

.menu-info-section .menu-card-header.standard h3 {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.3);
}

.menu-info-section .menu-card-header.premium h3 {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.3);
}

.menu-info-section .menu-card-header.special h3 {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.3);
}

.menu-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.menu-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.menu-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items ul li {
    font-size: 16px;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.6;
}

.menu-items ul li:last-child {
    border-bottom: none;
}

.menu-items ul li:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

.premium-card,
.special-card {
    border: 3px solid rgba(255, 210, 0, 0.3);
    background: linear-gradient(135deg, #fffef0 0%, #fff9e6 100%);
}

.dessert-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid rgba(255, 210, 0, 0.2);
}

.dessert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dessert-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 210, 0, 0.15);
    transition: all 0.3s ease;
}

.dessert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 210, 0, 0.2);
    border-color: rgba(255, 210, 0, 0.4);
}

.dessert-card.seasonal {
    border: 3px solid rgba(255, 210, 0, 0.4);
    background: linear-gradient(135deg, #fffef0 0%, #fff9e6 100%);
    position: relative;
}

.dessert-card.seasonal::before {
    content: '시즌 한정';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 210, 0, 0.4);
}

.dessert-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 210, 0, 0.3);
}

.dessert-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.seasonal-note {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.dessert-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
    text-align: right;
}

.dessert-options {
    margin-top: 15px;
}

.dessert-options p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.dessert-options p:last-child {
    margin-bottom: 0;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .menu-info-title {
        font-size: 32px;
    }

    .category-title {
        font-size: 26px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dessert-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        padding: 25px;
    }

    .dessert-card {
        padding: 25px;
    }
}

.menu-back-btn:hover {
    background: #ffc800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 0, 0.4);
}

@media (max-width: 768px) {
    .menu-page-section {
        padding: 80px 0 60px;
    }

    .menu-page-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .menu-image-wrapper {
        padding: 20px;
    }

    .menu-back-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* ========================================
   오른쪽 날개배너 (Floating Banner)
======================================== */

.floating-banner {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 60px;
    /* background: #FFD200; */ /* 제거 - 개별 색상 사용 */
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-text {
    position: absolute;
    left: 60px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-right: 20px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hover 효과 - 확장 */
.float-btn:hover {
    width: 180px;
    background: #000;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transform: translateX(-5px);
}

.float-btn:hover .float-icon {
    color: #FFD200;
}

.float-btn:hover .float-text {
    opacity: 1;
    transform: translateX(0);
    color: #FFD200;
}

/* 날개배너 개별 색상 설정 */
.float-phone {
    background: #FF5757;
}

.float-quote {
    background: #FFD200;
}

.float-estimate {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 68, 68, 0.8);
        transform: scale(1.08);
    }
}

.float-instagram {
    background: #E1306C;
}

.float-blog {
    background: #03C75A;
}

/* 전화 아이콘 및 텍스트 색상 (흰색) */
.float-phone .float-icon {
    color: #FFF;
}

.float-phone .float-text {
    color: #FFF;
}

/* 셀프견적 아이콘 및 텍스트 색상 (흰색) */
.float-estimate .float-icon {
    color: #FFF;
}

.float-estimate .float-text {
    color: #FFF;
    font-weight: 700;
}

/* 전화 hover 효과 */
.float-phone:hover {
    background: #000;
}

.float-phone:hover .float-icon {
    color: #FF5757;
}

.float-phone:hover .float-text {
    color: #FF5757;
}

/* 셀프견적 hover 효과 */
.float-estimate:hover {
    background: #000;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.float-estimate:hover .float-icon {
    color: #FF4444;
}

.float-estimate:hover .float-text {
    color: #FF4444;
}

/* Instagram & Blog hover 효과 */
.float-instagram:hover {
    background: #000;
}

.float-blog:hover {
    background: #000;
}

/* Instagram & Blog 아이콘 색상 (기본) */
.float-instagram .float-icon {
    color: #FFF;
}

.float-blog .float-icon {
    color: #FFF;
}

/* Instagram & Blog 아이콘 색상 (hover) */
.float-instagram:hover .float-icon {
    color: #E1306C;
}

.float-blog:hover .float-icon {
    color: #03C75A;
}

/* Instagram & Blog 텍스트 색상 (기본) */
.float-instagram .float-text {
    color: #FFF;
}

.float-blog .float-text {
    color: #FFF;
}

/* Instagram & Blog 텍스트 색상 (hover) */
.float-instagram:hover .float-text {
    color: #E1306C;
}

.float-blog:hover .float-text {
    color: #03C75A;
}

/* Active 효과 */
.float-btn:active {
    transform: translateX(-5px) scale(0.95);
}


/* 애니메이션 (페이지 로드 시) */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.float-btn {
    animation: slideInRight 0.6s ease-out backwards;
}

.float-btn:nth-child(1) { animation-delay: 0.1s; }
.float-btn:nth-child(2) { animation-delay: 0.2s; }
.float-btn:nth-child(3) { animation-delay: 0.3s; }
.float-btn:nth-child(4) { animation-delay: 0.4s; }
.float-btn:nth-child(5) { animation-delay: 0.5s; }
.float-btn:nth-child(6) { animation-delay: 0.6s; }

/* 모바일 반응형 (768px 이하 - 숨김) */
@media (max-width: 768px) {
    .floating-banner {
        display: none;
    }
    
    /* 모바일에서 셀프견적 버튼 유지 */
    
    .float-btn {
        width: auto;
        min-width: 70px;
        height: 70px;
        flex: 1 1 auto;
        border-radius: 12px;
        margin: 0;
        padding: 10px 4px 8px 4px;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        gap: 3px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: visible;
    }

    .float-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .float-icon svg {
        width: 20px;
        height: 20px;
    }

    .float-text {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        position: static !important;
        font-size: 11px;
        font-weight: 600;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
        left: auto;
        width: 100%;
        overflow: visible;
    }
    
    /* 모바일에서 hover 효과 최소화 */
    .float-btn:hover {
        transform: none !important;
        width: auto !important;
        min-width: 70px !important;
        background: inherit !important;
    }

    .float-btn:hover .float-icon {
        color: inherit !important;
    }

    .float-btn:hover .float-text {
        opacity: 1 !important;
        transform: none !important;
        color: inherit !important;
    }
    
    /* 개별 버튼 색상 유지 */
    .float-phone {
        background: #FF5757;
    }

    .float-phone .float-icon {
        color: #fff;
    }

    .float-phone .float-text {
        color: #fff;
    }

    .float-quote {
        background: #FFD200;
    }

    .float-quote .float-icon {
        color: #000;
    }

    .float-quote .float-text {
        color: #000;
    }

    .float-instagram {
        background: #E1306C;
    }

    .float-instagram .float-icon {
        color: #fff;
    }

    .float-instagram .float-text {
        color: #fff;
    }

    .float-blog {
        background: #03C75A;
    }

    .float-blog .float-icon {
        color: #fff;
    }

    .float-blog .float-text {
        color: #fff;
    }
    
    .float-btn:active {
        transform: scale(0.95);
        opacity: 0.9;
    }
}

/* 태블릿 (768px ~ 1024px) - 작게 표시 */
@media (max-width: 1024px) {
    .floating-banner {
        right: 10px;
        gap: 6px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-icon {
        width: 50px;
        height: 50px;
    }
    
    .float-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .float-btn:hover {
        width: 160px;
    }
}

/* 스크롤 시 부드러운 이동 */
html {
    scroll-behavior: smooth;
}

/* ============================================
   이용안내 페이지 전용 스타일
   ============================================ */
.info-page-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fffef0 50%, #fff9e6 100%);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    position: relative;
}

.info-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 210, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 210, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.info-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.info-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.info-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(255, 210, 0, 0.2);
    position: relative;
    display: inline-block;
}

.info-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 3px;
}

.info-section {
    border-radius: 30px;
    padding: 50px 45px;
    margin-bottom: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 210, 0, 0.15);
}

.brown-bg { 
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border: 2px solid rgba(255, 210, 0, 0.2);
}

.brown-bg:hover {
    border-color: rgba(255, 210, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 210, 0, 0.2);
}

.cream-bg { 
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
    color: #333;
    border: 2px solid rgba(255, 210, 0, 0.15);
    box-shadow: 0 10px 40px rgba(255, 210, 0, 0.1);
}

.cream-bg:hover {
    border-color: rgba(255, 210, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 210, 0, 0.15);
}

.dark-brown-bg { 
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    color: #fff;
    border: 2px solid rgba(255, 210, 0, 0.2);
}

.dark-brown-bg:hover {
    border-color: rgba(255, 210, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 210, 0, 0.2);
}

.section-subtitle {
    font-size: 19px;
    margin-bottom: 15px;
    opacity: 0.95;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 45px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-title.dark { 
    color: #1a1a1a; 
    position: relative;
    padding-bottom: 20px;
}

.section-title.dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 210, 0, 0.4);
}

.section-title.white { 
    color: #fff; 
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 서비스 진행과정 */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 550px;
    margin: 0 auto;
}

.step-item {
    background: #fff;
    color: #4a332d;
    padding: 20px 35px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #e4b85c;
}

.step-label {
    background: linear-gradient(135deg, var(--primary) 0%, #ffd700 100%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 210, 0, 0.4);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.step-text {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
}

/* 필수 확인사항 */
.alert-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 35px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 45px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 210, 0, 0.3);
    border: 2px solid rgba(255, 210, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 210, 0, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.alert-title {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.5);
}

.alert-content {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 500;
}

.alert-content strong {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 210, 0, 0.4);
}

.alert-note {
    font-size: 15px;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

.inner-title {
    font-size: 28px;
    text-align: center;
    margin: 50px 0 35px;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.inner-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(255, 210, 0, 0.4);
}

.requirement-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.req-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.req-badge {
    background: linear-gradient(135deg, #fffef0 0%, #fff9e6 100%);
    color: #1a1a1a;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 19px;
    border: 3px solid var(--primary);
    display: block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.req-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.req-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 210, 0, 0.5);
    border-color: #ffd700;
}

.req-badge:hover::before {
    left: 100%;
}

.car-info-img {
    margin: 45px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e8ddd4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 10px;
}

.car-info-img img { 
    width: 100%; 
    display: block; 
    border-radius: 15px;
}

.elec-info {
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    padding: 35px;
    border-radius: 20px;
    margin-top: 45px;
    border: 2px solid #e8ddd4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.elec-flex {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.elec-img {
    width: 180px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.elec-text h3 {
    font-size: 22px;
    color: #4a332d;
    margin-bottom: 12px;
    font-weight: 700;
}

.elec-text p { 
    font-size: 17px; 
    margin-bottom: 10px; 
    color: #555;
    line-height: 1.6;
}

.elec-text .note { 
    font-size: 14px; 
    color: #888; 
    display: block; 
    margin-bottom: 18px;
    font-style: italic;
}

.elec-list { 
    list-style: none; 
    padding: 0; 
    margin-top: 15px;
}

.elec-list li { 
    font-weight: 700; 
    color: #c0392b; 
    margin-bottom: 8px;
    font-size: 16px;
}

.deposit-info {
    margin-top: 60px;
    border-top: 3px solid #e8ddd4;
    padding-top: 45px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.grid-box {
    background: linear-gradient(135deg, #fcfcfc 0%, #fafafa 100%);
    padding: 30px;
    border-radius: 18px;
    border: 2px solid #e8ddd4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.grid-box h4 { 
    font-size: 20px; 
    margin-bottom: 20px; 
    color: #1a1a1a; 
    border-left: 5px solid var(--primary); 
    padding-left: 15px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 210, 0, 0.2);
}

.grid-box p { 
    font-size: 16px; 
    margin-bottom: 10px; 
    color: #555;
    line-height: 1.7;
}

.bottom-notes {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(255, 210, 0, 0.1);
}

.bottom-notes p {
    margin-bottom: 12px;
}

.bottom-notes p:last-child {
    margin-bottom: 0;
}

/* 커피차 이용안내 (Dark Section) */
.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.guide-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.guide-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.guide-item h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary);
    border-bottom: 2px solid rgba(255, 210, 0, 0.4);
    padding-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.3);
}

.guide-item ul { 
    list-style: none; 
    padding: 0; 
}

.guide-item ul li { 
    font-size: 16px; 
    margin-bottom: 14px; 
    line-height: 1.7; 
    color: rgba(255, 255, 255, 0.9);
    padding-left: 5px;
}

.info-table {
    width: 100%;
    margin: 15px 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.info-table td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 8px rgba(255, 210, 0, 0.3);
}

.table-note { 
    font-size: 13px !important; 
    color: var(--primary) !important; 
    margin-top: 15px !important;
    font-style: italic;
    text-shadow: 0 0 6px rgba(255, 210, 0, 0.3);
}

.price-formula {
    background: linear-gradient(135deg, #fff 0%, #fffef0 100%);
    color: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.price-ex {
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    padding: 18px;
    border-radius: 12px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(255, 210, 0, 0.2);
}

.highlight-item {
    background: rgba(255, 210, 0, 0.15);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 3px solid #FFD200;
    margin-top: 6px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .info-page-section {
        padding: 100px 0 60px;
    }

    .info-main-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .gate-section .section-title {
        font-size: 32px;
    }

    .info-section {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .info-grid, 
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .elec-flex {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .elec-img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .requirement-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .req-item {
        max-width: 100%;
    }

    .req-badge {
        width: 100%;
    }

    .step-item {
        padding: 18px 25px;
    }

    .step-text {
        font-size: 17px;
    }

    .alert-box {
        padding: 25px 20px;
    }

    .alert-content {
        font-size: 20px;
    }
}

/* 디자인 안내 페이지 스타일 */
.design-image-main {
    text-align: center;
    margin: 40px 0;
}

.design-image-main img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.design-size-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.size-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.size-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 210, 0, 0.2);
}

.size-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.size-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 5px 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.output-service {
    margin-top: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
    padding: 40px 35px;
    border-radius: 25px;
    border: 2px solid rgba(255, 210, 0, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(255, 210, 0, 0.25);
}

.service-badge {
    flex-shrink: 0;
}

.service-item p {
    margin: 0;
    flex: 1;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #ffd700 100%);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 210, 0, 0.3);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    white-space: nowrap;
}

.service-item p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.price-item span {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.price-item strong {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.designer-info {
    margin-top: 30px;
}

.designer-process ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.designer-process li {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    margin: 12px 0;
    padding-left: 0;
    padding-right: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.designer-process li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    margin-right: 12px;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.designer-process li.sub-item {
    padding-left: 35px;
}

.design-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 210, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item p {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .design-size-list {
        gap: 20px;
    }

    .size-item {
        padding: 20px;
    }

    .size-item h3 {
        font-size: 18px;
    }

    .size-item p {
        font-size: 14px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .service-badge {
        font-size: 18px;
        padding: 10px 20px;
    }

    .service-item p {
        font-size: 16px;
    }

    .service-badge {
        font-size: 16px;
        padding: 8px 16px;
    }

    .service-item p {
        font-size: 14px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px;
    }

    .price-item span,
    .price-item strong {
        font-size: 16px;
    }

    .designer-process li {
        font-size: 16px;
        line-height: 1.8;
    }

    .design-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-item {
        padding: 15px;
    }

    .gallery-item p {
        font-size: 16px;
    }
}