*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat', sans-serif;
}

body{
    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:25px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo{
    color:#fff;
    font-size:32px;
    font-weight:700;
    letter-spacing:2px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:50px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    font-size:15px;
    transition:0.3s;
}

nav ul li a:hover{
    opacity:0.7;
}

.wishlist{
    font-size:22px;
    color:#fff;
    cursor:pointer;
}

/* ================= SLIDER ================= */

.slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    top:0;
    left:0;
}

.slide-content{
    position:relative;
    color:#fff;
    z-index:2;
}

.slide-content h1{
    font-size:60px;
    font-weight:300;
    letter-spacing:3px;
    line-height:1.3;
}

.btn{
    margin-top:40px;
    padding:14px 40px;
    border:2px solid #fff;
    border-radius:40px;
    background:transparent;
    color:#fff;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#fff;
    color:#000;
}

/* Indicators */

.indicators{
    position:absolute;
    right:40px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:10;
}

.indicators span{
    width:30px;
    height:2px;
    background:#fff;
    opacity:0.4;
    cursor:pointer;
    transition:0.3s;
}

.indicators span.active{
    opacity:1;
    width:45px;
}

/* Responsive */

@media(max-width:768px){
    header{
        padding:15px 13px;
    }

    nav ul{
        gap:20px;
    }

    .slide-content h1{
        font-size:32px;
    }
}
/* ================= CLASSICO SECTION ================= */

.classico-section{
    padding:120px 0;
    background:#f4f5f7;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.title{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.subtitle{
    max-width:750px;
    margin:0 auto 80px;
    color:#666;
    font-size:15px;
    line-height:1.6;
}

.classico-wrapper{
    position:relative;
    max-width:907px;
    margin:0 auto;
    min-height:600px;
}

/* CENTER PRODUCT */

.center-product{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    text-align:center;
}

.center-product img{
    width:320px;
    position:relative;
    z-index:2;
}

/* Light Ring Behind Product */

.ring{
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,0.05);
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:1;
}

/* FEATURES */

.feature{
    position:absolute;
    width:260px;
    opacity:0;
    transition:1s ease;
}

/* Positioning like screenshot */

.feature-left.top{
    left:0;
    top:0;
    transform:translateX(-80px);
}

.feature-left.bottom{
    left:0;
    bottom:0;
    transform:translateX(-80px);
}

.feature-right.top{
    right:0;
    top:0;
    transform:translateX(80px);
}

.feature-right.bottom{
    right:0;
    bottom:0;
    transform:translateX(80px);
}

/* Show animation */

.feature.show{
    opacity:1;
    transform:translateX(0);
}

/* Circle Image */

.circle{
    width:140px;
    height:140px;
    margin:0 auto 15px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Text */

.feature h4{
    font-size:16px;
    margin-bottom:8px;
}

.feature p{
    font-size:13px;
    color:#777;
    line-height:1.5;
}

/* Responsive */

@media(max-width:992px){

    .classico-wrapper{
        position:static;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    .feature{
        position:static;
        transform:none !important;
        opacity:1;
    }

    .center-product{
        position:static;
        transform:none;
    }

    .ring{
        display:none;
    }
}
/* ================= VIDEO TOUR SECTION ================= */

.video-tour{
    position:relative;
    width:100%;
    height:90vh;
    background:url('http://test.kalpavrukshaits.com/kongutourist/images/prban.png') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

/* Dark overlay */

.video-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    top:0;
    left:0;
}

/* Content */

.video-content{
    position:relative;
    color:#fff;
    z-index:2;
}

.video-subtitle{
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:15px;
    opacity:0.9;
}

.video-title{
    font-size:48px;
    font-weight:300;
    letter-spacing:3px;
    margin-bottom:40px;
}

/* Play Button */

.play-button{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    color:#000;
    font-size:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto;
    cursor:pointer;
    transition:0.3s;
}

.play-button:hover{
    transform:scale(1.1);
}

/* Responsive */

@media(max-width:768px){

    .video-title{
        font-size:28px;
    }

    .video-tour{
        height:70vh;
    }
}
/* ================= FEATURES SECTION ================= */

.features-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 8%;
    background:#f4f4f4;
}

/* LEFT SIDE */

.features-image{
    position:relative;
    width:50%;
}

.features-image img{
    width:100%;
    max-width:500px;
}

/* Number markers */

.marker{
    position:absolute;
    width:55px;
    height:55px;
    background:#6ce0c3;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:18px;
}

/* Position markers (adjust if needed) */
.marker-1{ top:5%; left:45%; }
.marker-2{ top:35%; right:10%; }
.marker-3{ bottom:30%; left:5%; }
.marker-4{ bottom:5%; right:20%; }

/* RIGHT SIDE */

.features-content{
    width:45%;
}

.feature-item{
    display:flex;
    gap:20px;
    margin-bottom:50px;
    cursor:pointer;
    transition:0.3s;
}

.feature-item:hover{
    transform:translateX(8px);
}

.icon{
    font-size:28px;
    color:#ff5c63;
    min-width:40px;
}

.feature-item h4{
    margin-bottom:10px;
    font-size:16px;
    font-weight:700;
}

.feature-item p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* Responsive */

@media(max-width:992px){
    .features-section{
        flex-direction:column;
    }

    .features-image,
    .features-content{
        width:100%;
        text-align:center;
    }

    .feature-item{
        justify-content:center;
        text-align:left;
    }
}
/* ================= SPLIT SECTION ================= */

.split-section{
    display:flex;
    min-height:100vh;
}

/* LEFT SIDE */

.split-content{
    width:50%;
    background:#f3f4f6;
    padding:100px 8%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.content-block{
    margin-bottom:80px;
}

.content-block h2{
    font-size:32px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:20px;
    line-height:1.3;
}

.content-block p{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

/* Explore link */

.explore-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#1e293b;
    font-weight:600;
    transition:0.3s;
}

.circle{
   
    border:1px solid #1e293b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:0.3s;
}

.explore-link:hover .circle{
    background:#1e293b;
    color:#fff;
}

/* RIGHT SIDE */

.split-image{
    width:50%;
    position:relative;
    background: #f5f5f5;
}

.split-image img{
    width:100%;
    height:84%;
    object-fit:cover;
}

/* Responsive */

@media(max-width:992px){

    .split-section{
        flex-direction:column;
    }

    .split-content,
    .split-image{
        width:100%;
            background-color: #f3f3f3;
    }

    .split-content{
        padding:60px 8%;
    }
}
/* ================= PRODUCT SECTION ================= */

.product-section{
    padding:80px 5%;
    background:#f4f4f4;
    text-align:center;
}


.section-header h2{
    font-size:36px;
    margin-bottom:10px;
}

.section-header p{
    color:#777;
    font-size:14px;
}

/* Carousel Layout */

.product-carousel {
    overflow: hidden;
    position: relative;
}

.product-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

/* Product Card */

.product-card {
    flex: 0 0 300px;
}

.product-image{
    position:relative;
    background:#fff;
    padding:30px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:auto;
    display:block;
}
/* Overlay */

.product-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.9);
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    opacity:0;
    transition:0.3s;
}

