/* 기본 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 메타 픽셀 광고 오버레이 차단 */
div[style*="position: fixed"],
div[style*="z-index: 999"],
div[style*="z-index: 9999"],
div[style*="pointer-events: none"],
div[style*="background: rgba(0, 0, 0, 0.8)"],
div[style*="background: rgba(0, 0, 0, 0.9)"] {
    pointer-events: none !important;
}

/* Facebook 광고 관련 요소 차단 */
div[id*="facebook"],
div[class*="facebook"],
div[style*="facebook"] {
    pointer-events: none !important;
}

/* Meta 픽셀 광고 무한 로딩 방지 - 더 강력한 차단 */
div[style*="position: fixed"][style*="top: 0"][style*="left: 0"],
div[style*="position: fixed"][style*="width: 100%"],
div[style*="position: fixed"][style*="height: 100%"],
iframe[src*="facebook.com"],
iframe[src*="connect.facebook.net"] {
    display: none !important;
    pointer-events: none !important;
}

/* 메타 픽셀 광고 오버레이 완전 차단 */
body > div[style*="position: fixed"]:not(.container):not(#application-form) {
    pointer-events: none !important;
    display: none !important;
}

body {
    font-family: 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

section {
    margin: 0;
    padding: 0;
}

.section-2-5 + .section-3 {
    margin-top: 0 !important;
}

.section-2-5 {
    margin-bottom: 0 !important;
}

.section-3 {
    margin-top: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}


/* 1~2번 섹션 통합 배경 (bg1) */
.bg1-background {
    width: 100%;
    background: url('images/bg1.jpg') center center / cover no-repeat;
    position: relative;
}

/* 1번 섹션: image1 */
.section-1 {
    width: 100%;
    height: auto;
    min-height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.section1-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

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

/* 2번 섹션: 신청폼 */
.section-2 {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 0 20px;
    margin-bottom: 0;
}

.section2-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.section2-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section2-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section2-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.section2-form {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input[type="text"]:invalid,
.form-group input[type="tel"]:invalid {
    border-color: rgba(255, 100, 100, 0.6);
    box-shadow: 0 0 5px rgba(255, 100, 100, 0.3);
}

.form-group input[type="text"]:valid,
.form-group input[type="tel"]:valid {
    border-color: rgba(100, 255, 100, 0.6);
    box-shadow: 0 0 5px rgba(100, 255, 100, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.privacy-link {
    color: #ffeb3b;
    text-decoration: none;
    margin-left: 5px;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
    animation: pulseButton 2s infinite;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    background: #1a1a1a;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulseButton {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 61, 46, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(11, 61, 46, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 61, 46, 0);
    }
}

.btn-text {
    margin-right: 8px;
}

.btn-icon {
    font-size: 1.1rem;
}

/* 2.5번 섹션: image6 */
.section-2-5 {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: white;
    margin-top: 0;
    margin-bottom: 0;
}

.section2-5-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0;
}

.section2-5-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.section2-5-image:hover {
    transform: scale(1.02);
}

/* 3번 섹션: image6 */
.section-3 {
    width: 100%;
    position: relative;
    display: block;
    padding: 0;
    background: white;
    margin: 0;
    line-height: 0;
}

.section3-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0;
}

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

.section3-image:hover {
    transform: scale(1.01);
}

/* 프리미엄 문의폼 섹션 */
.premium-contact-section {
    width: 100%;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: white;
}

.premium-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.premium-form-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 60px 20px;
}

.premium-form-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.premium-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-form-desc {
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.premium-form {
    width: 100%;
}

.premium-input-group {
    margin-bottom: 20px;
}

.premium-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.premium-input::placeholder {
    color: #999;
}

.premium-input:focus {
    border-color: #061a3a;
    background: #f9f9f9;
    box-shadow: 0 0 0 4px rgba(6, 26, 58, 0.1);
}

.premium-privacy {
    margin-bottom: 25px;
    padding: 0 4px;
}

.premium-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffeb3b;
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.premium-privacy input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.premium-submit-btn {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #061a3a 0%, #0b3d2e 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(6, 26, 58, 0.3);
}

.premium-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 26, 58, 0.4);
}

.premium-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(6, 26, 58, 0.3);
}

.premium-submit-btn .btn-icon {
    font-size: 1.4rem;
}

