.navbar{
    padding: 12px;
}

/* Saat belum scroll */
.navbar-nav a {
    color: #fff !important;
    transition: all 0.3s ease;
}

/* Saat sudah scroll */
.is-sticky .navbar-nav a {
    color: #000 !important;
}

.surf-section {
    position: relative;
    background: #f8f7f4;
    overflow: hidden;
}

/* Bagian atas putih */
.surf-section .container {
    padding: 80px 15px 120px;
    position: relative;
    z-index: 2;
}

.content-box h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #3d4f58;
    margin-bottom: 20px;
}

.content-box p {
    color: #777;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-subtitle {
    display: inline-block;
    color: #55d9d5;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.btn-explore {
    display: inline-block;
    background: #55d9d5;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-explore:hover {
    background: #3cc8c4;
    color: #fff;
}

/* Image Stack */
.image-stack {
    position: relative;
    min-height: 420px;
}

.image-stack img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    border-radius: 20px;
}

.img-top {
    width: 320px;
    height: 220px;
    top: 0;
    right: 60px;
    z-index: 1;
}

.img-bottom {
    width: 340px;
    height: 220px;
    top: 140px;
    left: 40px;
    z-index: 2;
}

/* Pantai bawah */
.beach-bg{
    position:relative;
    background:url(https://asset.kompas.com/crops/xfAYgnPfGQzzgiRrFB2oJ46_IyI=/0x175:900x775/1200x800/data/photo/2022/01/06/61d6a990c4220.jpg) center/cover;
    height:500px;
}

.paper-tear{
    position:absolute;
    top:-2px;
    left:0;
    width:100%;
    z-index:10;
}

/* Text bawah */
.overlay-content {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.overlay-content h3 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.btn-book {
    display: inline-block;
    background: #55d9d5;
    color: #fff;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.btn-book:hover {
    color: #fff;
    background: #3cc8c4;
}

/* Responsive */
@media(max-width:991px){

    .image-stack{
        min-height:350px;
        margin-top:50px;
    }

    .img-top{
        width:250px;
        height:180px;
        right:20px;
    }

    .img-bottom{
        width:260px;
        height:180px;
        left:0;
        top:120px;
    }

    .content-box h2{
        font-size:2.3rem;
    }

    .overlay-content h3{
        font-size:2rem;
    }
}

.destination-gallery{
    /* padding:80px 0; */
    background: linear-gradient(rgb(10 37 64 / 50%), rgb(0 174 239 / 42%));
    position:relative;
  
    background-size:cover;
    background-attachment:fixed;
    overflow:hidden;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    height:260px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.05)
    );
    display:flex;
    align-items:flex-end;
    padding:25px;
}

.overlay h4{
    color:#fff;
    margin:0;
    font-size:24px;
    font-weight:700;
}

.testimonial-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

.testimonial-section .section-title span{
    color:#16c7c3;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.testimonial-section .section-title h2{
    font-size:40px;
    font-weight:700;
    color:#243746;
    margin-top:10px;
}

.testimonial-section .section-title p{
    max-width:700px;
    margin:15px auto 0;
    color:#777;
}

.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.testimonial-card.featured{
    background:linear-gradient(
        135deg,
        #16c7c3,
        #36d9d4
    );
    color:#fff;
}

.stars{
    margin-bottom:20px;
}

.stars i{
    color:#ffc107;
    margin-right:3px;
}

.testimonial-card p{
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.testimonial-user span{
    font-size:14px;
    opacity:.8;
}

.featured .stars i{
    color:#ffd54f;
}

@media(max-width:768px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-section .section-title h2{
        font-size:32px;
    }

}


.top-destination-section{
    padding: 45px 0;
    background:#fff;
}

.destination-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:50px;
}

.mini-title{
    font-size:18px;
    font-weight:400;
    color:#0f172a;
    display:block;
    margin-bottom:10px;
}

.main-title{
    font-size:45px;
    font-weight:800;
    color:#0f172a;
    margin:0;
}

.destination-btn{
    border:2px solid #0b3d91;
    color:#0b3d91;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.destination-btn:hover{
    background:#0b3d91;
    color:#fff;
}

.destination-card{
    position:relative;
    height:450px;
    border-radius:25px;
    overflow:hidden;
}

.destination-card img{
    width: 23%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.destination-card:hover img{
    transform:scale(1.1);
}

.destination-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );
}

