/* ============================================
   BODMI ANIMAL CLINIC - Style Sheet
   Modern, Warm, Professional Design
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2a7d6e;
    --primary-dark: #1e5c51;
    --primary-light: #e0f2ef;
    --primary-soft: #f0faf8;
    --accent: #e8a838;
    --accent-light: #fff8e8;
    --bg: #ffffff;
    --bg-warm: #faf8f5;
    --bg-section: #f5f3f0;
    --text: #2c2c2c;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border: #e8e4e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-info .divider {
    opacity: 0.3;
}

.top-sns a {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.top-sns a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42,125,110,0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero: Fixed text left + Rotating photo right
   ============================================ */
.hero-slider {
    position: relative;
    background: linear-gradient(135deg, #0f1f2e 0%, #1a2e3a 100%);
    overflow: hidden;
}

/* Background: hospital exterior, always visible, dimmed */
.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-senior-care.jpg') center 65%/cover;
    opacity: 0.2;
}

.hero-slider > .slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Fixed content (left side) */
.hero-fixed-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 48px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    min-height: 580px;
}

.hero-fixed-inner {
    max-width: 500px;
}

.slide-badge {
    display: inline-block;
    background: rgba(42,125,110,0.2);
    color: #7ddfcb;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(42,125,110,0.3);
}

.hero-fixed-inner h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 24px;
}

.hero-fixed-inner h1 span {
    color: #7ddfcb;
}

