```css id="8wy9ca"
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

.custom-navbar{
    background:rgba(15,23,42,0.55);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:16px 0;
    position:fixed;
    width:100%;
    z-index:999;
    transition:0.4s ease;
}

.navbar-scrolled{
    background:rgba(15,23,42,0.96) !important;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    padding:10px 0;
}

.navbar-brand img{
    height:42px;
    width:auto;
    display:block;
}

/* MENU */

.nav-link{
    color:#fff !important;
    margin-left:28px;
    font-weight:600;
    font-size:15px;
    position:relative;
    transition:0.3s ease;
}

.nav-link:hover{
    color:#19c2f0 !important;
}

/* UNDERLINE EFFECT */

.nav-link::before{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#19c2f0;
    transition:0.3s ease;
}

.nav-link:hover::before{
    width:100%;
}

/* REMOVE DROPDOWN ARROW */

.dropdown-toggle::after{
    display:none !important;
}

/* DROPDOWN MENU */

.dropdown-menu{
    background:#0f172a;
    border:none;
    border-radius:18px;
    padding:12px;
    margin-top:18px;
    min-width:320px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.dropdown-item{
    color:#fff;
    padding:12px 16px;
    border-radius:12px;
    transition:0.3s ease;
    white-space:normal;
    font-size:14px;
    line-height:1.5;
}

.dropdown-item:hover{
    background:#19c2f0;
    color:#fff;
}

/* HERO */

.hero-section{
    position:relative;
    height:100vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.68));
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:720px;
}

.hero-content h1{
    font-size:78px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:25px;
    color:#fff;
    text-shadow:
        0 4px 20px rgba(0,0,0,0.45),
        0 0 30px rgba(25,194,240,0.18);
    animation:fadeUp 1s ease;
    letter-spacing:-2px;
}

.hero-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:38px;
    color:rgba(255,255,255,0.88);
    max-width:650px;
    animation:fadeUp 1.5s ease;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#19c2f0;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.hero-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-3px);
}

.hero-btn-outline{
    display:inline-block;
    padding:15px 35px;
    border:1px solid rgba(255,255,255,0.7);
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#000;
}

/* FEATURED */

.featured-section{
    padding:110px 0;
}

.section-title h2{
    font-size:46px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.section-title p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* TOUR CARD */

.tour-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    transition:0.4s ease;
    cursor:pointer;
}

.tour-card img{
    width:100%;
    height:520px;
    object-fit:cover;
    transition:0.5s ease;
}

.tour-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.08));
    z-index:1;
}

.tour-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.25);
}

.tour-card:hover img{
    transform:scale(1.08);
}

.tour-content{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:5;
}

.tour-content h3{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.view-btn{
    display:inline-block;
    padding:12px 28px;
    background:#19c2f0;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.35s ease;
    box-shadow:0 10px 25px rgba(25,194,240,0.35);
}

.view-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(255,255,255,0.25);
}

/* TOUR BADGE */

.tour-badge{
    position:absolute;
    top:22px;
    left:22px;
    z-index:10;
    background:#19c2f0;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(25,194,240,0.35);
}

/* FOOTER */

.footer-section{
    background:#0f172a;
    color:#fff;
    padding:60px 0;
}

/* FLOAT BUTTONS */

.whatsapp-btn,
.kakao-btn{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999;
    text-decoration:none;
}

.whatsapp-btn{
    bottom:20px;
    background:#25d366;
    color:#fff;
    font-size:30px;
}

.kakao-btn{
    bottom:90px;
    background:#ffe812;
    color:#000;
    font-size:26px;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
        letter-spacing:0;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .tour-card img{
        height:380px;
    }

    .tour-content h3{
        font-size:28px;
    }

    .nav-link{
        margin-left:0;
        margin-top:12px;
    }

    .dropdown-menu{
        min-width:100%;
    }

}
/* DROPDOWN HOVER */

@media(min-width:992px){

    .dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
        animation:fadeDropdown 0.25s ease;
    }

}

@keyframes fadeDropdown{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}/* DROPDOWN HOVER FIX */

@media(min-width:992px){

    .navbar .dropdown{
        position:relative;
    }

    .navbar .dropdown-menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
    }

    .navbar .dropdown:hover > .dropdown-menu{
        display:block;
        animation:fadeDropdown 0.25s ease;
    }

}

@keyframes fadeDropdown{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}```css
/* CONTACT PAGE */