.product-card:hover .product-overlay{
    opacity:1;
}

/* Buttons */

.circle-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:#fff;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.circle-btn:hover{
    background:#000;
    color:#fff;
}

/* Info */

.product-info{
    margin-top:20px;
}

.product-info h4{
    font-size:14px;
    margin-bottom:10px;
}

.price{
    color:#ff5c63;
    font-size:18px;
    font-weight:600;
}

/* Arrows */

.nav{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    z-index:10;
}

.prev{ left:0; }
.next{ right:0; }

/* ================= CONTACT SECTION ================= */

.contact-section{
    background:#f4f4f4;
}

.contact-container{
    display:flex;
    align-items:center;
    min-height:500px;
}

/* Left Image */

.contact-image{
    flex:1;
}

.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Right Form */

.contact-form{
    flex:1;
    padding:60px 60px;
    background:#f7f7f7;
}

.contact-form h2{
    font-size:36px;
    margin-bottom:15px;
}

.contact-form p{
    font-size:14px;
    color:#777;
    margin-bottom:40px;
}

/* Form Layout */

.form-group{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-group input{
    flex:1;
    padding:14px 20px;
    border-radius:30px;
    border:1px solid #ddd;
    outline:none;
    font-size:14px;
}

/* Button */

.send-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:30px;
    background:#ff5c63;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.send-btn:hover{
    background:#e04a50;
}

@media(max-width:992px){
    .contact-container{
        flex-direction:column;
    }

    .contact-form{
        padding:60px 30px;
    }

    .form-group{
        flex-direction:column;
    }
}


/* ================= FOOTER ================= */

.main-footer{
    background:linear-gradient(to right,#2b2e3a,#343744);
    color:#fff;
    text-align:center;
    padding-top:60px;
    position:relative;
}

/* Logo */

.footer-logo h2{
    font-size:30px;
    letter-spacing:3px;
    margin-bottom:25px;
}

.footer-logo span{
    color:#ff5c63;
}

/* Social Icons */

.footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
}

.footer-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#3f4354;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:0.3s;
    font-size:14px;
}

.footer-social a:hover{
    background:#ff5c63;
}

/* Menu */

.footer-menu{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:40px;
    padding:0;
    margin-bottom:50px;
}

.footer-menu a{
    text-decoration:none;
    color:#ccc;
    font-size:13px;
    letter-spacing:1px;
    transition:0.3s;
}

.footer-menu a:hover{
    color:#fff;
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:20px 0;
    font-size:12px;
    color:#aaa;
}

/* Scroll Top */

.scroll-top{
    position:absolute;
    right:30px;
    bottom:30px;
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:#ff5c63;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    display:none;
}