/* Location Page Styles */

/* ===== Quick Menu (다른 페이지와 동일) ===== */
.quick-menu {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    min-width: 180px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-menu-header {
    width: 100%;
    text-align: left;
    padding-bottom: 1rem;
    padding-left: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-nav {
    width: 100%;
}

.nav-section {
    width: 100%;
}

.quick-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-nav li {
    position: relative;
    width: 100%;
}

.quick-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.9rem;
    position: relative;
    border-left: 3px solid transparent;
}

.quick-nav .dot {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-nav .label {
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.quick-nav a:hover {
    background: rgba(0, 102, 204, 0.03);
    color: var(--text-dark);
}

.quick-nav a:hover .dot {
    background: var(--text-medium);
    transform: scale(1.2);
}

.quick-nav li.active a {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 232, 0.05));
    color: var(--primary-color);
    font-weight: 700;
    border-left: 3px solid var(--primary-color);
    transform: translateX(2px);
}

.quick-nav li.active .dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.4);
}

.quick-nav li.active .label {
    font-weight: 700;
}

.quick-menu-footer {
    width: 100%;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 102, 204, 0.2);
    text-align: left;
    padding-left: 0.75rem;
}

.quick-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-logo:hover {
    transform: scale(1.05);
}

.quick-logo img {
    width: 90px;
    height: auto;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.quick-logo:hover img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .quick-menu {
        display: none;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

/* Location Header */
.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.location-title .highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.location-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Location Tabs */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #0066cc, #00a8e8);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Location Content */
.location-content {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Location Layout */
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Map Section (Left) */
.map-section {
    position: sticky;
    top: 100px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 500px;
}

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

/* Info Section (Right) */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    border: 1px solid #f5f5f5;
}

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

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 168, 232, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.main-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.sub-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-item .label {
    display: inline-block;
    width: 60px;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.contact-item .value {
    color: #333;
    font-size: 1rem;
}

/* Transport Items */
.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.transport-item i {
    width: 32px;
    height: 32px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.transport-item strong {
    display: block;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.transport-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Facility Items */
.facility-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.facility-item:last-child {
    border-bottom: none;
}

.facility-item .label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.facility-item .value {
    color: #333;
    font-size: 1rem;
}



/* Hours Item in Card */
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-item .day {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.hours-item .time {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.hours-item.weekend .time {
    color: #e74c3c;
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.copy-toast i {
    color: #4caf50;
}

/* Animation */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .location-layout {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        position: relative;
        top: 0;
        height: 400px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-title {
        font-size: 1.8rem;
    }
    
    .location-subtitle {
        font-size: 1rem;
    }
    
    .location-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        height: 350px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto;
    }
    
    .landmarks-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .location-header {
        margin-bottom: 2.5rem;
    }
    
    .location-title {
        font-size: 1.5rem;
    }
    
    .map-section {
        height: 300px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item .label {
        width: auto;
        margin-bottom: 0.2rem;
    }
}