.destination-content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    color:#fff;
    z-index:2;
}

.destination-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.destination-info{
    display:flex;
    gap:20px;
    margin-bottom:18px;
    font-size:14px;
}

.destination-info span{
    display:flex;
    align-items:center;
    gap:8px;
}

.detail-btn{
    display:inline-block;
    background:#fff;
    color:#0b3d91;
    text-decoration:none;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
}

.detail-btn:hover{
    background:#0b3d91;
    color:#fff;
}

@media(max-width:768px){

    .destination-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .main-title{
        font-size:40px;
    }

    .destination-card{
        height:350px;
    }

}

.destination-content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    color:#fff;
    z-index:2;
}

.destination-wrapper{
    display:flex;
    gap:15px; /* jarak antar card */
    justify-content: start;
    flex-wrap:wrap;
}

.destination-card{
    position:relative;
    width:23%;
    height:350px;
    border-radius:25px;
    overflow:hidden;
}

.destination-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.destination-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );
}

.destination-content{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    color:#fff;
    z-index:2;
}

.destination-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
    color:#fff;
}

.destination-info{
    display:flex;
    gap:20px;
    margin-bottom:15px;
    font-size:14px;
}

.destination-info span{
    display:flex;
    align-items:center;
    gap:6px;
}

.detail-btn{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    color:#0b3d91;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.detail-btn:hover{
    background:#0b3d91;
    color:#fff;
}

@media(max-width:768px){

    .destination-card{
        width:100%;
        max-width:350px;
        height:380px;
    }

}

.why-us-section{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #f5fbff 0%,
        #e9f7ff 100%
    );
    overflow:hidden;
}

.section-label{
    display:inline-block;
    color:#1d4ed8;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.why-us-section h2{
    font-size:40px;
    font-weight:800;
    color:#082f49;
    line-height:1.2;
    margin-bottom:25px;
}

.why-us-section p{
    color:#475569;
    font-size:17px;
    line-height:1.8;
}

.trust-badges{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:35px;
}

.trust-badges span{
    background:#fff;
    color:#0f172a;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.trust-badges i{
    color:#2563eb;
    margin-right:8px;
}

.photo-stack{
    position:relative;
    height:600px;
}

.photo{
    position:absolute;
    width:280px;
    height:380px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.photo-1{
    top:0;
    left:0;
}

.photo-2{
    top:130px;
    left:120px;
}

.photo-3{
    top:230px;
    left:240px;
}

@media(max-width:991px){

    .photo-stack{
        margin-top:50px;
        height:500px;
    }

    .why-us-section h2{
        font-size:30px;
    }

}

.feature-section{
    padding:80px 0;
    background:#fff;
}

.feature-item{
    padding:20px 30px;
}

.feature-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        #dbeafe,
        #eff6ff
    );
    
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    font-size:34px;
    color:#1e40af;
}

.feature-item h4{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.feature-item p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

.feature-section{
    padding:100px 0;
    background:#fff;
    position:relative;
}

.traveler-image img{
    width:450px;
    margin-right:-80px;
    animation:float 4s ease-in-out infinite;
}

.traveler-image{
    position:relative;
}

.traveler-image img{
    width:350px;
    position:relative;
    transform:rotate(-8deg) !important;
    right:-100px;
    animation:float 4s ease-in-out infinite;
}
@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}

.feature-section{
    position:relative;
    overflow:hidden;
    padding: 55px 0;
}

/* KIRI */
.feature-traveler-left{
    position:absolute;
    left:-120px;
    bottom: 280px;
    z-index:1;
}

.feature-traveler-left img{
    width:300px;
    transform:rotate(-23deg);
    opacity:.9;
}

/* KANAN */
.feature-traveler-right{
    position:absolute;
    right:-120px;
    bottom:0;
    z-index:1;
}

.feature-traveler-right img{
    width:300px;
    transform:rotate(12deg);
    opacity:.9;
}

.destination-slider-section{
    padding:100px 0;
    overflow:hidden;
}

.destination-slide{
    position:relative;
    height:550px;
    overflow:hidden;
    border-radius:25px;
}

.destination-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.destination-slide:hover img{
    transform:scale(1.1);
}

.slide-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );
}

.slide-content{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:2;
    color:#fff;
}