/* 반응형 */
@media (max-width: 768px) {
    .premium-contact-section {
        min-height: 600px;
        padding: 0;
    }
    
    .premium-form-wrapper {
        padding: 50px 20px;
    }
    
    .premium-form-box {
        padding: 40px 30px;
        border-radius: 16px;
    }
    
    .premium-form-title {
        font-size: 1.8rem;
    }
    
    .premium-form-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .premium-input {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .premium-submit-btn {
        padding: 18px 28px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .premium-contact-section {
        min-height: 550px;
        padding: 0;
    }
    
    .premium-form-wrapper {
        padding: 40px 15px;
    }
    
    .premium-form-box {
        padding: 35px 25px;
        border-radius: 14px;
    }
    
    .premium-form-title {
        font-size: 1.6rem;
    }
    
    .premium-form-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .premium-input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .premium-privacy label {
        font-size: 0.85rem;
    }
    
    .premium-submit-btn {
        padding: 16px 24px;
        font-size: 1.1rem;
    }
}

/* tree2_2 하단 투명 문의폼 (인라인) */
.section-3-form-inline {
    background: transparent;
    padding: 20px;
}

.section3-form-inline-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-inline {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.transparent-input {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
}

.transparent-input::placeholder {
    color: rgba(255,255,255,0.75);
}

.inline-privacy {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .form-inline {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .inline-privacy {
        font-size: 0.9rem;
    }
}

/* 3번 섹션 문의폼 스타일 */
.section-3-with-form {
    min-height: 700px;
    position: relative;
    height: auto;
}

.section-3-with-form .section3-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.section3-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    min-height: 700px;
}

.section3-form-container {
    background: rgba(0, 0, 0, 0.75);
    padding: 40px 35px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section3-form-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.section3-form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-align: center;
}

.section3-form {
    width: 100%;
}

.section3-form .form-group {
    margin-bottom: 20px;
}

.section3-form input[type="text"],
.section3-form input[type="tel"] {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-sizing: border-box;
}

.section3-form input[type="text"]:focus,
.section3-form input[type="tel"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.section3-form input[type="text"]::placeholder,
.section3-form input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* 5번 섹션: image5 */
.section-5 {
    width: 100%;
    position: relative;
    display: block;
    padding: 0;
    background: white;
    margin: 0;
    line-height: 0;
}

.section5-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.section5-image:hover {
    transform: scale(1.01);
}

.section5-btn {
    padding: 18px 30px;
    background: #000000;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulseButton 2s infinite;
}

.section5-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.section5-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.section5-btn:hover::before {
    left: 100%;
}

.section5-btn:active {
    background: #1a1a1a;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* 6번 섹션: 트리 컴퍼니 문의하기 */
.section-6 {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #061a3a 0%, #0b3d2e 100%);
    margin-top: 0;
    margin-bottom: 0;
}

.section6-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section6-btn {
    padding: 20px 40px;
    background: linear-gradient(135deg, #0b3d2e 0%, #061a3a 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulseButton 2s infinite;
    min-width: 280px;
    z-index: 9999 !important;
    pointer-events: auto !important;
    box-shadow: 0 8px 20px rgba(11, 61, 46, 0.4);
}

.section6-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.section6-btn:hover {
    background: linear-gradient(135deg, #0e4d3a 0%, #082548 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(11, 61, 46, 0.6);
}

.section6-btn:hover::before {
    left: 100%;
}

.section6-btn:active {
    background: linear-gradient(135deg, #0a3829 0%, #051d35 100%);
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(11, 61, 46, 0.4);
}

.co2 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgbox {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.imgbox img:hover {
    transform: scale(1.02);
}

/* 4번 섹션: image4 */
.section-4 {
    width: 100%;
    position: relative;
    display: block;
    padding: 0;
    background: white;
    margin: 0;
    line-height: 0;
}

.section4-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0;
}

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

.section4-image:hover {
    transform: scale(1.01);
}

/* 5번 섹션: image5 */
.section-5 {
    width: 100%;
    height: 800px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background: white;
}

.section5-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.section5-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.section5-image:hover {
    transform: scale(1.03);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .section-1 {
        height: auto;
        min-height: 500px;
        padding: 40px 15px;
    }
    
    .section-2 {
        height: 500px;
        padding: 40px 15px;
    }
    
    .section-2-5 {
        height: 100vh;
        padding: 0;
        background: black;
        margin-bottom: 0 !important;
    }
    
    .section2-5-image {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }
    
    .section-3 {
        height: auto;
        padding: 0;
        background: white;
        margin-top: 0 !important;
        margin-bottom: 0;
    }
    /* tree2_2 하단 폼 섹션은 고정 높이 해제 */
    .section-3-with-form {
        height: auto !important;
        min-height: 600px;
    }
    .section-3-bottom .section3-form-overlay,
    .section3-form-overlay.bottom {
        padding: 40px 15px 16px;
        min-height: 600px;
    }
    
    .section3-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .imgbox img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }
    
    .section-4 {
        height: auto;
        padding: 0;
        background: white;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .section4-container {
        padding: 0;
        margin: 0;
    }
    
    .section4-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .section-5 {
        height: auto;
        padding: 0;
        background: white;
        margin-top: 0 !important;
        margin-bottom: 0;
    }
    
    .section5-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .section5-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .section-6 {
        height: 150px;
        padding: 30px 15px;
    }
    
    .section6-btn {
        padding: 18px 30px;
        font-size: 1.2rem;
        min-width: 250px;
    }
    
    .section2-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .section2-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .section2-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .section2-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .section2-form {
        max-width: 100%;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"] {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .section1-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .section3-image,
    .section4-image {
        border-radius: 0;
    }
    
    /* 3번 섹션 문의폼 반응형 */
    .section-3-with-form {
        min-height: 600px;
    }
    
    .section3-form-overlay {
        padding: 60px 15px;
        min-height: 600px;
    }
    
    .section3-form-container {
        padding: 30px 25px;
    }
    
    .section3-form-title {
        font-size: 1.6rem;
    }
    
    .section3-form-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .section-1 {
        height: auto;
        min-height: 450px;
        padding: 30px 10px;
    }
    
    .section-2 {
        height: 450px;
        padding: 30px 10px;
    }
    
    .section-2-5 {
        height: 100vh;
        padding: 0;
        background: black;
        margin-bottom: 0 !important;
    }
    
    .section2-5-image {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }
    
    .section-3 {
        height: auto;
        padding: 0;
        background: white;
        margin-top: 0 !important;
        margin-bottom: 0;
    }
    /* tree2_2 하단 폼 섹션은 고정 높이 해제 */
    .section-3-with-form {
        height: auto !important;
        min-height: 520px;
    }
    .section-3-bottom .section3-form-overlay,
    .section3-form-overlay.bottom {
        padding: 30px 10px 14px;
        min-height: 520px;
    }
    
    .section3-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .imgbox img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }
    
    .section-4 {
        height: auto;
        padding: 0;
        background: white;
        margin-left: 0;
        margin-right: 0;
    }
    
    .section-5 {
        height: auto;
        padding: 0;
        background: white;
        margin-top: 0 !important;
        margin-bottom: 0;
    }
    
    .section5-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .section5-btn {
        padding: 12px 20px;
        font-size: 1rem;
        margin-top: 0;
    }
    
    .section-6 {
        height: 120px;
        padding: 20px 10px;
    }
    
    .section6-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
        min-width: 220px;
    }
    
    .section4-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .section-5 {
        height: 550px;
        padding: 50px 10px;
    }
    
    .section2-container {
        padding: 0 10px;
    }
    
    .section2-content {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .section2-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .section2-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"] {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .privacy-link {
        font-size: 0.8rem;
    }
    
    .section1-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    /* 3번 섹션 문의폼 반응형 (480px 이하) */
    .section-3-with-form {
        min-height: 550px;
    }
    
    .section3-form-overlay {
        padding: 50px 10px;
        min-height: 550px;
    }
    
    .section3-form-container {
        padding: 25px 20px;
    }
    
    .section3-form-title {
        font-size: 1.4rem;
    }
    
    .section3-form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .section3-form input[type="text"],
    .section3-form input[type="tel"] {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-1,
.section-2,
.section-3,
.section-4,
.section-5 {
    animation: fadeInUp 0.8s ease-out;
}

/* 푸터 */
.footer {
    background: linear-gradient(135deg, #061a3a 0%, #0b3d2e 100%);
    color: white;
    padding: 40px 0;
    margin-top: 0;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
}

/* 푸터 반응형 */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .footer-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-info p {
        font-size: 0.75rem;
    }
}

/* TOP 버튼 */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0b3d2e 0%, #061a3a 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11, 61, 46, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #0e4d3a 0%, #082548 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 61, 46, 0.6);
}

.scroll-top-btn:active {
    transform: translateY(-1px);
}

/* 플로팅 버튼들 */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn:active {
    transform: translateY(-1px);
}

/* 전화 버튼 */
.phone-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #20C55A, #0F7A6B);
}

/* 카카오톡 버튼 */
.kakao-btn {
    background: linear-gradient(135deg, #FEE500, #FFEB3B);
}

.kakao-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFC107);
}

.kakao-btn svg path:last-child {
    fill: #3C1E1E;
}

/* TOP 버튼 */
.top-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: none; /* 기본적으로 숨김 */
}

.top-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.top-btn.show {
    display: flex;
}

/* TOP 버튼 반응형 */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* 플로팅 버튼 반응형 */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .top-btn {
        display: flex; /* 모바일에서 TOP 버튼 표시 */
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .floating-buttons {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* 버튼 애니메이션 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.phone-btn {
    animation: pulse 2s infinite;
}

/* 카카오톡 버튼 펄스 애니메이션 */
@keyframes pulseKakao {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 229, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(254, 229, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 229, 0, 0);
    }
}

.kakao-btn {
    animation: pulseKakao 2s infinite 1s;
}