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

body {
    font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 60px; /* 고정 헤더를 위한 상단 패딩 */
}

/* 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 메인 미디어 섹션 */
.hero-media-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: url('../image/mainpo.png') center center / cover no-repeat;
    padding: 0;
    margin: -60px 0 0 0;
    display: flex;
    align-items: center;
}

.hero-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.media-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    height: 100vh;
}

.media-text {
    width: 100%;
    padding: 0 60px 0 60px;
    max-width: 100%;
    text-align: left;
}

.media-category {
    font-size: 24px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.media-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}



.highlight-green {
    color: #2c3e50;
}



.media-video {
    position: relative;
    width: 100%;
    padding: 0;
    text-align: left;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: contain;
    display: block;
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    aspect-ratio: 16/9;
    display: block;
    background: #000;
    border: none;
}



.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:not(.secondary) {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-btn.secondary:hover {
    background: white;
    color: #2c3e50;
}

/* 스크롤 다운 인디케이터 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: scrollBounce 2s infinite;
}

.scroll-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow svg {
    filter: drop-shadow(1px 1px 2px rgba(255,255,255,0.8));
}

.scroll-arrow svg path {
    fill: #2c3e50;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* 헤더 */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    width: 100%;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.logo-link {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.logo-mark {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.logo h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 10px 18px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: left;
    text-shadow: none;
    position: relative;
    border-bottom: 2px solid transparent;
}

.header.scrolled .nav-menu a,
.header:hover .nav-menu a {
    color: #2c3e50;
    text-shadow: none;
}

.nav-menu a:hover {
    border-bottom: 2px solid #000000;
}

.header.scrolled .nav-menu a:hover,
.header:hover .nav-menu a:hover {
    border-bottom: 2px solid #000000;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
    box-shadow: none;
}

.header.scrolled .mobile-menu-btn span,
.header:hover .mobile-menu-btn span {
    background-color: #2c3e50;
    box-shadow: none;
}

/* 메인 콘텐츠 */
.main-content {
    padding: 0;
}

.section {
    margin-bottom: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    text-align: center;
    padding-top: 40px;
    border: none;
}

/* 각 섹션별 회색톤 배경색 */
.overview-section {
    background: #ffffff;
}

.location-section {
    background: #f8f9fa;
}

.premium-section {
    background: #e9ecef;
}

.design-section {
    background: #ffffff;
}

.units-section {
    background: #f8f9fa;
}



.directions-section {
    background: #ffffff;
}

.section-title {
    background: none;
    color: #2c3e50;
    text-align: center;
    padding: 20px 120px;
    font-size: 48px;
    font-weight: 900;
    margin: 0 auto 0 auto;
    text-shadow: none;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    letter-spacing: 1px;
    min-width: 400px;
}

.section-title::before {
    display: none;
}

.section-title::after {
    display: none;
}

.content-wrapper {
    padding: 40px;
    text-align: left;
}

/* 사업개요 섹션 */
.overview-qa-first-image {
    text-align: center;
    margin-bottom: 40px;
}

.overview-qa-first-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.overview-qa-first-image img:hover {
    transform: scale(1.02);
}

.overview-qa-second-image {
    text-align: center;
    margin-bottom: 40px;
}

.overview-qa-second-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.overview-qa-second-image img:hover {
    transform: scale(1.02);
}

.overview-main-image {
    text-align: center;
    margin-bottom: 40px;
}

.overview-main-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.overview-main-image img:hover {
    transform: scale(1.02);
}

/* 사업개요 텍스트 스타일 */
.overview-text-content {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px auto;
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.overview-info-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    font-size: 16px;
    line-height: 1.6;
}

.overview-info-table td {
    border: none;
    padding: 10px 15px;
    vertical-align: top;
}

.overview-label {
    color: #ffd700;
    font-weight: 700;
    text-align: left;
    width: 200px;
    white-space: nowrap;
}

.overview-value {
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    padding-left: 30px;
}

.overview-value div {
    margin: 5px 0;
}

.highlight-white {
    color: #ffffff;
    font-weight: 400;
}

/* 면책조항 */
.disclaimer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px auto;
    text-align: left;
    max-width: 1000px;
    width: 100%;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff;
    margin: 15px 0;
    font-weight: 400;
    word-break: keep-all;
    word-wrap: break-word;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

/* 입지환경 섹션 */
.location-main-image {
    text-align: center;
    margin-bottom: 40px;
}

.location-main-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.location-main-image img:hover {
    transform: scale(1.02);
}

.location-text-content {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px auto;
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.location-highlight-text {
    font-size: 28px;
    line-height: 1.8;
    font-weight: 500;
    color: #ffffff;
}

.location-highlight-text p {
    margin: 15px 0;
    color: #ffffff;
}

.highlight-yellow {
    color: #ffd700;
    font-weight: 700;
    font-size: 30px;
}

.location-additional-image {
    text-align: center;
    margin-top: 40px;
}

.location-additional-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.location-additional-image img:hover {
    transform: scale(1.02);
}

.location-bottom-image {
    text-align: center;
    margin-top: 40px;
}

.location-bottom-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.location-bottom-image img:hover {
    transform: scale(1.02);
}

/* 프리미엄 섹션 */
.premium-new-image {
    text-align: center;
    margin-bottom: 40px;
}

.premium-new-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.premium-new-image img:hover {
    transform: scale(1.02);
}

.premium-top-image {
    text-align: center;
    margin-bottom: 40px;
}

.premium-top-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.premium-top-image img:hover {
    transform: scale(1.02);
}

.premium-main-image {
    text-align: center;
    margin-bottom: 40px;
}

.premium-main-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.premium-main-image img:hover {
    transform: scale(1.02);
}

.premium-bottom-image {
    text-align: center;
    margin-bottom: 40px;
}

.premium-bottom-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.premium-bottom-image img:hover {
    transform: scale(1.02);
}

/* 단지설계 섹션 */
.design-main-image {
    text-align: center;
    margin-bottom: 40px;
}

.design-main-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.design-main-image img:hover {
    transform: scale(1.02);
}

.design-second-image {
    text-align: center;
    margin-bottom: 40px;
}

.design-second-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.design-second-image img:hover {
    transform: scale(1.02);
}

.design-third-image {
    text-align: center;
    margin-bottom: 40px;
}

.design-third-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.design-third-image img:hover {
    transform: scale(1.02);
}

.design-fourth-image {
    text-align: center;
    margin-bottom: 40px;
}

.design-fourth-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.design-fourth-image img:hover {
    transform: scale(1.02);
}

/* 세대안내 섹션 */
.unit-image-container {
    text-align: center;
    margin-bottom: 40px;
}

.unit-image-container img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.unit-image-container img:hover {
    transform: scale(1.02);
}

/* 오시는길 섹션 */
.directions-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.map-container {
    text-align: center;
}

.map-image {
    position: relative;
    display: inline-block;
}

.map-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.call-notice {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.customer-registration {
    text-align: center;
}

.registration-button {
    display: inline-block;
    position: relative;
}

.registration-button img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid #e74c3c;
}

.phone-number h3 {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 20px;
}

.phone-number a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 700;
}

.phone-number a:hover {
    text-decoration: underline;
}

.address p {
    margin: 10px 0;
    font-size: 16px;
    color: #2c3e50;
}

/* 광고 배너 */
.ad-banner {
    margin-top: 30px;
    text-align: center;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
}

/* 푸터 */
.footer {
    background: #4a4a4a;
    color: #cccccc;
    padding: 80px 0;
    margin-top: 60px;
    text-align: left;
}

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

.footer-info {
    flex: 1;
    text-align: left;
}

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

.footer-logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.footer-contact h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #cccccc;
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-address p {
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-address strong {
    color: #cccccc;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .hero-video-section {
        margin-top: -60px;
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: 200px;
    }
    
    .hero-media-section {
        padding: 80px 0 40px;
        min-height: auto;
        background: #f8f9fa;
        position: static;
        margin-top: 0;
    }
    
    .hero-media-section::before {
        display: none;
    }
    
    .media-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
        height: auto;
        position: relative;
        z-index: 10;
    }
    
    .media-text {
        display: none;
    }
    
    .media-category {
        font-size: 20px;
    }
    
    .media-title {
        font-size: 2rem;
    }
    
    .video-wrapper {
        position: relative;
        z-index: 20;
        background: white;
    }
    
    .video-wrapper video,
    .video-wrapper iframe {
        aspect-ratio: 16/9;
        position: relative;
        z-index: 21;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .scroll-text {
        font-size: 12px;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 10px 20px 10px 20px;
        gap: 15px;
    }

    .logo {
        margin-bottom: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu a {
        border-left: none;
        border-bottom: none;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .section-title {
        font-size: 40px;
        padding: 18px 100px;
        letter-spacing: 0.5px;
        min-width: 350px;
        font-weight: 900;
    }
    
    .section {
        padding-top: 30px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .overview-qa-first-image,
    .overview-qa-second-image,
    .overview-main-image {
        margin-bottom: 30px;
    }

    .overview-qa-first-image img,
    .overview-qa-second-image img,
    .overview-main-image img {
        border-radius: 8px;
    }

    .overview-text-content {
        padding: 12px 15px 6px 15px;
        margin: 20px 0;
    }

    .overview-info-table {
        font-size: 12px;
        line-height: 1.2;
    }

    .overview-info-table td {
        padding: 2px 8px;
    }

    .overview-label {
        width: 100px;
        font-size: 11px;
    }

    .overview-value {
        padding-left: 10px;
        font-size: 11px;
    }

    .overview-value div {
        font-size: 11px;
        margin: 2px 0;
    }

    .disclaimer {
        display: none;
    }

    .disclaimer p {
        font-size: 12px;
        line-height: 1.6;
        margin: 12px 0;
        word-break: keep-all;
        word-wrap: break-word;
    }

    .location-main-image {
        margin-bottom: 30px;
    }

    .location-main-image img,
    .location-additional-image img,
    .location-bottom-image img {
        border-radius: 8px;
    }

    .location-additional-image {
        display: none;
    }

    .location-text-content {
        padding: 25px;
        margin: 30px 0;
    }

    .location-highlight-text {
        font-size: 12px;
        line-height: 1.3;
        color: #ffffff;
    }
    
    .highlight-yellow {
        font-size: 12px;
    }

    .location-highlight-text p {
        margin: 6px 0;
    }

    .premium-new-image,
    .premium-top-image,
    .premium-main-image,
    .premium-bottom-image {
        margin-bottom: 30px;
    }

    .premium-new-image img,
    .premium-top-image img,
    .premium-main-image img,
    .premium-bottom-image img {
        border-radius: 8px;
    }

    .design-main-image,
    .design-second-image,
    .design-third-image,
    .design-fourth-image {
        margin-bottom: 30px;
    }

    .design-main-image img,
    .design-second-image img,
    .design-third-image img,
    .design-fourth-image img {
        border-radius: 8px;
    }

    .unit-image-container {
        margin-bottom: 30px;
    }

    .unit-image-container img {
        border-radius: 8px;
    }
    
    /* 오시는길 섹션 모바일 */
    .directions-main-image {
        margin-bottom: 30px;
    }
    
    .directions-main-image img {
        border-radius: 8px;
    }
    
    .directions-info {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .directions-info .phone-number h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .directions-info .address p {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    /* 푸터 모바일 */
    .footer {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo img {
        height: 115px;
    }
    
    .footer-contact h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .footer-address p {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    /* 하단 고정 배너 모바일 */
    .bottom-fixed-banner {
        width: auto;
        max-width: 95%;
    }
    
    .banner-content {
        padding: 6px 12px;
        gap: 15px;
        justify-content: space-between;
    }
    
    .banner-left, .banner-center, .banner-right {
        flex: 1;
    }
    
    .banner-center {
        padding: 6px 10px;
        border-radius: 6px;
    }
    
    .banner-project {
        font-size: 16px;
    }
    

    
    .banner-right {
        padding: 4px 8px;
    }
    
    .banner-contact-label {
        font-size: 11px;
    }
    
    .banner-phone {
        font-size: 16px;
    }
    
    .banner-visit {
        font-size: 12px;
        margin-left: 10px;
        padding: 1px 6px;
    }
    

    
    /* 상담신청 폼 모바일 */
    .consultation-form-container {
        flex-direction: column;
        margin: 20px;
        border-radius: 15px;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .modelhouse-name {
        font-size: 28px;
        margin-bottom: 15px;
        color: #2c3e50;
        font-weight: 900;
        white-space: pre-line;
    }
    
    .modelhouse-name br {
        display: block !important;
    }
    
    .reservation-notice {
        font-size: 28px;
        margin-bottom: 25px;
        font-weight: 900;
        white-space: pre-line;
    }
    
    .reservation-notice br {
        display: block !important;
    }
    
    .contact-click-box {
        padding: 12px 20px;
        border: 2px solid #e74c3c;
    }
    
    .contact-full-text {
        font-size: 28px;
        color: #e74c3c;
        font-weight: 900;
    }
    
    .contact-notice {
        font-size: 12px;
        margin: 12px 0 0 0;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
    
    .phone-input-unified {
        border: none !important;
        border-radius: 0;
    }
    
    .phone-input-unified select {
        flex: 0 0 60px;
        padding: 10px 5px;
        font-size: 14px;
    }
    
    .phone-input-unified input {
        padding: 10px 5px;
        font-size: 14px;
    }
    
    .phone-input-unified input::placeholder {
        font-size: 9px;
    }
    
    .phone-separator {
        padding: 0 1px;
        font-size: 14px;
    }
    
    .privacy-agreement {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    /* 플로팅 버튼 모바일 */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        gap: 6px;
    }
    
    .floating-btn {
        padding: 10px 12px;
        min-width: 120px;
        gap: 8px;
    }
    
    .floating-icon {
        font-size: 18px;
    }
    
    .floating-text {
        font-size: 13px;
    }

    .info-list {
        padding: 20px;
    }

    .info-list strong {
        width: 100px;
        font-size: 14px;
    }

    .contact-info {
        padding: 20px;
    }

    .phone-number h3 {
        font-size: 20px;
    }
}

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

    .logo {
        gap: 10px;
    }
    
    .logo-mark {
        height: 100px;
    }
    
    .logo h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
        font-weight: 900;
    }

    .content-wrapper {
        padding: 15px;
    }

    .info-list {
        padding: 15px;
    }

    .info-list li {
        font-size: 14px;
        padding: 8px 0;
    }

    .info-list strong {
        width: 80px;
        font-size: 13px;
    }
    
    .modal-content {
        width: 98%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 16px;
    }
    
    .modal-body {
        padding: 20px 25px;
    }
    
    .close {
        right: 25px;
    }
    
    .terms-content {
        font-size: 12px;
    }
    
    .terms-content h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .terms-content p {
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .terms-details p {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

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

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* 스크롤 바 스타일링 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}



/* 상담신청 폼 디자인 */
.consultation-form-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2d5a57 0%, #1a3c39 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.form-header {
    background: #ffffff;
    color: #2c3e50;
    padding: 40px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modelhouse-name {
    font-size: 35px;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.modelhouse-name br {
    display: none;
}

.reservation-notice {
    font-size: 35px;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 30px;
}

.reservation-notice br {
    display: none;
}

.contact-click-box {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border: 3px solid #e74c3c;
    border-radius: 12px;
    background: rgba(231, 76, 60, 0.1);
}

.contact-click-box:hover {
    transform: scale(1.02);
    border-color: #c0392b;
    background: rgba(231, 76, 60, 0.15);
}

.contact-full-text {
    font-size: 36px;
    font-weight: 900;
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-full-text:hover {
    color: #c0392b;
}

.contact-notice {
    font-size: 14px;
    color: #333;
    margin: 15px 0 0 0;
    text-align: center;
    font-weight: 400;
    line-height: 1.3;
}

.consultation-form {
    background: white;
    padding: 40px;
    flex: 1;
}

.form-row {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5a57;
}

.phone-input-unified {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    background: white;
    overflow: hidden;
}

.phone-input-unified select {
    flex: 0 0 80px;
    border: none;
    outline: none;
    padding: 12px 8px;
    background: transparent;
    font-size: 16px;
    border-right: 1px solid #ddd;
}

.phone-input-unified input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    background: transparent;
    font-size: 16px;
    text-align: center;
}



.phone-separator {
    color: #666;
    font-weight: bold;
    padding: 0 2px;
    background: #f8f9fa;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 100%;
    display: flex;
    align-items: center;
}

.privacy-agreement {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.agreement-text {
    font-size: 14px;
    color: #666;
}

.terms-link {
    background: none;
    border: none;
    color: #2d5a57;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.terms-link:hover {
    color: #1a3c39;
}

.submit-consultation-btn {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

/* 약관 모달 스타일 */
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    background: #ffffff;
    color: #333;
    padding: 25px 60px;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.close {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    border: none;
    background: none;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 30px 60px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.terms-content {
    line-height: 1.6;
    font-size: 13px;
    color: #333;
}

.terms-content h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    line-height: 1.6;
}

.terms-details {
    margin: 20px 0;
    background: none;
    padding: 0;
    border: none;
}

.terms-details p {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #333;
    font-size: 13px;
}



/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #ffffff;
    color: #333;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4a6741, #27ae60);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 103, 65, 0.3);
}

/* 하단 고정 배너 */
.bottom-fixed-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 700px;
    background: #5a5a5a;
    color: white;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0;
}

.bottom-fixed-banner:hover {
    transform: translateX(-50%) translateY(-2px);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    gap: 15px;
    white-space: nowrap;
    border-radius: 25px;
}

.banner-left {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.banner-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
}

.banner-project {
    font-size: 18px;
    font-weight: 700;
    color: white;
}



.banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    text-align: right;
}

.banner-contact-label {
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 2px;
}

.banner-phone {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.banner-visit {
    color: #ffeb3b;
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    padding: 2px 8px;
    border: 1px solid #ffeb3b;
    border-radius: 12px;
    background: rgba(255, 235, 59, 0.1);
}



.floating-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 140px;
    gap: 10px;
}

.consultation-floating {
    color: #e74c3c;
}

.visit-floating {
    color: #3498db;
}

.message-floating {
    color: #27ae60;
}

.floating-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.floating-btn:active {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
}

.floating-icon {
    font-size: 20px;
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.floating-text {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    line-height: 1.2;
    white-space: nowrap;
}

/* 푸터 여백 제거 (오른쪽 플로팅이므로 불필요) */

/* 인쇄 스타일 */
@media print {
    .header,
    .ad-banner,
    .floating-buttons {
        display: none;
    }
    
    .section {
        break-inside: avoid;
        box-shadow: none;
    }
}