.slide-content span{
    display:inline-block;
    font-size:14px;
    margin-bottom:8px;
    padding:6px 15px;
    border-radius:30px;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
}

.slide-content h3{
    font-size:32px;
    font-weight:700;
    margin:0;
}

.destination-gallery{
    padding:100px 0;
    background:linear-gradient(rgb(10 37 64 / 50%), rgb(0 174 239 / 42%));
    overflow:hidden;
}

.gallery-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.gallery-card{
    width:220px;
    height:280px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    transform:rotate(-6deg);
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.gallery-card:nth-child(even){
    transform:rotate(6deg);
}

.gallery-card:hover{
    transform:rotate(0deg) translateY(-10px);
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gallery-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.1)
    );
    display:flex;
    align-items:flex-end;
    padding:20px;
}

.gallery-card .overlay h5{
    color:#fff;
    margin:0;
    font-weight:600;
}

@media(max-width:768px){

    .gallery-wrapper{
        gap:15px;
    }

    .gallery-card{
        width:150px;
        height:200px;
    }
}

.section-title .section-badge{
    display:inline-block;
    background:rgba(0,174,239,.1);
    color:#00AEEF;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:15px;
}

.section-title h2 span{
    color:#00AEEF;
}

.section-title p{
    color:#ffffff;
    font-size:18px;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.faq-section{
    padding:100px 0;
    background:#f8fbff;
}

.faq-title{
    text-align:center;
    margin-bottom:60px;
}

.faq-title span{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(0,174,239,.1);
    color:#00AEEF;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.faq-title h2{
    color:#0A2540;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.faq-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-3px);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:25px 30px;
    font-size:18px;
    font-weight:600;
    color:#0A2540;
    position:relative;
    transition:.3s;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    font-weight:300;
    color:#00AEEF;
    transition:.3s;
}

.faq-item[open] summary{
    background:linear-gradient(
        135deg,
        #0A2540,
        #00AEEF
    );
    color:#fff;
}

.faq-item[open] summary::after{
    content:"−";
    color:#fff;
}

.faq-item p{
    padding:25px 30px;
    margin:0;
    color:#666;
    line-height:1.9;
    background:#fff;
}

.cta-section{
    position:relative;
    padding:120px 0;
  
    background-size:cover;
    background-attachment:fixed;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgb(10 37 64 / 50%), rgb(0 174 239 / 42%));
}

.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:850px;
    margin:auto;
}

.cta-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
}

.cta-content h2{
    color:#fff;
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.cta-content p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.9;
    max-width:700px;
    margin:0 auto 35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-book{
    background:#fff;
    color:#0A2540;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-book:hover{
    transform:translateY(-3px);
    color:#0A2540;
}

.btn-contact{
    background:transparent;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    border:2px solid rgba(255,255,255,.7);
    font-weight:700;
    transition:.3s;
}

.btn-contact:hover{
    background:#fff;
    color:#0A2540;
}

@media(max-width:768px){

    .cta-section{
        padding:80px 0;
        background-attachment:scroll;
    }

    .cta-content h2{
        font-size:36px;
    }

    .cta-content p{
        font-size:16px;
    }
}

.contact-section{
    padding: 0px 0;
    padding-top: 80px;
    background:#f8fbff;
}

.contact-title{
    text-align:center;
    margin-bottom:60px;
}

.contact-title span{
    display:inline-block;
    padding:8px 20px;
    background:rgba(0,174,239,.1);
    color:#00AEEF;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.contact-title h2{
    color:#0A2540;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.contact-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{
    width:55px;
    height:55px;
    min-width:55px;
    background:linear-gradient(
        135deg,
        #0A2540,
        #00AEEF
    );
    color:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-item h5{
    margin-bottom:5px;
    color:#0A2540;
    font-weight:700;
}

.contact-item p{
    margin:0;
    color:#666;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #e5e5e5;
    box-shadow:none;
}

.contact-form textarea.form-control{
    height:auto;
    resize:none;
}

.contact-form .form-control:focus{
    border-color:#00AEEF;
    box-shadow:none;
}

.contact-btn{
    background:linear-gradient(
        135deg,
        #0A2540,
        #00AEEF
    );
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .contact-section{
        padding:70px 0;
    }

    .contact-title h2{
        font-size:32px;
    }

    .contact-info,
    .contact-form{
        padding:25px;
    }
}

.footer-section{
    background:#0A2540;
    color:#fff;
    padding:0px 0 0;
    position:relative;
    transform:translateY(-10px);
}

.footer-section h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

.footer-logo img{
    max-width:180px;
    margin-bottom:20px;
}

.footer-desc{
    color:rgba(255,255,255,.7);
    line-height:1.9;
    margin-bottom:25px;
}

.footer-section ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    color:rgba(255,255,255,.7);
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#00AEEF;
    padding-left:5px;
}

.footer-contact p{
    color:rgba(255,255,255,.7);
    margin-bottom:15px;
    line-height:1.8;
}

.footer-contact i{
    color:#00AEEF;
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social i{
    color:#fff;
    font-size: 25px;
    margin-left: 26px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.08);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#00AEEF;
    transform:translateY(-4px);
}

.footer-bottom{
    margin-top:50px;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.6);
}
.footer-wave{
    line-height:0;
    background: #f8f9fa;
}

