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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
    word-wrap: break-word;
    word-break: keep-all;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info, .telegram-info {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.contact-info:hover, .telegram-info:hover {
    opacity: 0.8;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.consultation-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.telegram-info i {
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-size: 1.4rem;
    color: #ff6b35;
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
}

.nav-logo h1 a {
    color: inherit;
    text-decoration: none;
}

.nav-subtitle {
    font-size: 0.7rem;
    color: #666;
    margin-top: 2px;
    font-weight: 400;
    white-space: nowrap;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

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

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

.nav-phone:hover {
    background: #ff6b35;
    color: white;
}

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

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 50%, #ffd4a3 100%);
    min-height: 500px;
    overflow: hidden;
}

/* 텔레그램 배너 */
.telegram-banner {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.telegram-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0088cc;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    border: 2px solid transparent;
}

.telegram-banner-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    color: white;
    text-decoration: none;
}

.telegram-banner-btn i {
    font-size: 20px;
}

.telegram-banner-btn span {
    font-family: 'Noto Sans KR', sans-serif;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    margin-bottom: 2rem;
}

.hero-subtitle p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tag {
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 700;
}

/* 서비스 토글 헤더 */
.service-toggle-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    position: relative;
}

.service-toggle-header:hover {
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.service-toggle-dots {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ff6b35;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-toggle-header:hover .dot {
    background-color: #f7931e;
    transform: scale(1.2);
}

.service-toggle-header.active {
    background-color: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.service-toggle-header.active .dot {
    background-color: #f7931e;
    transform: scale(1.1);
    animation: pulse 2s infinite;
}

.service-toggle-header.active .section-title {
    color: #f7931e;
}

/* 도트 펄스 애니메이션 */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* 서비스 그리드 토글 */
.services-grid {
    transition: all 0.5s ease;
    overflow: hidden;
}

.services-grid.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    transform: translateY(-20px);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 700;
}

.service-subtitle {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-prices {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.duration {
    color: #666;
    font-weight: 500;
}

.price {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.about-highlight p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-highlight strong {
    font-size: 1.2rem;
}

.about-description {
    margin-bottom: 2rem;
}

.about-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.about-tags .tag {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-caption {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.image-caption p {
    color: #666;
    line-height: 1.6;
}

/* Reservation Info Section */
.reservation-info {
    padding: 80px 0;
    background: white;
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reservation-text {
    margin-bottom: 3rem;
}

.reservation-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.feature-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

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

.contact-info-extended {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.contact-info-extended h3 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 2rem;
    color: #ff6b35;
}

.contact-method h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-method span {
    color: #666;
    font-size: 0.9rem;
}

.contact-note {
    text-align: center;
    padding: 1.5rem;
    background: #fff5f0;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.contact-note p {
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.contact-info .section-title {
    color: white;
    text-align: left;
    margin-bottom: 2rem;
}

.contact-highlight {
    margin-bottom: 3rem;
}

.phone-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: #333;
}

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-contact p:hover {
    opacity: 0.8;
}

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

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

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

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

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

.footer-tags {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-tags span {
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.modal-close:hover {
    color: #667eea;
}

#modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
/* 태블릿 반응형 */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    section {
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .services, .about, .contact, .reservation-info, .faq, .service-details {
        padding: 40px 0;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .top-bar {
        display: flex;
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .top-bar-content {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .contact-info, .telegram-info {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }
    
    .phone-number {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .consultation-text {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .telegram-info span {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header {
        top: 0;
        z-index: 10001;
    }
    
    .hero {
        margin-top: 80px;
        padding: 40px 0;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-image {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        padding-top: 80px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: auto;
        margin: 0;
    }
    
    .nav-close-btn {
        background: #ff6b35;
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    }
    
    .nav-close-btn:hover {
        background: #f7931e;
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
        border: 2px solid transparent;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #333;
        margin: 0 20px;
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
        border-color: #ff6b35;
        transform: translateY(-2px);
    }
    

    .nav-logo h1 {
        font-size: 1.1rem;
        line-height: 1.2;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .nav-phone {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .nav-phone span {
        display: inline;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        word-break: keep-all;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle p {
        word-wrap: break-word;
        word-break: keep-all;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .service-toggle-header {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        width: 100%;
        margin: 1rem 0;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        border-radius: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }
    
    .service-card {
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .reservation-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .feature-box h4 {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .phone-number-large {
        font-size: 2rem;
    }
}

/* 소형 모바일 반응형 */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .top-bar {
        padding: 4px 0;
        font-size: 0.8rem;
    }
    
    .top-bar-content {
        padding: 0 10px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .contact-info, .telegram-info {
        width: 100%;
        justify-content: center;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
    
    .consultation-text {
        font-size: 0.7rem;
    }
    
    .telegram-info span {
        font-size: 0.7rem;
    }
    
    .nav-logo h1 {
        font-size: 0.9rem;
        max-width: 150px;
    }
    
    .nav-phone {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .hero {
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-image img {
        min-height: 200px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-toggle-header {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .dot {
        width: 5px;
        height: 5px;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .about-highlight {
        padding: 1.5rem;
    }
    
    .about-highlight p {
        font-size: 1rem;
    }
    
    .about-highlight strong {
        font-size: 1.1rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }

    .service-card,
    .contact-form {
        margin: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* 모든 텍스트 요소에 반응형 적용 */
* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    word-break: keep-all;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* 모든 섹션이 잘리지 않도록 설정 */
section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 컨테이너 오버플로우 방지 */
.container {
    overflow: hidden;
    position: relative;
}

/* 매우 작은 화면을 위한 추가 설정 */
@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
    
    .top-bar {
        padding: 3px 0;
        font-size: 0.7rem;
    }
    
    .top-bar-content {
        padding: 0 5px;
        flex-direction: column;
        gap: 3px;
    }
    
    .phone-number {
        font-size: 0.8rem;
    }
    
    .consultation-text {
        font-size: 0.6rem;
    }
    
    .telegram-info span {
        font-size: 0.6rem;
    }
    
    .nav-logo h1 {
        font-size: 0.8rem;
        max-width: 120px;
    }
    
    .nav-phone {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 0.8rem;
    }
    
    .about-highlight {
        padding: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 120px;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Brand Details Styles */
.brand-details {
    margin: 3rem 0;
}

.brand-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-left-color: #f7931e;
}


.brand-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.brand-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.brand-features {
    list-style: none;
    padding: 0;
}

.brand-features li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.brand-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

.brand-features li:last-child {
    border-bottom: none;
}

/* 브랜드 섹션 반응형 */
@media (max-width: 480px) {
    .brand-item {
        padding: 1.5rem;
    }
}

.brand-features strong {
    color: #ff6b35;
    font-weight: 600;
}

/* ===== SEO 및 성능 최적화 ===== */

/* 성능 최적화 */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 모바일 터치 최적화 */
button, a, input, select, textarea, .clickable {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 스크롤 최적화 */
html {
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
}

body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* 이미지 최적화 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 폰트 최적화 */

/* Core Web Vitals 최적화 */
.container {
    contain: layout style;
}

.service-card, .brand-item {
    contain: layout style paint;
}

/* 모바일 성능 최적화 */
@media (max-width: 768px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .service-card, .brand-item {
        will-change: transform;
    }
}

/* 접근성 개선 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 다크모드 지원 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .service-card, .brand-item {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
        border-left-color: #ff6b35;
    }
}

/* 고해상도 디스플레이 최적화 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-card, .brand-item {
        border-width: 0.5px;
    }
}

/* 인쇄 최적화 */
@media print {
    .top-bar, .header, .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .service-card, .brand-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* 접근성 개선 */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6b35;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: bold;
}

.skip-link:focus {
    top: 6px;
}

/* 포커스 표시 개선 */
*:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* 스크린 리더 전용 텍스트 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 모바일 최적화 추가 */
@media (max-width: 480px) {
    .skip-link {
        font-size: 14px;
        padding: 6px;
    }
    
    /* 터치 타겟 최소 크기 보장 */
    button, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* 모바일에서 텍스트 크기 최적화 */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
}

/* About Image Styles */
.about-image {
    margin: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-left-color: #f7931e;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.image-caption p {
    color: #666;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 768px) {
    .about-image {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .image-caption h3 {
        font-size: 1.2rem;
    }
    
    .image-caption p {
        font-size: 0.9rem;
    }
}

/* FAQ Styles */
.faq {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-items {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.faq-question h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-bottom: 1px solid #ff6b35;
}

.faq-item.active .faq-question h4 {
    color: #ff6b35;
}

@media (max-width: 768px) {
    .faq {
        padding: 2rem 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* Service Areas Styles */
.service-areas {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.service-areas h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-areas ul {
    list-style: none;
    padding: 0;
}

.service-areas li {
    padding: 0.3rem 0;
    color: #555;
}

/* Reservation Process Styles */
.reservation-process {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.reservation-process h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reservation-process ol {
    padding-left: 1.5rem;
}

.reservation-process li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.6;
}

/* Safety Notice Styles */
.safety-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.safety-notice h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.safety-notice ul {
    list-style: none;
    padding: 0;
}

.safety-notice li {
    padding: 0.3rem 0;
    color: #856404;
}

/* Customer Promise Styles */
.customer-promise {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

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

.customer-promise > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.promise-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-5px);
}

.promise-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.promise-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.promise-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.promise-note {
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    line-height: 1.6;
}

/* FAQ Styles */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-items {
    margin: 3rem 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

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

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

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

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

.faq-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-note p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.faq-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-buttons .btn {
    min-width: 150px;
}

/* Service Details Styles */
.service-details {
    padding: 80px 0;
    background: white;
}

.service-details-content {
    max-width: 1000px;
    margin: 0 auto;
}

.details-text {
    margin: 3rem 0;
    text-align: center;
}

.details-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.seasonal-services {
    margin: 3rem 0;
}

.seasonal-services h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.seasonal-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.seasonal-item:hover {
    transform: translateY(-5px);
}

.seasonal-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.seasonal-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.seasonal-item p {
    color: #666;
    line-height: 1.6;
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }