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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

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

.logo {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding: 8px 12px;
    transition: color 0.3s;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.menu-toggle:hover {
    color: #007bff;
}

.menu-icon {
    font-size: 24px;
    font-weight: bold;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    z-index: 2000;
    transition: right 0.3s ease-in-out;
}

.side-menu.active {
    right: 0;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.side-menu.active .side-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.side-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    overflow-y: auto;
}

.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.menu-close:hover {
    color: #007bff;
}

.menu-list {
    list-style: none;
    margin-top: 3rem;
}

.menu-list li {
    margin-bottom: 1rem;
}

.menu-list a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border-bottom: 1px solid #eee;
    transition: color 0.3s, padding-left 0.3s;
}

.menu-list a:hover {
    color: #007bff;
    padding-left: 1.5rem;
}

/* Main Content */
.main-content {
    margin-top: 90px;
}

.content-section {
    padding: 0;
}

.image-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-container p {
    color: #666;
    font-size: 14px;
}

/* 우측 하단 고정 버튼 */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.phone-btn {
    background: linear-gradient(135deg, #03C75A 0%, #02b350 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #02b350 0%, #03C75A 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(3, 199, 90, 0.4);
}

.kakao-btn {
    background: linear-gradient(135deg, #FEE500 0%, #FDD835 100%);
    color: #3C1E1E;
}

.kakao-btn:hover {
    background: linear-gradient(135deg, #FDD835 0%, #FEE500 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(253, 216, 53, 0.4);
}

.fixed-btn svg {
    width: 24px;
    height: 24px;
}

/* 반응형 */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .logo img {
        height: 50px;
    }

    .menu-toggle span:first-child {
        display: none;
    }

    .side-menu {
        max-width: 100%;
    }

    .side-menu-content {
        max-width: 100%;
    }

    .image-container {
        padding: 0;
    }

    .main-content {
        margin-top: 80px;
    }

    .content-section {
        padding: 0;
    }

    .fixed-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .fixed-btn {
        width: 50px;
        height: 50px;
    }

    .fixed-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .fixed-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .fixed-btn {
        width: 48px;
        height: 48px;
    }

    .fixed-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* 문의폼 스타일 - 네이버 스타일 (블랙 & 초록) */
.inquiry-section {
    padding: 4rem 0;
}

.inquiry-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 12px;
}

.inquiry-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #03C75A;
    text-shadow: 0 2px 8px rgba(3, 199, 90, 0.3);
}

.inquiry-form {
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(3, 199, 90, 0.2);
    border: 1px solid rgba(3, 199, 90, 0.3);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 16px;
    background-color: #0a0a0a;
    color: #fff;
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #03C75A;
    box-shadow: 0 0 0 3px rgba(3, 199, 90, 0.2);
    background-color: #111;
}

.form-group input::placeholder {
    color: #666;
}

.form-group select {
    color: #fff;
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #03C75A;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.3);
}

.submit-btn:hover {
    background-color: #02b350;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 199, 90, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(3, 199, 90, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 문의폼 반응형 */
@media (max-width: 768px) {
    .inquiry-section {
        padding: 2rem 0;
    }

    .inquiry-title {
        font-size: 24px;
        margin-bottom: 2rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }

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

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 15px;
    }

    .submit-btn {
        padding: 0.875rem;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .inquiry-container {
        padding: 0 15px;
    }

    .inquiry-form {
        padding: 1.25rem;
    }

    .inquiry-title {
        font-size: 20px;
    }
}