.contact-hero{
    padding:180px 0 100px;
    background:#0f172a;
    text-align:center;
    color:#fff;
}

.contact-hero h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
}

.contact-hero p{
    color:rgba(255,255,255,0.8);
    font-size:18px;
}

.contact-section{
    padding:100px 0;
    background:#f8fafc;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2{
    font-size:36px;
    margin-bottom:20px;
    font-weight:700;
}

.contact-info p{
    color:#666;
    line-height:1.8;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-top:30px;
    align-items:flex-start;
}

.contact-box i{
    width:60px;
    height:60px;
    background:#19c2f0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.contact-box h5{
    margin-bottom:5px;
    font-weight:700;
}

.contact-box p{
    margin:0;
}

.form-control{
    height:60px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    padding:0 20px;
}

textarea.form-control{
    height:auto;
    padding:20px;
}

.contact-btn{
    border:none;
    background:#19c2f0;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
}

.contact-btn:hover{
    background:#0f172a;
}

@media(max-width:768px){

    .contact-hero h1{
        font-size:42px;
    }

    .contact-info,
    .contact-form{
        padding:30px;
    }

}
```css
/* CONTACT PAGE */

.contact-hero{
    padding:180px 0 100px;
    background:#0f172a;
    text-align:center;
    color:#fff;
}

.contact-hero h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
}

.contact-hero p{
    color:rgba(255,255,255,0.8);
    font-size:18px;
}

.contact-section{
    padding:100px 0;
    background:#f8fafc;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2{
    font-size:36px;
    margin-bottom:20px;
    font-weight:700;
}

.contact-info p{
    color:#666;
    line-height:1.8;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-top:30px;
    align-items:flex-start;
}

.contact-box i{
    width:60px;
    height:60px;
    background:#19c2f0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.contact-box h5{
    margin-bottom:5px;
    font-weight:700;
}

.contact-box p{
    margin:0;
}

.form-control{
    height:60px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    padding:0 20px;
}

textarea.form-control{
    height:auto;
    padding:20px;
}

.contact-btn{
    border:none;
    background:#19c2f0;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
}

.contact-btn:hover{
    background:#0f172a;
}

@media(max-width:768px){

    .contact-hero h1{
        font-size:42px;
    }

    .contact-info,
    .contact-form{
        padding:30px;
    }

}
```css
/* GOOGLE MAP */

.map-section iframe{
    display:block;
    filter:grayscale(10%);
}
/* TOUR DETAIL PAGE */

.tour-hero{
    position:relative;
    height:75vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.tour-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
}

.tour-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.tour-small{
    display:inline-block;
    background:#19c2f0;
    padding:10px 20px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.tour-hero-content h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
}

.tour-detail-section{
    padding:100px 0;
    background:#f8fafc;
}

.tour-detail-box,
.booking-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    margin-bottom:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.highlight-list li{
    margin-bottom:12px;
    font-size:18px;
}

.itinerary-item{
    padding:25px 0;
    border-bottom:1px solid #e5e7eb;
}

.booking-card{
    position:sticky;
    top:120px;
}

.booking-card h3{
    font-size:46px;
    font-weight:800;
    color:#19c2f0;
}

