/**
 * The Private 랜딩페이지 스타일
 * 프라이빗 공간 소개 및 예약 시스템
 */

/* ========================================
   기본 설정
   ======================================== */
.private-landing-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
}

.private-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.private-section {
    padding: 100px 0;
}

.private-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 12px;
}

.private-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.private-section-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
}

.private-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.private-section-header .private-section-desc {
    margin: 0 auto;
}

/* AOS 애니메이션 */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================
   히어로 섹션
   ======================================== */
.private-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a2520;
    overflow: hidden;
}

/* 히어로 배경 이미지 - Zoom 효과 */
.private-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: privateHeroZoom 7s ease-out forwards;
}

@keyframes privateHeroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.03);
    }
}

.private-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.private-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

.private-hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 4px 60px rgba(0,0,0,0.3);
}

.private-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 40px;
}

.private-hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #8b7355;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.private-hero-cta:hover {
    background: #6d5a44;
    transform: translateY(-2px);
}

.private-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.private-hero-scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.4);
    margin: 12px auto 0;
    position: relative;
    overflow: hidden;
}

.private-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #fff;
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* ========================================
   소개 섹션
   ======================================== */
.private-intro {
    background: #faf9f7;
}

.private-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.private-intro-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}

.private-intro-text p {
    margin-bottom: 16px;
}

.private-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.private-space-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0ddd8;
}

.space-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.space-info-item svg {
    color: #8b7355;
    flex-shrink: 0;
}

.space-info-item.amenities {
    flex-basis: 100%;
}

/* ========================================
   갤러리 섹션
   ======================================== */
.private-gallery {
    background: #fff;
}

.private-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.private-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.private-gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.private-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}

.private-gallery-item.large img {
    aspect-ratio: 1/1;
}

.private-gallery-item:hover img {
    transform: scale(1.05);
}

.private-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.private-gallery-item:hover .private-gallery-caption {
    transform: translateY(0);
}

/* ========================================
   예약 섹션
   ======================================== */
.private-reservation {
    background: #f5f3f0;
}

/* 전체 너비 달력 */
.private-full-calendar-wrap {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
    overflow: hidden;
}

.full-calendar {
    padding: 30px;
}

.full-calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
}

.calendar-month-year {
    font-size: 20px;
    font-weight: 600;
    min-width: 140px;
    text-align: center;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    color: #8b7355;
}