.hero-keywords {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-keywords li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hero-keywords li svg {
    flex-shrink: 0;
}

.hero-slogan {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Rotating photo area (right side) */
.slider-wrapper {
    position: relative;
}

.slider-track {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

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

/* Slide text overlay (on each photo) */
.slide-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
}

/* Slide caption */
.slide-caption {
    position: absolute;
    bottom: 12px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 50px;
}

.caption-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7ddfcb;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Slider dots (below the photo) */
.slider-dots {
    position: relative;
    margin-top: 16px;
    left: 0;
    display: flex;
    justify-content: center;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: #7ddfcb;
    width: 24px;
    border-radius: 4px;
}

/* Slider arrows (on the photo) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.5);
    color: #fff;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

@media (max-width: 1024px) {
    .hero-fixed-content {
        grid-template-columns: 1fr;
        padding: 50px 24px 80px;
        min-height: auto;
    }

    .slider-track {
        max-width: 500px;
        margin: 0 auto;
    }

    .slider-dots {
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .hero-fixed-inner h1 {
        font-size: 32px;
    }

    .hero-keywords li {
        font-size: 13px;
    }

    .slider-track {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-fixed-inner h1 {
        font-size: 28px;
    }

    .slide-actions {
        flex-direction: column;
    }

    .slide-actions .btn {
        justify-content: center;
    }

    .slide-caption {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42,125,110,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide-content {
        padding: 0 24px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-desc br {
        display: none;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 440px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-actions {
        flex-direction: column;
    }

    .slide-actions .btn {
        justify-content: center;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    padding: 60px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-list li {
    font-size: 12px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 500;
}

/* Grooming Section (below services) */
.grooming-section {
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.grooming-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.grooming-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.grooming-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff8e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grooming-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.grooming-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.grooming-card-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.grooming-card-wide:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.grooming-card-left {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grooming-card-left h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.grooming-card-left p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.grooming-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    transition: var(--transition);
}

.grooming-card-wide:hover .grooming-view-btn {
    background: var(--primary-dark);
}

.grooming-card-right {
    background: #f9f7f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.grooming-card-right img {
    width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .grooming-card-wide {
        grid-template-columns: 1fr;
    }

    .grooming-card-right {
        padding: 0 16px 16px;
    }
}

@media (max-width: 768px) {
    .grooming-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Team Section
   ============================================ */
.team {
    position: relative;
    background: var(--bg-warm);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-photo {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8f0ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(42,125,110,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-info {
    padding: 28px;
}

.team-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-specialties {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.team-specialties span {
    font-size: 12px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 50px;
}

.team-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.team-card-main .team-photo {
    background: linear-gradient(135deg, var(--primary) 0%, #3a9d8e 100%);
}

.team-card-accent .team-photo {
    background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
}

.team-card-main .team-photo-placeholder {
    background: rgba(255,255,255,0.15);
}

.team-card-main .team-photo-placeholder svg {
    stroke: #fff;
}

.team-staff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.staff-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.staff-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.staff-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.staff-item p {
    font-size: 13px;
    color: var(--text-muted);
}

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

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

.facility-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.facility-visual {
    height: 180px;
    background: linear-gradient(135deg, #f5f3f0, #ebe8e4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), #3a9d8e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(42,125,110,0.3);
}

.facility-info {
    padding: 24px;
}

.facility-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.facility-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-img + .facility-icon-wrap {
    display: none;
}

/* Facility Photo Gallery (wide cards with images) */
.facility-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 32px;
}

.facility-photo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.facility-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.facility-photo-wide {
    grid-column: 1 / -1;
}

.facility-photo-wide .facility-photo {
    height: 320px;
}

.facility-photo {
    height: 240px;
    background: linear-gradient(135deg, #f5f3f0, #ebe8e4);
    position: relative;
    overflow: hidden;
}

.facility-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.facility-photo-card:hover .facility-photo img {
    transform: scale(1.03);
}

.facility-photo-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0faf8, #e0f2ef);
}

.facility-photo.no-img img {
    display: none;
}

.facility-photo:not(.no-img) .facility-photo-fallback {
    display: none;
}

.facility-photo-info {
    padding: 24px;
}

.facility-photo-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.facility-photo-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.facility-photo-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* X-ray showcase section */
.xray-showcase {
    margin-top: 48px;
    background: #1a1a2e;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 48px;
}

.xray-header {
    text-align: center;
    margin-bottom: 32px;
}

.xray-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.xray-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.xray-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.6fr;
    gap: 16px;
    align-items: center;
}

.xray-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.xray-grid-vd-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 16px;
    align-items: stretch;
}

.xray-grid-vd-layout .xray-vd {
    height: 100%;
}

.xray-grid-vd-layout .xray-vd img {
    height: 100%;
    object-fit: contain;
    background: #111;
}

.xray-lateral-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.xray-lateral-stack .xray-item {
    flex: 1;
}

.xray-lateral-stack .xray-item img {
    height: 100%;
    object-fit: contain;
    background: #111;
}

@media (max-width: 480px) {
    .xray-grid-vd-layout {
        grid-template-columns: 1fr;
    }
}

.xray-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #111;
}

.xray-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.xray-item:hover img {
    opacity: 1;
}

.xray-item .xray-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.xray-item-tall {
    grid-row: span 2;
}

/* Cert section */
.cert-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.cert-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.cert-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.cert-photos img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: #fff;
    padding: 8px;
}

@media (max-width: 480px) {
    .cert-photos {
        grid-template-columns: 1fr;
    }
}

.cert-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.cert-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.cert-info p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .facility-gallery {
        grid-template-columns: 1fr;
    }

    .facility-photo-wide .facility-photo {
        height: 220px;
    }

    .xray-showcase {
        padding: 24px;
    }

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

    .xray-item-tall {
        grid-row: span 1;
    }

    .cert-section {
        grid-template-columns: 1fr;
    }
}

/* Reserve section extras */
.reserve-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.reserve-item strong {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text);
}

.reserve-naver-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #03c75a;
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    margin-top: 8px;
}

.reserve-naver-btn:hover {
    background: #02b350;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3,199,90,0.3);
}

.reserve-notice {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-top: 16px;
    font-size: 12px;
    color: #b45309;
    line-height: 1.5;
}

.reserve-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Naver button */
.btn-naver {
    background: #03c75a;
    color: #fff;
}

.btn-naver:hover {
    background: #02b350;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3,199,90,0.3);
}

/* Contact Channels */
.contact-channels {
    margin-top: 48px;
}

.channels-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    color: #fff;
    position: relative;
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.channel-phone { background: linear-gradient(135deg, #2a7d6e, #3a9d8e); }
.channel-naver { background: linear-gradient(135deg, #03c75a, #02a84d); }
.channel-kakao { background: linear-gradient(135deg, #fee500, #fdd835); color: #3C1E1E; }
.channel-blog { background: linear-gradient(135deg, #2db400, #1a8a00); }

.channel-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.channel-card strong {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.channel-value {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 4px;
}

.channel-desc {
    font-size: 12px;
    opacity: 0.7;
}

.kakao-qr {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-top: 12px;
    background: #fff;
    padding: 4px;
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .channels-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .channel-card {
        padding: 20px 12px;
    }
}

/* Voucher photos */
/* Voucher layout (left: short photo + card, right: tall photo) */
.voucher-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.voucher-col-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.voucher-col-left img,
.voucher-col-right img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.voucher-col-right {
    display: flex;
}

.voucher-col-right img {
    object-fit: cover;
    height: 100%;
}

.voucher-card-small {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1a5276, #2471a3);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    flex: 1;
}

.voucher-card-small strong {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.voucher-card-small svg {
    flex-shrink: 0;
    stroke: #fff;
}

@media (max-width: 480px) {
    .voucher-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .voucher-photos {
        grid-template-columns: 1fr;
    }
}

/* Naver Booking Modal */
.naver-booking-modal {
    max-width: 440px;
}

.naver-booking-body {
    padding: 0;
    height: 70vh;
    max-height: 600px;
}

.naver-booking-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Grooming Modal (wide, left-right layout) */
.grooming-modal-wide {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}

.grooming-modal-layout {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
}

.grooming-modal-left {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fffde7, #fff8e1);
}

.grooming-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(245,127,23,0.15);
}

.grooming-modal-left h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.grooming-modal-left > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.grooming-modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.grooming-modal-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.grooming-modal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f57f17;
}

.grooming-modal-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.grooming-modal-phone a:hover {
    background: var(--primary-dark);
}

.grooming-modal-right {
    padding: 16px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow: hidden;
}

.grooming-img-wrap {
    position: relative;
    overflow: auto;
    flex: 1;
    max-height: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    cursor: zoom-in;
    -webkit-overflow-scrolling: touch;
}

.grooming-img-wrap.zoomed {
    cursor: grab;
}

.grooming-img-wrap.zoomed:active {
    cursor: grabbing;
}

.grooming-img-wrap img {
    width: 100%;
    display: block;
    transition: width 0.3s ease;
}

.grooming-img-wrap.zoomed img {
    width: 250%;
}

.grooming-zoom-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.grooming-img-wrap.zoomed + .grooming-zoom-hint {
    display: none;
}

@media (max-width: 768px) {
    .grooming-modal-layout {
        grid-template-columns: 1fr;
    }

    .grooming-modal-left {
        padding: 24px;
    }

    .grooming-modal-right {
        padding: 16px;
        max-height: 50vh;
    }
}

/* Voucher banner */
.voucher-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a5276, #2471a3);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 32px;
    color: #fff;
}

.voucher-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voucher-icon svg {
    stroke: #fff;
}

.voucher-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.voucher-text p {
    font-size: 14px;
    opacity: 0.85;
}

.voucher-detail {
    margin-left: auto;
    flex-shrink: 0;
}

.voucher-detail span {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .voucher-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 24px;
    }
    .voucher-detail {
        margin-left: 0;
    }
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1e6b5e 50%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -100px;
    right: -50px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    bottom: -80px;
    left: 10%;
}

.cta-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.cta-actions .btn-white {
    font-size: 16px;
    padding: 16px 32px;
}

/* ============================================
   Guide Section
   ============================================ */
.guide {
    background: var(--bg-warm);
}

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

.guide-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}

.guide-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-light);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #f0ede8;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 14px 0;
    font-size: 15px;
}

.hours-table .day {
    font-weight: 600;
    color: var(--text);
}

.hours-table .time {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

.hours-table .lunch {
    background: var(--accent-light);
    border-radius: var(--radius-sm);
}

.hours-table .lunch td {
    padding: 14px 8px;
}

.hours-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 12px;
    background: #fff8f0;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: #b45309;
    line-height: 1.5;
}

.hours-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.reserve-item {
    margin-bottom: 20px;
}

.reserve-item:last-of-type {
    margin-bottom: 24px;
}

.reserve-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text);
}

.reserve-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.reserve-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.reserve-phone a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42,125,110,0.3);
}

.visit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.visit-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.visit-list li strong {
    white-space: nowrap;
}

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

.location .container {
    max-width: 1400px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.8fr 0.7fr;
    gap: 24px;
    align-items: start;
}

.location-map {
    height: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.location-item p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.location-item a {
    color: var(--primary);
    font-weight: 600;
}

.location-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.text-muted {
    color: var(--text-muted);
    font-size: 13px;
}

/* Location detail */
.location-detail {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    align-items: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.location-detail-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.location-detail-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-detail-info h3::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
}

.location-detail-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 4px;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .location-detail {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #1a2332;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo strong {
    font-size: 18px;
    color: #fff;
}

.footer-logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer-brand > p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-blog {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.4;
}

/* ============================================
   Mobile Bottom Bar
   ============================================ */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 999;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-bar {
    display: none;
    grid-template-columns: repeat(4, 1fr);
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mobile-bar-item:hover,
.mobile-bar-item:active {
    color: var(--primary);
}

/* ============================================
   Contact Modal
   ============================================ */
.contact-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.contact-modal-overlay {
    align-items: flex-start;
    padding-top: 40px;
}

.contact-modal {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    overflow-y: auto;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.contact-modal-overlay.active .contact-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: rgba(0,0,0,0.1);
}

.modal-header {
    text-align: center;
    padding: 36px 32px 24px;
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(42,125,110,0.15);
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.modal-body {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info-row,
.modal-hours {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.modal-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.modal-value {
    display: block;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.modal-phone {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.modal-phone:hover {
    color: var(--primary-dark);
}

.modal-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.modal-hours-table td {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0ede8;
}

.modal-hours-table td:first-child {
    font-weight: 600;
    color: var(--text);
    padding-right: 20px;
}

.modal-hours-table td:last-child {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

.modal-hours-table tr:last-child td {
    border-bottom: none;
}

.modal-hours-table .lunch td {
    color: #b45309;
    background: #fffbf0;
    padding: 8px 4px;
    border-radius: 4px;
}

.modal-hours-table .lunch td:last-child {
    color: #b45309;
}

.modal-footer {
    padding: 0 32px 32px;
    display: flex;
    gap: 10px;
}

.modal-call-btn {
    flex: 1;
    justify-content: center;
}

.modal-map-btn {
    flex: 1;
    justify-content: center;
}

/* Kakao QR Modal */
.kakao-modal {
    max-width: 400px;
}

.kakao-qr-body {
    padding: 32px;
    text-align: center;
}

.kakao-qr-large {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.kakao-id {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.kakao-id strong {
    color: var(--text);
}

.btn-kakao-chat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fee500;
    color: #3C1E1E;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.btn-kakao-chat:hover {
    background: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254,229,0,0.4);
}

.kakao-notice {
    font-size: 12px;
    color: var(--text-muted);
}

.modal-kakao {
    padding: 0 32px 24px;
    text-align: center;
}

.modal-kakao button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #3C1E1E;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: #fee500;
    cursor: pointer;
    transition: var(--transition);
}

.modal-kakao button:hover {
    background: #fdd835;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254,229,0,0.4);
}

@media (max-width: 480px) {
    .contact-modal {
        border-radius: var(--radius-lg);
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 0 20px 24px;
        flex-direction: column;
    }

    .modal-footer .btn {
        justify-content: center;
    }

    .modal-kakao {
        padding: 0 20px 20px;
    }
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: if JS hasn't run after 2s, show everything */
@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-inner {
        height: 64px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 16px;
        font-size: 17px;
        border-bottom: 1px solid var(--border);
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    .section {
        padding: 60px 0;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-staff {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .mobile-bottom-bar {
        display: grid;
    }

    body {
        padding-bottom: 70px;
    }

    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .location-map {
        height: 280px;
    }
}