.footer-wave svg{
    display:block;
}

.page-header{
    position: relative;
    top: -60px;
    height: 365px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.55);
}

.page-content{
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-content h1{
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-content p{
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: .9;
}

@media (max-width: 768px){
    .page-header{
        height: 350px;
    }

    .page-content h1{
        font-size: 36px;
    }

    .page-content p{
        font-size: 15px;
        padding: 0 20px;
    }
}

.back-btn{
    position:absolute;
    top:100px;
    left:50px;
    z-index:3;

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;
    border-radius:50px;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);

    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.back-btn:hover{
    color:#fff;
    background:rgba(255,255,255,.25);
    text-decoration:none;
}

.back-btn i{
    font-size:14px;
}

@media(max-width:768px){

    .back-btn{
        top:90px;
        left:20px;
        padding:10px 16px;
        font-size:14px;
    }

}

.tour-detail-section{
    padding:100px 0;
}

.tour-detail-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.tour-detail-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:24px;
}

.tour-badge{
    display:inline-block;
    padding:8px 18px;
    background:#f4f4f4;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.tour-title{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.2;
}

.tour-description{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.tour-highlight{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.highlight-item{
    background:#f8f8f8;
    padding:14px 18px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:10px;
}

.highlight-item i{
    color:#0d6efd;
}

.tour-include{
    margin-top:90px;
}

.section-head{
    text-align:center;
    margin-bottom:50px;
}

.section-head span{
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    color:#999;
}

.section-head h3{
    margin-top:10px;
    font-size:36px;
    font-weight:700;
}

.include-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.include-item{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.include-item:hover{
    transform:translateY(-5px);
}

.include-item i{
    font-size:28px;
    margin-bottom:20px;
    color:#0d6efd;
}

.include-item h5{
    font-weight:600;
    margin-bottom:10px;
}

.include-item p{
    color:#777;
    margin:0;
    line-height:1.8;
}

@media(max-width:991px){

    .tour-detail-wrapper{
        grid-template-columns:1fr;
    }

    .tour-title{
        font-size:36px;
    }

    .tour-detail-image img{
        height:400px;
    }

    .include-grid{
        grid-template-columns:1fr;
    }
}

.tour-package-section{
    padding:100px;
}

.tour-package-grid{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:40px;
    align-items:center;
}

.package-info{
    padding-right:20px;
}

.package-badge{
    display:inline-block;
    padding:8px 18px;
    background:#f3f3f3;
    border-radius:30px;
    margin-bottom:20px;
    font-size:13px;
    font-weight:600;
}

.package-price{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.package-price small{
    font-size:19px;
    font-weight:700;
    color:#0d6efd;
}

.package-desc{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.package-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.package-list li{
    margin-bottom:12px;
    color:#444;
}

.package-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-book{
    background:#111;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
}

.btn-wa{
    background:#25D366;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
}

.gallery-grid{
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:18px;
}

.gallery-item{
    overflow:hidden;
    border-radius:24px;
}

.gallery-small{
    height:225px;

}

.gallery-large{
    height:225px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

@media(max-width:991px){

    .tour-package-grid{
        grid-template-columns:1fr;
    }

    .package-price{
        font-size:42px;
    }

}

.package-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-book,
.btn-wa{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-book{
    background:#0a2540;
    color:#fff;
}

.btn-wa{
    background:#25D366;
    color:#fff;
}

/* INI YANG PENTING */
.btn-book:hover,
.btn-book:focus,
.btn-book:active{
    color:#fff;
    text-decoration:none;
}

.btn-wa:hover,
.btn-wa:focus,
.btn-wa:active{
    color:#fff;
    text-decoration:none;
}

.btn-book i,
.btn-wa i{
    font-size:16px;
}

.btn-login-footer{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #dcfbff;
    color: #1c86ff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-login-footer:hover{
    background: #0f56da;
    color: #fff;
    transform: translateY(-3px);
}

.package-section{
    padding:80px 0;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.package-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.package-card:hover{
    transform:translateY(-8px);
}

.package-header{
    padding:25px;
    background:#f8f9fa;
    border-bottom:1px solid #eee;
}

.package-header h3{
    margin:0;
    font-size:22px;
    font-weight:700;
}

.package-price{
    margin-top:15px;
    font-size:34px;
    font-weight:800;
    color: #0a2540;
}

.package-body{
    padding:25px;
    flex:1;
}

.package-body p{
    color:#666;
    line-height:1.8;
}

.package-body ul{
    padding:0;
    margin:25px 0 0;
    list-style:none;
}

.package-body ul li{
    margin-bottom:12px;
    color:#333;
}

.package-body ul li i{
    color: #0a2540;
    width:22px;
}

.package-footer{
    padding:25px;
    display:flex;
    gap:12px;
}

.package-footer form{
    flex:1;
}

.btn-book-new,
.btn-wa-new{
    border:none;
    border-radius:12px;
    padding:14px;
    text-align:center;
    font-weight:600;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.3s;
}

.btn-book-new{
    background: #00AEEF;
    color:#fff;
}

.btn-book-new:hover{
    background: #082f49;
}

.btn-wa-new{
    background:#25D366;
    color:#fff;
}

.btn-wa-new:hover{
    background:#1ebd5a;
}

.empty-package{
    text-align:center;
    padding:80px 20px;
}

.empty-package i{
    font-size:60px;
    color:#ddd;
    margin-bottom:20px;
}

@media(max-width:768px){

    .package-footer{
        flex-direction:column;
    }

}

.tour-package-title{
    text-align:center;
    margin-bottom:60px;
}

.tour-package-title span{
    display:inline-block;
    padding:8px 18px;
    background:#e8faff;
    color: #0a2540;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    border-radius:50px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.tour-package-title h2{
    font-size:42px;
    font-weight:800;
    color:#222;
    margin:0 0 15px;
    line-height:1.2;
}

.tour-package-title p{
    max-width:650px;
    margin:0 auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

@media (max-width:768px){

    .tour-package-title{
        margin-bottom:40px;
    }

    .tour-package-title h2{
        font-size:30px;
    }

    .tour-package-title p{
        font-size:15px;
        padding:0 15px;
    }

}

.admin-menu-section{
    background: #f8fafc;
}

.menu-card{
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    display: block;
    text-align: center;
    height: 100%;
    color: #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    border: 1px solid #eef2f7;
}

.menu-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    color: #0d6efd;
}

.menu-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #00AEEF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon i{
    color: #fff;
    font-size: 34px;
}

.menu-card h4{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.menu-card p{
    color: #6c757d;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #4f8cff);
    border-radius: 50px;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}

.section-heading p {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.8;
}

.card {
    border-radius: 20px;
}

.card-header {
    border-bottom: 1px solid #f1f1f1;
}

.card-header h5 {
    font-weight: 600;
    color: #333;
}

.dashboard-section h4{
    font-weight: 700;
}

.top-package-item{
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.top-package-item:last-child{
    border-bottom: none;
}

.activity-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li{
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.activity-list li:last-child{
    border-bottom: none;
}

.activity-list i{
    width: 30px;
}

.card{
    border-radius: 18px;
}

/* ==========================
   DASHBOARD SECTION
========================== */

.dashboard-section {
    margin-bottom: 30px;
}

/* ==========================
   CARD
========================== */

.dashboard-section .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}

.dashboard-section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================
   CARD HEADER
========================== */

.dashboard-section .card-header {
    background: #fff;
    border-bottom: 1px solid #f1f3f5;
    padding: 18px 25px;
}

.dashboard-section .card-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.dashboard-section .card-header i {
    color: #029c0f;
}

/* ==========================
   CARD BODY
========================== */

.dashboard-section .card-body {
    padding: 25px;
}

/* ==========================
   CHART
========================== */

#transactionChart {
    min-height: 350px;
}

/* ==========================
   TABLE
========================== */

.table-responsive {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.table {
    margin-bottom: 0;
}

.table thead {
    background: #f8fafc;
}

.table thead th {
    border: none;
    font-weight: 700;
    color: #444;
    padding: 18px;
    white-space: nowrap;
}

.table tbody td {
    padding: 18px;
    vertical-align: middle;
    border-color: #f1f3f5;
}

.table tbody tr {
    transition: .3s;
}

.table tbody tr:hover {
    background: #f8fbff;
}

/* ==========================
   BADGE STATUS
========================== */

.badge {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 30px;
    font-weight: 600;
}

/* ==========================
   BUTTON
========================== */

.btn-primary {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
}

/* ==========================
   TOP PACKAGE
========================== */

.top-package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f3f5;
}

.top-package-item:last-child {
    border-bottom: none;
}

.top-package-item span {
    font-weight: 500;
    color: #444;
}

.top-package-item strong {
    color: #0d6efd;
    font-size: 16px;
}

/* ==========================
   ACTIVITY LIST
========================== */

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f3f5;
    color: #555;
    font-size: 15px;
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-list li i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* ==========================
   SECTION TITLE
========================== */

.dashboard-section h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .dashboard-section .card-body {
        padding: 20px;
    }

    .dashboard-section h4 {
        font-size: 20px;
    }

    .table thead th,
    .table tbody td {
        padding: 14px;
    }

    #transactionChart {
        min-height: 250px;
    }

}

.login-section{
    min-height:100vh;
}

.login-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.login-card:hover{
    transform:translateY(-5px);
}

.login-logo{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#4f8cff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
}

.form-control{
    height:50px;
    border-radius:12px;
    border:1px solid #e5e7eb;
}

.form-control:focus{
    box-shadow:none;
    border-color:#0d6efd;
}

.btn-primary{
    height:50px;
    border-radius:12px;
    font-weight:600;
}

.form-label{
    font-weight:600;
    margin-bottom:8px;
    font-size: 20px;
}

.table-section{
    margin-top:30px;
}

.table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.table-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    flex-wrap:wrap;
    gap:15px;
}

.table-tools{
    display:flex;
    align-items:center;
    gap:12px;
}

.search-input{
    width:280px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:10px 15px;
}

.table-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:5px;
}

.table-subtitle{
    color:#6c757d;
    margin:0;
}

.btn-add{
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-add:hover{
    background:#0b5ed7;
    color:#fff;
}

.search-input{
    width:100%;
    max-width:350px;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:12px 15px;
    outline:none;
}

.search-input:focus{
    border-color:#0d6efd;
}

.modern-table{
    width:100%;
    border-collapse:collapse;
}

.modern-table thead th{
    background:#f8f9fa;
    color:#495057;
    font-size:14px;
    font-weight:700;
    padding:16px;
    border:none;
}

.modern-table tbody td{
    padding:18px 16px;
    border-bottom:1px solid #f1f3f5;
    vertical-align:middle;
}

.modern-table tbody tr{
    transition:.3s;
}

.modern-table tbody tr:hover{
    background:#f8fbff;
}

.badge-success{
    background:#d1fae5;
    color:#065f46;
    padding:8px 12px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.badge-warning{
    background:#fff3cd;
    color:#856404;
    padding:8px 12px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.badge-danger{
    background:#fee2e2;
    color:#991b1b;
    padding:8px 12px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.action-group{
    display:flex;
    gap:8px;
}

.btn-edit,
.btn-delete,
.btn-view{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    text-decoration:none;
    transition:.3s;
}

.btn-edit{
    background:#e7f1ff;
    color:#0d6efd;
}

.btn-delete{
    background:#ffe5e5;
    color:#dc3545;
}

.btn-view{
    background:#e8fff4;
    color:#198754;
}

.btn-edit:hover,
.btn-delete:hover,
.btn-view:hover{
    transform:translateY(-2px);
}

.table-responsive{
    overflow-x:auto;
}

.modern-table tbody tr:last-child td{
    border-bottom:none;
}

.vehicle-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fafc,#eef4ff);
    overflow:hidden;
}

.vehicle-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.vehicle-image{
    position:relative;
}

.vehicle-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.vehicle-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#2563eb;
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 10px 25px rgba(37,99,235,.3);
}

.vehicle-subtitle{
    color:#2563eb;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    display:block;
    margin-bottom:15px;
}

.vehicle-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
    color:#0f172a;
}

.vehicle-content h2 span{
    color:#2563eb;
}

.vehicle-content p{
    font-size:16px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:35px;
}

.vehicle-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-item-new{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:15px;
    align-items:flex-start;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.feature-item-new:hover{
    transform:translateY(-5px);
}

.feature-item-new i{
    width: 120px;
    height: 60px;
    background:#eff6ff;
    color:#2563eb;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.feature-item-new h4{
    margin:0 0 5px;
    color:#0f172a;
}

.feature-item-new p{
    margin:0;
    font-size:14px;
    line-height:1.6;
}

.vehicle-highlight{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.highlight-box{
    flex:1;
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.highlight-box h3{
    margin:0;
    font-size:32px;
    color:#2563eb;
}

.highlight-box span{
    color:#64748b;
    font-size:14px;
}

@media(max-width:991px){

    .vehicle-container{
        grid-template-columns:1fr;
    }

    .vehicle-content h2{
        font-size:36px;
    }

    .vehicle-features{
        grid-template-columns:1fr;
    }
}

.vehicle-slider{
    position:relative;
}

.slider-wrapper{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.slider-track{
    display:flex;
    transition:0.5s ease;
}

.slider-track img{
    min-width:100%;
    height:450px;
    object-fit:cover;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    cursor:pointer;
    z-index:10;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.slider-btn:hover{
    background:#2563eb;
    color:#fff;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

.thumbnail-container{
    display:flex;
    gap:10px;
    margin-top:15px;
    overflow-x:auto;
    padding-bottom:5px;
}

.thumbnail-container::-webkit-scrollbar{
    height:5px;
}

.thumbnail-container::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:10px;
}

.thumb{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    opacity:.6;
    transition:.3s;
    border:3px solid transparent;
}

.thumb:hover{
    opacity:1;
}

.thumb.active{
    opacity:1;
    border-color:#2563eb;
}

.apartment-section{
    padding:100px 0;
    background:#f8fafc;
}

.apartment-section .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.apartment-header{
    text-align:center;
    max-width:800px;
    margin:auto auto 60px;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    background:#e0f2fe;
    color:#0284c7;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.apartment-header h2{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
    color:#0f172a;
}

.apartment-header h2 span{
    color:#0ea5e9;
}

.apartment-header p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}

.apartment-wrapper{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:50px;
    align-items:center;
}

.gallery-main{
    overflow:hidden;
    border-radius:25px;
    height:450px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.gallery-main img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:15px;
}

.gallery-grid img{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-grid img:hover{
    transform:translateY(-5px);
}

.apartment-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-card{
    display:flex;
    gap:20px;
    padding:25px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0ea5e9;
    color:#fff;
    border-radius:15px;
    font-size:22px;
    flex-shrink:0;
}

.feature-card h4{
    margin-bottom:8px;
    font-size:20px;
    color:#0f172a;
}

.feature-card p{
    color:#64748b;
    line-height:1.7;
}

.apartment-btn{
    margin-top:15px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#0ea5e9;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    width:max-content;
    transition:.3s;
}

.apartment-btn:hover{
    background:#0284c7;
    transform:translateY(-3px);
}

@media(max-width:991px){

    .apartment-wrapper{
        grid-template-columns:1fr;
    }

    .apartment-header h2{
        font-size:36px;
    }

    .gallery-main{
        height:350px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

.gallery-main img,
.gallery-grid img{
    cursor:pointer;
}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:90%;
    max-height:85vh;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.close-lightbox{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    z-index:2;
}

.lightbox-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.lightbox-btn:hover{
    background:rgba(255,255,255,.3);
}

.prev-btn{
    left:30px;
}

.next-btn{
    right:30px;
}

@media(max-width:768px){

    .lightbox-btn{
        width:50px;
        height:50px;
    }

    .close-lightbox{
        font-size:35px;
        top:10px;
        right:20px;
    }
}

.highlight-card{
    border:2px solid #0ea5e9;
    background:linear-gradient(
        135deg,
        rgba(14,165,233,.08),
        rgba(14,165,233,.02)
    );
}

.contact-room-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    background:#25D366;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.contact-room-btn:hover{
    transform:translateY(-2px);
}