.full-calendar-grid {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.full-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.full-calendar-weekdays span {
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.full-calendar-weekdays .sun { color: #dc2626; }
.full-calendar-weekdays .sat { color: #2563eb; }

.full-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.full-calendar-day {
    min-height: 100px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.full-calendar-day:nth-child(7n) {
    border-right: none;
}

.full-calendar-day:hover:not(.disabled) {
    background: #faf9f7;
}

.full-calendar-day.disabled {
    background: #fafafa;
    cursor: default;
}

.full-calendar-day.today {
    background: #fffbeb;
}

.full-calendar-day.selected {
    background: #f5f0eb;
}

.full-calendar-day .day-number {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.full-calendar-day.disabled .day-number {
    color: #ccc;
}

.full-calendar-day.sun .day-number { color: #dc2626; }
.full-calendar-day.sat .day-number { color: #2563eb; }
.full-calendar-day.disabled.sun .day-number,
.full-calendar-day.disabled.sat .day-number { color: #ddd; }

.full-calendar-day .day-reservations {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.reservation-badge {
    display: block;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reservation-badge.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.reservation-badge.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.reservation-badge.status-completed {
    background: #e0e7ff;
    color: #3730a3;
}

/* 달력 푸터 */
.full-calendar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    background: #faf9f7;
    border-top: 1px solid #e5e5e5;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #666;
}

.legend-confirmed::before,
.legend-pending::before,
.legend-completed::before,
.legend-available::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: middle;
}

.legend-confirmed::before {
    background: #d1fae5;
    border: 1px solid #10b981;
}

.legend-pending::before {
    background: #fef3c7;
    border: 1px solid #f59e0b;
}

.legend-completed::before {
    background: #e0e7ff;
    border: 1px solid #6366f1;
}

.legend-available::before {
    background: #fff;
    border: 1px solid #ddd;
}

.price-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.price-info strong {
    font-size: 13px;
    color: #666;
}

.price-info span {
    font-size: 15px;
    font-weight: 600;
    color: #8b7355;
}

/* 예약 폼 섹션 */
.private-reservation-form-section {
    max-width: 900px;
    margin: 0 auto;
}

.private-reservation-form-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.reservation-notice {
    padding: 14px 16px;
    background: #fef3c7;
    border-radius: 4px;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* 폼 그리드 레이아웃 */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.form-row {
    margin-bottom: 0;
}

.form-row.full-width {
    grid-column: span 4;
}

.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.form-row .required {
    color: #dc2626;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="time"],
.form-row input[type="number"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #8b7355;
}

/* 인원수 입력 */
.guests-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guests-input-wrap input[type="number"] {
    width: 100px;
    text-align: center;
}

.guests-input-wrap input[type="number"]::-webkit-inner-spin-button,
.guests-input-wrap input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.guests-input-wrap input[type="number"] {
    -moz-appearance: textfield;
}

.guests-unit {
    font-size: 14px;
    color: #666;
}

.guests-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #b91c1c;
    font-size: 13px;
    line-height: 1.5;
}

.guests-warning svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8b7355;
}

.form-agreement span {
    font-size: 13px;
    color: #666;
}

.submit-btn {
    padding: 14px 40px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #6d5a44;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* ========================================
   운영정보 섹션
   ======================================== */
.private-info {
    background: #fff;
}

.private-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.private-hours-content {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.8;
}

.private-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.private-contact-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f5f3f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.private-contact-buttons a:hover {
    background: #8b7355;
    color: #fff;
}

.private-contact-buttons a svg {
    flex-shrink: 0;
}

.private-location-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
    margin-bottom: 24px;
}

.private-location-address svg {
    flex-shrink: 0;
    color: #8b7355;
    margin-top: 2px;
}

.private-map-container {
    border-radius: 8px;
    overflow: hidden;
}

.private-map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* ========================================
   푸터 로고 섹션
   ======================================== */
.private-footer-logo {
    background: #2a2520;
    padding: 80px 0;
}

.private-footer-content {
    text-align: center;
    color: #fff;
}

.private-footer-title {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    color: #c9a96e;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.private-footer-tagline {
    font-size: 14px;
    color: rgba(201, 169, 110, 0.7);
    letter-spacing: 0.1em;
}

/* ========================================
   라이트박스
   ======================================== */
.private-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.private-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 0.7;
    background: none;
}

/* ========================================
   모달
   ======================================== */
.private-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.private-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-icon {
    margin-bottom: 20px;
    color: #10b981;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.modal-close-btn {
    padding: 12px 40px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal-close-btn:hover {
    background: #6d5a44;
}

/* ========================================
   반응형
   ======================================== */
@media (max-width: 1024px) {
    .private-section {
        padding: 80px 0;
    }

    .private-intro-grid,
    .private-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .private-intro-image {
        order: -1;
    }

    .private-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .private-gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row.full-width {
        grid-column: span 2;
    }

    .full-calendar-day {
        min-height: 80px;
    }
}

@media (max-width: 768px) {
    .private-section {
        padding: 60px 0;
    }

    .private-section-title {
        font-size: 26px;
    }

    .private-hero {
        min-height: 500px;
    }

    .private-hero-title {
        font-size: 36px;
    }

    .private-gallery-grid {
        grid-template-columns: 1fr;
    }

    .private-gallery-item.large {
        grid-column: span 1;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-row.full-width {
        grid-column: span 1;
    }

    .form-footer {
        flex-direction: column;
        gap: 16px;
    }

    .submit-btn {
        width: 100%;
    }

    .full-calendar {
        padding: 16px;
    }

    .full-calendar-day {
        min-height: 70px;
        padding: 4px;
    }

    .full-calendar-day .day-number {
        font-size: 12px;
    }

    .reservation-badge {
        font-size: 10px;
        padding: 2px 4px;
    }

    .full-calendar-footer {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }

    .private-reservation-form-wrap {
        padding: 20px;
    }

    .calendar-legend {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .private-container {
        padding: 0 16px;
    }

    .private-hero-cta {
        padding: 14px 30px;
        font-size: 13px;
    }

    .space-info-item {
        flex-basis: 100%;
    }

    .price-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ========================================
   현장 방문 요청 섹션
   ======================================== */
.private-visit-request-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #faf9f7;
    border-radius: 12px;
}

.visit-cta-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

.visit-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.visit-request-btn:hover {
    background: #6d5a44;
    transform: translateY(-2px);
}

.visit-request-btn svg {
    flex-shrink: 0;
}

.visit-cta-notice {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}

/* CTA 버튼 그룹 */
.private-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.reservation-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-link-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.reservation-link-btn svg {
    flex-shrink: 0;
}

/* ========================================
   방문 요청 모달
   ======================================== */
.visit-form-modal {
    max-width: 560px;
    width: 94%;
    padding: 32px;
    max-height: 90vh;
    overflow-y: auto;
}

.visit-form-modal .modal-title {
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: transparent !important;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    padding: 0;
}

.modal-close-x:hover {
    color: #333;
    background: transparent !important;
}

.visit-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.visit-form-row {
    display: flex;
    flex-direction: column;
}

.visit-form-row.full-width {
    grid-column: span 2;
}

.visit-form-row > label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

/* 희망 시간 라디오 버튼 */
.visit-time-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.time-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.time-radio input[type="radio"] {
    display: none;
}

.time-radio span {
    display: inline-block;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    transition: all 0.2s ease;
}

.time-radio input[type="radio"]:checked + span {
    background: #8b7355;
    border-color: #8b7355;
    color: #fff;
}

.time-radio:hover span {
    border-color: #8b7355;
}

.visit-form-row label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.visit-form-row .required {
    color: #dc2626;
}

.visit-form-row input[type="text"],
.visit-form-row input[type="email"],
.visit-form-row input[type="tel"],
.visit-form-row input[type="date"],
.visit-form-row input[type="time"],
.visit-form-row input[type="number"],
.visit-form-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.visit-form-row input:focus,
.visit-form-row textarea:focus {
    outline: none;
    border-color: #8b7355;
}

/* 봇 방지 입력 필드 */
.captcha-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-question {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.captcha-input-wrap input[type="number"] {
    width: 80px;
    text-align: center;
}

.visit-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.visit-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.visit-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8b7355;
}

.visit-agreement span {
    font-size: 13px;
    color: #666;
}

.visit-submit-btn {
    padding: 14px 32px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.visit-submit-btn:hover:not(:disabled) {
    background: #6d5a44;
}

.visit-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* 예약 폼 버튼 비활성화 스타일 */
.submit-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .visit-form-modal {
        padding: 24px 20px;
    }

    .visit-form-grid {
        grid-template-columns: 1fr;
    }

    .visit-form-row.full-width {
        grid-column: span 1;
    }

    .visit-form-footer {
        flex-direction: column;
        gap: 16px;
    }

    .visit-submit-btn {
        width: 100%;
    }

    .private-visit-request-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

/* ========================================
   단독 예약 페이지 스타일
   ======================================== */
.private-reservation-page {
    margin-top: 0;
}

/* 예약 페이지에서 달력 숨김 */
.private-reservation-page .private-full-calendar-wrap {
    display: none !important;
}

.private-reservation-page .private-reservation {
    padding-top: 80px;
}

.private-reservation-page .reservation-page-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.private-reservation-page .reservation-page-footer p {
    margin: 0 0 20px;
    color: #6b7280;
    font-size: 15px;
}

.private-reservation-page .visit-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.private-reservation-page .visit-request-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.private-reservation-page .visit-request-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .private-reservation-page .private-reservation {
        padding-top: 60px;
    }

    .private-reservation-page .reservation-page-footer {
        margin-top: 40px;
        padding-top: 30px;
    }
}

/* ========================================
   이용 요금 안내 박스
   ======================================== */
.private-price-info-wrap {
    max-width: 900px;
    margin: 0 auto 40px;
}

.price-info-box {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.price-info-box strong {
    font-size: 15px;
    color: #666;
}

.price-info-box span {
    font-size: 18px;
    font-weight: 600;
    color: #8b7355;
}

/* ========================================
   시간 선택 및 이용 시간 표시
   ======================================== */
.time-duration-row {
    grid-column: span 1;
}

.time-duration-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f5f0eb 0%, #e8e2d9 100%);
    border-radius: 8px;
    border: 2px solid #8b7355;
}

.duration-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.duration-value {
    font-size: 20px;
    font-weight: 700;
    color: #8b7355;
}

@media (max-width: 1024px) {
    .time-duration-row {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .price-info-box {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .time-duration-row {
        grid-column: span 1;
    }

    .time-duration-display {
        justify-content: center;
    }
}