.book-btn{
    display:block;
    text-align:center;
    background:#19c2f0;
    color:#fff;
    padding:15px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    margin-top:25px;
}
```css
/* INCLUDED EXCLUDED */

.include-box,
.exclude-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    height:100%;
}

.include-box h3{
    color:#19c2f0;
    font-size:32px;
    margin-bottom:25px;
}

.exclude-box h3{
    color:#ef4444;
    font-size:32px;
    margin-bottom:25px;
}

.include-box ul,
.exclude-box ul{
    padding-left:20px;
}

.include-box li,
.exclude-box li{
    margin-bottom:15px;
    font-size:18px;
    line-height:1.7;
}
/* GALLERY SECTION */

.gallery-section{
    padding:100px 0;
    background:#fff;
}

.gallery-item{
    overflow:hidden;
    border-radius:30px;
    position:relative;
    cursor:pointer;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.gallery-item img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* INCLUDED EXCLUDED */

.included-section{
    padding-bottom:100px;
    background:#f8fafc;
}

.include-box,
.exclude-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    height:100%;
}

.include-box h3{
    color:#19c2f0;
    font-size:32px;
    margin-bottom:25px;
}

.exclude-box h3{
    color:#ef4444;
    font-size:32px;
    margin-bottom:25px;
}

.include-box li,
.exclude-box li{
    margin-bottom:15px;
    font-size:18px;
}
.dynamic-sections{
    padding:100px 0;
    background:#fff;
}

.dynamic-section-box{
    background:#fff;
    margin-bottom:40px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.dynamic-section-box h2{
    font-size:36px;
    font-weight:800;
    padding:40px 40px 10px;
}

.dynamic-section-box p{
    padding:0 40px 40px;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.dynamic-section-box img{
    width:100%;
    display:block;
}
/* CUSTOM TOUR SECTIONS */

.custom-sections{
    padding:100px 0;
    background:#fff;
}

.custom-title-section{
    text-align:center;
    margin-bottom:60px;
}

.custom-title-section h2{
    font-size:44px;
    font-weight:800;
}

.custom-text-section{
    max-width:900px;
    margin:0 auto 60px;
    font-size:19px;
    line-height:1.9;
    color:#555;
}

.custom-image-section{
    margin-bottom:60px;
}

.custom-image-section img{
    width:100%;
    border-radius:30px;
    display:block;
}

.image-text-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-bottom:80px;
}

.image-text-row.reverse .image-side{
    order:2;
}

.image-text-row.reverse .text-side{
    order:1;
}

.image-side img{
    width:100%;
    border-radius:30px;
    display:block;
}

.text-side h3{
    font-size:36px;
    font-weight:800;
    margin-bottom:20px;
}

.text-side p{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

@media(max-width:768px){
    .image-text-row{
        grid-template-columns:1fr;
    }

    .image-text-row.reverse .image-side,
    .image-text-row.reverse .text-side{
        order:initial;
    }
}/* KOREAN LONG IMAGE STYLE FIX */

.custom-sections{
    padding:80px 0;
    background:#fff;
}

.custom-sections .container{
    max-width:760px;
}

.custom-image-section,
.image-text-row{
    display:block;
    margin-bottom:40px;
}

.image-text-row.reverse .image-side,
.image-text-row.reverse .text-side{
    order:initial;
}

.image-side,
.text-side{
    width:100%;
}

.custom-image-section img,
.image-side img{
    width:100%;
    max-width:760px;
    display:block;
    margin:0 auto;
    border-radius:14px;
}

.text-side{
    text-align:center;
    padding:25px 10px 0;
}

.text-side h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:12px;
}

.text-side p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}
/* TOUR GALLERY */

.tour-gallery-section{
    padding:100px 0;
    background:#f8fafc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    align-items:start;
}

.gallery-item{
    width:100%;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    transition:0.35s;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.gallery-item img:hover{
    transform:scale(1.03);
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }

}/* LIGHTBOX GALLERY */

.gallery-popup{
    display:block;
}

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:40px;
}

.lightbox img{
    max-width:95%;
    max-height:95%;
    border-radius:20px;
}

.lightbox.active{
    display:flex;
}
/* SWIPER TOUR GALLERY */

.tourSwiper{
    position:relative;
    padding:10px 45px 60px;
}

.tourSwiper .swiper-slide{
    height:auto;
}

.tourSwiper .gallery-item img{
    width:100%;
    height:340px;
    object-fit:cover;
    border-radius:24px;
    display:block;
}

.swiper-button-next,
.swiper-button-prev{
    color:#19c2f0;
}

@media(max-width:768px){
    .tourSwiper{
        padding:10px 20px 50px;
    }

    .tourSwiper .gallery-item img{
        height:260px;
    }
}
.tourSwiper{
    max-width:1200px;
    margin:auto;
    padding:20px 60px 80px;
}

.tourSwiper .gallery-item img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:28px;
}

@media(max-width:768px){
    .tourSwiper{
        padding:10px 25px 60px;
    }

    .tourSwiper .gallery-item img{
        height:300px;
    }
}.swiper-button-next,
.swiper-button-prev{
    color:#19c2f0 !important;
    top:50% !important;
    transform:translateY(-50%);
}

.swiper-button-prev{
    left:10px !important;
}

.swiper-button-next{
    right:10px !important;
}
/* FIX TOUR PAGE TOP SPACE */

.custom-sections{
    padding-top:140px;
}

.tour-detail-section + .tour-gallery-section + .custom-sections{
    padding-top:80px;
}

.custom-text-section img,
.text-side img{
    margin-top:0;
}
/* GALLERY SPACE + ARROW FIX */

.tour-gallery-section{
    padding:35px 0 25px !important;
}

.tourSwiper{
    padding:0 60px 35px !important;
    max-width:1200px;
    margin:auto;
    position:relative;
}

.tourSwiper .gallery-item img{
    height:420px !important;
    object-fit:cover;
}

.tourSwiper .swiper-button-prev,
.tourSwiper .swiper-button-next{
    top:50% !important;
    transform:translateY(-50%) !important;
    width:55px;
    height:55px;
    background:rgba(255,255,255,0.85);
    border-radius:50%;
}

.tourSwiper .swiper-button-prev{
    left:20px !important;
}

.tourSwiper .swiper-button-next{
    right:20px !important;
}

.custom-sections{
    padding-top:35px !important;
}
/* FINAL FORCE GALLERY FIX */

body .tour-gallery-section{
    padding-top:20px !important;
    padding-bottom:10px !important;
}

body .tourSwiper{
    padding:0 !important;
    max-width:1200px !important;
    margin:0 auto !important;
    position:relative !important;
}

body .tourSwiper .swiper-slide{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
}

body .tourSwiper .gallery-item{
    width:100% !important;
}

body .tourSwiper .gallery-item img{
    width:100% !important;
    height:420px !important;
    object-fit:cover !important;
    border-radius:24px !important;
}

body .tourSwiper .swiper-button-prev,
body .tourSwiper .swiper-button-next{
    top:50% !important;
    transform:translateY(-50%) !important;
    margin-top:0 !important;
    z-index:50 !important;
}

body .tourSwiper .swiper-button-prev{
    left:25px !important;
}

body .tourSwiper .swiper-button-next{
    right:25px !important;
}

body .custom-sections{
    padding-top:20px !important;
}
/* MAKE GALLERY GAP THINNER */

body .tour-gallery-section{
    padding-top:10px !important;
    padding-bottom:0 !important;
}

body .tourSwiper{
    padding:0 0 8px !important;
}

body .tourSwiper .gallery-item img{
    height:430px !important;
}

body .custom-sections{
    padding-top:5px !important;
}
/* REMOVE HUGE TOP GAP */

body .tour-gallery-section{
    padding-top:0 !important;
    margin-top:-120px !important;
}

body .tour-gallery-section .section-title{
    margin-bottom:20px !important;
}

body .tour-gallery-section h2{
    margin-bottom:15px !important;
}

body .tourSwiper{
    margin-top:0 !important;
}


/* TOUR DROPDOWN MENU FIX */

.navbar .nav-item.dropdown{
    position:relative !important;
}

.navbar .dropdown-menu,
.navbar .dropdown-menu.show{
    background:#081226 !important;
    border:none !important;
    border-radius:0 0 14px 14px !important;

    min-width:380px !important;
    height:auto !important;
    max-height:none !important;

    overflow:visible !important;
    overflow-y:visible !important;
    overflow-x:visible !important;

    padding:15px 0 !important;
}

.navbar .dropdown-menu .dropdown-item{
    color:#ffffff !important;
    font-size:14px !important;
    font-weight:600 !important;

    padding:12px 22px !important;
    line-height:1.45 !important;

    white-space:normal !important;
    word-break:break-word !important;
}

.navbar .dropdown-menu .dropdown-item:hover{
    background:#19c2f0 !important;
    color:#ffffff !important;
}