html, body {
    overflow-x: clip;
}

 body {
      font-family: "Cabin", sans-serif;
 }
 h1,h2,h3,h4,h5,h6{
     font-family: "Alice", serif;
 }
 
 :root {
    --primary-color: #033631;
      --secondary-color: #d1a039;
}

.ecr-main-header {
    position: absolute;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #FFFFFF1A;
}

.ecr-header{
      position: relative;
}

a{
    text-decoration:none !important;
    color:#000;
}
img{
    height:auto;
    max-width:100%;
}

p{
    color:#434343;
    font-size:16px;
}
.ecr-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.k-nav .main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.home-cionsd i{
        font-size: 22px;
    display: inline-block;
    height: 24px;
}
.home-cionsd{
        display: flex;
}
.k-nav li > a, .k-nav li > span{
    color: #ffffff;
    font-size: 16px;
    cursor:pointer;
    position:relative;
    border-bottom: 1px solid transparent;
}

.k-nav .arrow {
    margin-left: 5px;
    font-size: 12px;
}
.medium-btns.white-btn{
    border-color:#fff;
}
.medium-btns.white-btn:before{
    background:#fff;
}
.medium-btns.white-btn:hover{
    color:var(--primary-color);
}
.k-logo img {
    width: 130px;
    display: block;
    margin: 0 auto;
   filter: brightness(0) invert(1);
}
.k-logo{
    display: block;
    text-align: center;
}
.k-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    justify-content: center;
}

.k-cart {
    position: relative;
    cursor: pointer;
}
.k-cart img {
    width: 24px;
}
.cart-count {
    position: absolute;
    right: -8px;
    top: -8px;
    background: #d0a067;
    color: #fff;
    font-size: 11px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.k-book-btn {
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 25px 10px 25px;
    border: none;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    background-color: #FFFFFF;
    color: #000000;
    transition: 500ms all ease;
    border: 1px solid #ffffff6b;
}
.k-book-btn:hover {
    color: #ffffff;
    background-color: var(--primary-color);
}
.k-book-btn::before,
.k-book-btn::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #b3862c;
    z-index: -1; 
    transition: all 0.4s;
    transform-origin: 50% 100%;
}

.k-book-btn::before {
    right: 0;
}

.k-book-btn::after {
    left: 0;
}
.k-book-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.9s;
}

.k-book-btn:hover::after {
    width: 100%;
    right: 0;
    left: auto;
    transition: all 0.9s;
     background-color: var(--primary-color);
}

.k-right-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* MAIN SECTION */
.ecr-banner-sec {
    width: 100%;
    position: relative;
    overflow: hidden;
}


.ecr-banner-swipe {
    width: 100%;
    height: 100vh; 
    position: relative;
}

.ecr-banner-swipe .swiper-slide {
    width: 100%;
    height: 100vh;
    position: relative;
}


.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.65); 
}
.slide-content {
    position: absolute;
    bottom: 8%;
    left: 0%;
    color: #fff;
    z-index: 2;
    right: 0;
}
.slide-content .sub-title {
    font-size: 22px;
   
    color: #ffb347;
    margin-bottom: 20px;
}
.slide-content .main-title {
        font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Alice';
    text-transform: uppercase;
}
.slide-content .main-title span{
        font-style: italic;
    text-transform: capitalize;
}
.dis-par-flex{
      display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff1a;
    padding-top: 30px;
    
}
.dis-par-flex p{
   max-width: 60%;
    font-size: 18px;
    color: #fff;
}
.cta-btn {
    background-color: #d1a039;
    color: #000;
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #07554d;
    color:#fff;
}

.ecr-banner-sec .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.ecr-banner-sec .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff8a00;
}


.custom-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    background-color: #ffffff;
}

.amentities-sec {
    padding: 4rem 0 5rem;
    position:relative;
    /*background:#F9F4F1;*/
}

.section-title.text-center {
    margin-bottom: 50px;
}

.sec-big-title {
    font-size: 37px;
    color: #000;
    line-height: 1.3;
}
.sec-big-title.text-center{
    margin-bottom:2.5rem;
}
.amentities-card {
    text-align: center;
    padding: 20px 25px;
    background: #fff;
    box-shadow: 0px 3px 10px 0px rgba(31, 31, 31, 0.08);
    transition: 0.3s ease;
    height: 100%;
    border-radius:10px;
    border: 1px solid #dadce0;  
}

.amentities-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.amen-icon {
    width: 100%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.amen-icon img {
    height: auto;
}

.amentities-card h4 {
    font-size: 18.5px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.amentities-card h3 {
    font-size: 18.5px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.amentities-card p {
    font-size: 14px;
    color: #707070;
    margin: 0;
}

.amentities-sec .row{
    row-gap:20px
}

/*about*/
.ecr-about-sec {
   position: relative;
    max-height: 750px;
    overflow: hidden;
}
.ecr-about-sec:before{
        content: "";
    background-image: url(../images/home/high-pro.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0.4;
}
.ecr-about-img img,
.ecr-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecr-about-img,
.ecr-right-img {
    height: 100%;
}

.ecr-about-content {
    padding: 80px 17px;
    /*display: flex;*/
    align-items: center;
}

.ecr-about-content .sec-big-title {
    font-size: 45px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    margin-bottom:1.8rem;
}

/* Right side content */
.ecr-right-content {
    padding: 85px 0 60px;
}

.ecr-right-content p {
    line-height: 1.7;
       margin-bottom: 40px;
    padding: 7px 30px 0 0;
    font-weight: 500;
}
.ecr-about-img{
    max-height: 750px;
}
.counters-sec {
    text-align: center;
    padding: 50px 0px 50px 0px;
}
.counters-sec.bg-sec{
    background-color: #fff;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #D7D3BE;
}
.counters-sec h4 {
    color:var(--primary-color);
     font-weight: 500;
    font-size: 46px;
}

.ecr-cta-home {
    position: relative;
    background-image: url(../images/bg/empire-villa-main-angle.webp);
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    width: 100%;
    overflow: hidden;
    align-content: center;
}

.ecr-cta-home:before {
    content:"";
    position: absolute;
       height: 99%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
}

.ripple-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#ripple-canvas,
#ripple-buffer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    margin: auto;
}

.ecr-cta-home .cta-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.watch-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color:#fff;
}

.ecr-cta-home .sec-big-title {
    font-size: 55px;
   color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}
.ecr-cta-home .sec-big-title span{
    font-style:italic;
}
.cta-subtitle {
    color:#fff;
    margin-bottom: 40px;
}

header.sticky {
    transform: translateY(0%);
    visibility: visible;
    animation: sliddown 1s;
}

@keyframes sliddown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes sliddown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

.ecr-header.sticky .ecr-main-header {
    padding: 0;
}

.sticky .ecr-main-header {
    position: fixed !important;
    padding: 0.5rem 0 1rem;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border: none;
    background-color: var(--primary-color);
    opacity: 1;
    animation: sliddown 1s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sticky {
    transition: 0.3s;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 999;
    position: fixed;
}

.has-dropdown i {
      display: inline-block;
   transition: 0.3s ease;
    color: #fff;
    font-size: 13px;
    padding-top: 0px;
    padding-right: 4px;
    height: 12px;
}
.has-dropdown > a, .has-dropdown > span{
        margin: 30px 0;
}
/* Main dropdown container */
.has-dropdown {
   position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Rotate icon on hover */
.has-dropdown:hover .flaticon-arrow-up {
    transform: rotate(180deg);
}

.flaticon-arrow-up {
    margin-left: 6px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Submenu styling */
.submenu {
    min-width: 300px;
    position: absolute;
    left: 0;
    top: 85px;
    padding: 5px 0;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-bottom: 4px solid #d1a039;  /* gold highlight */
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 300ms ease;
    z-index: 999;
}

/* Show submenu on hover */
.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu items */
.submenu li {
    list-style: none;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: #033631; 
    text-decoration: none;
    transition: 0.25s ease;
    border-radius: 6px;
}

/* Hover effect */
.submenu li a:hover {
    background: #f9f4e8;
    color: #d1a039;
    /*transform: translateX(4px);*/
}
/* Stays Villa Card Box */
.stays-card-box {
    background: #FAFAFA;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s 
ease;
   
    position: relative;
    padding: 15px 15px 22px;
    border: 1px solid #E2E2E2;
        height: 100%;
}
.stayimages{
    display:block;
}
@media (max-width:1350px){
    .stays-card-box{
              padding: 15px 15px 20px;
    }
    .card-footer span{
        font-size:15px;
    }
}
/* Hover Effect */
.stays-card-box:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Image Section */
.stays-card-box .stayimages {
   position: relative;
    display: block;
       width: 101%;
    height: 252px;
    overflow: hidden;
        border-radius: 15px;
}
.stays-card-box .stayimages .cs_card_img_back{
    opacity: 0;
    transform: scale(1.05);
    width: 100%;
    height: 100%;
    
}
.stays-card-box .stayimages:hover .cs_card_img_back {
    opacity: 1;
    transform: scale(1);
    
}
.card-footer span{
    display:block;
      font-size: 14px;
}
.card-footer span:before{
    content: "";
    width: auto;
    height: auto;
    font-size: 10px;
    font-weight: 900;
   background-image:url(../images/svg/asterisk.svg);
}
.stays-card-box .stayimages img {
       width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    /*padding: 0 1.5px;*/
    transition: opacity 0.6s 
ease-in-out, transform 0.6s 
ease-in-out;
}

/* Smooth Zoom on Hover */
.stays-card-box:hover .media img {
    transform: scale(1.06);
}

/* Price Badge */
.stays-card-box .price-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c59a5a;
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
}

/* Card Content */

.stays-card-box .villa-category {
    background: #f5efe6;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #7a5b34;
}

.stays-card-box .villa-title {
    margin: 0px;
    font-size: 19px;
    font-weight: 500;
    color: #102027;
}
.stays-card-box .villa-title a{
    text-transform:capitalize;
}
.stays-card-box .villa-title i{
        font-size: 14px;
    font-family: 'Cabin';
    display: flex;
    color: #434343;
    gap: 5px;
    align-items: center;
    margin-top: 5px;
}
.stays-card-box .villa-location {
    font-size: 14px;
    color: #6f7c8a;
    margin-top: 2px;
}
.card-ex-p{
    display: flex;
    justify-content: space-between;
        gap: 10px;
    align-items: center;
    margin: 13px 0;
}
.card-ex-p p{
    margin: 0;
    font-size: 14px;
    color: #434343;
}
.row-gap-30{
    row-gap:25px
}
.read-morebtn{
  background: #E2E2E2;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    min-width: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center; 
    position:relative;
        overflow: hidden;
}
.read-morebtn::before {
    content: "";
    position: absolute;
    transition-duration: 600ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 50%;
}
.read-morebtn:hover::before {
    top: -40%;
}
.read-morebtn i{
    display: inline-block;
    height: 20px;
    transform: rotate(-45deg);
}
.read-morebtn:hover i{
    color:#fff;
}
.car-titld{
        display: flex;
    justify-content: space-between;
    align-items: center;
        margin-top: 1rem;
}
.car-titld span{
    min-width:fit-content;
}
.price em{
    font-size:11.5px;
}
.stays-card-box .meta-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    font-size: 13px;
    color: #7c858e;
}

/* Footer Buttons */
.stays-card-box .card-footer {
   display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 13px;
    border-top: 1px solid #E2E2E2;
    color:#434343;
}

.stays-card-box .btn-book {
    background:var(--primary-color);
    color: #fff;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .3s ease;
}

.stays-card-box .btn-book:hover {
    background: #0e2d3c;
}

.stays-villa-sec{
    position:relative;
    padding-bottom: 5rem;
}
.medium-btns{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    text-wrap: nowrap;
    line-height: 1.57em;
    background: #033631;
    color: #fff;
    border: 0;
    outline: 0;
    padding: 9px 24px;
    border: 1px solid #1D1D1D;
    position: relative;
    overflow: hidden;
    transition: all 0.3s 
cubic-bezier(0.58, 0, 0.88, 1);
    max-height: fit-content;
        border-radius: 10px;
}
.medium-btns::before {
    content: "";
    position: absolute;
    transition-duration: 600ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 50%;
}
.medium-btns span{
    position:relative;
}
.medium-btns.dr-green{
    background: var(--primary-color);
    border:0;
    color:#fff;
}
.medium-btns.dr-green::before{
    background:#d1a039;
}
.occasions-sec-main{
    padding:5rem 0;
    position:relative;
    background-image: url(../images/bg/s1-bg-1.png);
    background-size: cover;
    background-position: top;
}
.occasions-corousel{
    position:relative !important;
}

.occasions-corousel .swiper-wrapper{
     margin-bottom:20px;
}
.occasions-sec-main .occasions-event-main::after{
 content: "";
  width: 384px;
  height: 283px;
  border-radius: 8px;
  box-shadow: -20px 20px 80px 0 rgba(0, 0, 0, 0.12);
  position: absolute;
  bottom: 0;
  left: -40px;
  z-index: -1;
  background: #fff;
}
.occasions-sec-main .occasions-event-main::before{
    content: "";
   background-image: url(../images/svg/occ-even.svg);
   height:60px;
   width:100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
.occasions-sec-main .occasions-event-main{
    max-width:80%;  
    margin-left:auto;
    margin-top:3rem;
    position:relative;
        z-index: 2;
}

.fx-serve-1-slider-item .item-title {
    font-size:20px;
    font-weight: 700;
    line-height: 27px;
    max-width: 230px;
    transition: all .4s cubic-bezier(0.55, 0.085, 0, 0.99);
    opacity: 0;
    transform: translateY(-100px);
    margin:0;
 }
 
.fx-serve-1-slider-item .item-img img{
     filter: grayscale(1);
    transition: .3s;
    border-radius: 8px;
 }
 
.fx-serve-1-slider-item .item-img {
     border-radius: 8px;
     margin-bottom:20px;
 }
 
.occasions-corousel .swiper-slide-active .fx-serve-1-slider-item .item-title {
  opacity: 1;
  transform: translateY(0);
}
.occasions-corousel .swiper-slide-active .fx-serve-1-slider-item .item-img img {
  filter: grayscale(0);
}
.occasions-corousel .swiper-button-next, .occasions-corousel .swiper-button-prev{
    top: unset;
    bottom: 18px;
    flex: 0 0 auto;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0, 0.99);
    cursor: pointer;
}
.occasions-corousel .swiper-button-next:hover, 
.occasions-corousel .swiper-button-prev:hover{
    background-color:#d1a039;
}
.occasions-corousel .swiper-button-prev{
    left:245px;
}
.occasions-corousel .swiper-button-next{
    left: 290px;
    right: unset;
}
.occasions-corousel .swiper-button-prev:after, .occasions-corousel .swiper-button-next:after{
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.occasions-action-btn{
    margin-top:60px;
    max-width:50%;
}
.occasions-action-btn p{
    font-size:18px;
    margin-bottom:1.5rem;
}

.menu-ham-butger{
    display:block;
}


/*testimonial*/
.villas-testimonials{
    position:relative;
    padding:5rem 0;
}
.testimoal-card{

    position:relative;
}
.testimoal-card .testi-inner-car:before{
       content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-style: solid;
    border-left-width: 13px;
    border-right-width: 13px;
    border-top-width: 13px;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: #f6f5f1;
    bottom: -13px;
    border-bottom: 0;
    }
.test-nam-flex{
    display: flex;
    gap: 10px;
    margin-top: 20px;
    
    margin-bottom: 2rem;
}
.testimoal-card .testi-inner-car{
    margin:0;
    background: #f6f5f1;
    padding: 20px;
    border-radius: 10px;
        position: relative;
}
.test-nam-flex p{
        font-size: 17px;
    margin-bottom: 1px;
    font-family: 'Alice';
}

.menu-ham-butger{
    display:none;
}

.progress-pagination {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content:center;
}


.progress-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.4s ease;
}

.progress-pagination .swiper-pagination-bullet-active {
  width: 40px;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #d4af37,
    #f5d76e,
    #d4af37
  );
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.close-button{
    display:none;
}

.contact-ecr .left-contact {
    margin: 0;
    border: 10px solid #033631;
    border-bottom: 0;
    max-width: 400px;
    width: 100%;
}

.contact-ecr{
    padding: 6rem 0;
}

.contact-ecr .villoz-contact-left-social {
  background: #033631;
  padding: 40px 30px 30px;
  color: #fff;
}

.contact-ecr .villoz-contact-left-info {
  list-style: none;
  padding: 30px 30px 0;
  margin: 0;
}


.contact-ecr .villoz-contact-left-info li {
  display: flex;
  gap: 15px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e5eaf0;
}

.contact-ecr .shape-title{
            padding-bottom: 13px;
    position: relative;
    margin: 0;
    font-size: 18px;
}

.contact-ecr .shape-title::before {
    content: "";
    width: 40px;
    height: 13px;
    background-color: var(--villoz-white, #fff);
    position: absolute;
    top: -2px;
    left: 31px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.contact-ecr .right-sm-title{
    color: #737a83;
    font-size: 14px;
}

.contact-ecr .right-sm-title::before {
    content: "";
    display: block;
    width: 49px;
    height: 2px;
    background-color: rgb(3, 54, 49);}



   .contact-ecr input,
.contact-ecr select,
.contact-ecr textarea {
 width: 100%;
    border: none;
    background: #d1a0393d;
    padding: 15px;
    border-radius: 5px;
    margin: 0px 0 14px;
}


.contact-ecr .Contact-btn {
  border: 1px solid #fff;
  color: #fff;
  background-color: #033631;
  padding: 15px 9px 14px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}



.contact-ecr .Contact-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background-color: #d1a039;
  z-index: -1;
  transition: bottom 0.4s ease;
}

.contact-ecr .Contact-btn:hover::before {
  bottom: 0;
}

.contact-ecr .Contact-btn:hover {
  color: #033631; /* adjust text color if needed */
}

.contact-ecr .villoz-contact-left-social a{
        color: #d1a039;
    font-size: 19px;
    background: white;
    border-radius: 50px;
    margin: 0 7px;
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-block;
}
.contact-ecr .villoz-contact-left-social i{
    left: 5px;
    position: relative;
    top: 3px;
}

.contact-ecr .villoz-contact-left-info li {
    display: flex;
    gap: 15px;
     padding-bottom: 6px; 
    margin-bottom: 25px;
    border-bottom: 2px solid #0437324f;
}

.contact-ecr .contact-us-icons {
   flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 30px;
    font-size: 24px;
    background-color: #0336313d;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


.contact-ecr .contact-us-icons:hover {
    background-color: #d1a039;
    color: #fff;
}


.contact-ecr .contact-us-icons i{
    font-size: 17px;
    display: flex;
}


.contact-ecr .left-sm-title {
    color: #737a83;
    font-size: 14px;
}

.contact-ecr .bottom-border {
  position: relative;
  margin-bottom: 1px;
  display: flex;
}

.contact-ecr .bottom-border::after {
  content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.contact-ecr .bottom-border:hover::after {
  width: 100%;
}

.contact-ecr .villoz-contact-left-info a{
    color: #434343;
}

.contact-ecr .villoz-contact-left-social a:hover{
     background-color: #d1a039;
    color: #033631;
    transition: all 500ms ease;
}


.medium-btns:hover::before {
    top: -40%;
}


@media (max-width: 767px) {
    .nav-btn {
        display:none;
    }
    .ecr-cta-home {
    padding: 4rem 0;
    }
    .villas-testimonials p{
         text-align:justify;
    }
}



/* Button */
.booking-btn {
  padding: 10px 22px;
  background: #c89b3c;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal Box */
.modal-box {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  position: relative;
}

.modal-box .sec-big-title {
  margin-bottom: 15px;
  text-align:center;
}

/* Close Button */
.modal-overlay .close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Form */
.modal-box form input,
.modal-box form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.modal-overlay .submit-btn {
  width: 100%;
  padding: 12px;
  background: #033631;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}




/*BOOk now*/

/* Outer appointment container */
.appointment {
 
}

/* Section title */
.section-ttilsd {
  margin-bottom: 30px;
}

.section-big-titles {
  font-size: 28px;
  font-weight: 600;
  color: #111827;
}

/*.booking-bar {*/
/*  display: flex;*/
/*  gap: 16px;*/
/*  align-items: stretch;*/
/*}*/

.secondary-tab{
display: flex;
    margin-bottom: 20px;
    gap: 20px;
}

/* Wrapper behaves like a tab */
.date-dropdown-wrap {
  position: relative;
  flex: 1;
  
}



/* Individual tabs */
.booking-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 64px;
}

/* Make date tab fill wrapper */
.date-dropdown-wrap .booking-tab {
  width: 100%;
  height: 100%;
}

/* Hover effect */
.booking-tab:hover {
  border-color: #f59e0b;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.18);
}

/* Icons */
.booking-tab .icon {
  font-size: 20px;
}

/* Text */
.booking-tab .text {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

/* Dropdown arrow */
.booking-tab .arrow {
  margin-left: auto;
  font-size: 14px;
  color: #6b7280;
}

#dateRangePicker {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* Calendar dropdown */
.flatpickr-calendar {
  margin-top: 8px;
  z-index: 9999;
}

.villa-card {
  display: block;
  cursor: pointer;
}

.villa-card input {
  display: none;
}

/* Card base */
.card-content {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  position: relative;
  transition: all 0.25s ease;
}

/* Image */
.card-content img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

/* Text */
.card-content h4 {
  font-size: 15px;
  margin: 0 0 4px;
  font-weight: 600;
}

.card-content p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* Hover state */
.villa-card:hover .card-content {
  border-color: #f59e0b;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.25);
}

/* Checkmark */
.checkmark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

/* ACTIVE (SELECTED) */
.villa-card input:checked + .card-content {
  border-color: #10b981;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
}

/* Show tick when selected */
.villa-card input:checked + .card-content .checkmark {
  opacity: 1;
  transform: scale(1);
}

/* Hide input but keep functional */
#dateRangePicker {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Overlay */
.fp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  display: none;
}

/* Center calendar */
.flatpickr-calendar {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 9999;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border-radius: 14px;
}




/* ==============================
   Guest Tab
============================== */
.booking-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  max-width: 100%;
}

.booking-tab .icon {
  font-size: 18px;
}

.booking-tab .text {
  flex: 1;
  font-weight: 500;
  color: #111827;
}

.booking-tab .arrow {
  color: #6b7280;
}

/* ==============================
   Overlay
============================== */
.guest-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  display: none;
}

/* ==============================
   Popup Container
============================== */
.guest-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  z-index: 9999;
  display: none;
}

/* ==============================
   Rows
============================== */
.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.row.villas-selects{
    row-gap:20px;
}

.join-now-chess .flatpickr-calendar.open {
    padding: 32px 20px !important;
}

.counter span {
  width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

/* ==============================
   Divider
============================== */
.guest-popup hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}

/* ==============================
   Toggle Switch
============================== */
.switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #9ca3af;
  border-radius: 999px;
  transition: .25s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: .25s;
}

.switch input:checked + .slider {
  background: #2563eb;
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

/* ==============================
   Done Button
============================== */
.done-btn {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #2563eb;
  background: #fff;
  color: #2563eb;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.done-btn:hover {
  background:var(--primary-color);
}

.flatpickr-calendar {
    padding: 19px 20px !important;
}


.main-title-form {
  position: relative;

  padding: 40px ;
}


/* RIGHT CORNER BUTTON */
.title-next-btn {
  position: absolute;
  top: 24px;
  right: 24px;

  width: 52px;
  height: 52px;
  border-radius: 50%;

  background: #fff;
  border: 1px solid #d7ddea;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.25s ease;
}

/* Icon */
.title-next-btn i {
  font-size: 18px;
  color: #1f2937;
  padding-top: 5px;
}

/* Hover */
.title-next-btn:hover {
  border-color: #f59e0b;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.25);
}


.form-wrapper {
  animation: fadeSlide 0.4s ease;
}



.flatpickr-calendar {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  z-index: 1001;
}

.fp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  display: none;
}

.listing-villas .sec-big-title {
    margin-bottom:20px;
    text-align:center;
}

.listing-villas {
    padding:4rem 0 0;
}

/*.main-menu > li > a::before,.main-menu > li > span::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -8px;*/
/*    left: 0px;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    transform: scale3d(0, 5, 1);*/
/*    transform-origin: 0% 50%;*/
/*    background: #fff;*/
/*    transition: transform 0.3s cubic-bezier(1, 0.68, 0.16, 0.9);*/
/*}*/

/*.main-menu > li:hover > a:before,.main-menu > li:hover > span:before {*/
/*    -webkit-transform: scale3d(1, 1, 1);*/
/*    transform: scale3d(1, 1, 1);*/
/*     background: #fff;*/
/*}*/


/*.main-menu > li > a.active:before {*/
/*   border-bottom: 2px solid #ffff;*/
/*     background: #fff;*/
/*}*/

.k-nav li > a.active,
.k-nav li > span.active {
  border-bottom: 1px solid #ffffffc7;
}

.submenu li a.active {
    background: #f9f4e8;
    color: #d1a039;
}

.event-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.event-modal.active {
  display: block;
}

.event-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.event-modal-content {
  position: relative;
  max-width: 480px;
  background: #fff;
  margin: 115px auto;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

.event-modal .modal-title {
  font-size: 24px;
  margin-bottom: 6px;
}

.event-modal .modal-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.event-modal .form-group {
  margin-bottom: 16px;
}

.event-modal .form-group input,
.event-modal .form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.event-modal .submit-btn {
  width: 100%;
  background: #033631;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.event-modal .submit-btn:hover {
  background: #166b4d;
}

.selection-booking {
    max-width: 1100px;
  margin: 60px auto;
  padding: 30px 40px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06); 
}

.main-title-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 70px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}


/*.form-header {*/
/*  position: relative;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  padding: 24px 70px;*/
/*  background: #ffffff;*/
/*  border-radius: 16px;*/
/*  box-shadow: 0 8px 30px rgba(0,0,0,0.06);*/
/*  margin-bottom: 30px;*/
/*}*/



/* Back button base (same as next button) */
.form-nav-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d7ddea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Rotate arrow LEFT */
.back-btn i {
  transform: rotate(180deg);
  display: inline-block;
  font-size: 16px;
  color: #0b2c2a;
  transition: transform 0.25s ease;
}

/* Hover */
.form-nav-btn:hover {
  background: #0b2c2a;
  border-color: #0b2c2a;
}

.form-nav-btn:hover i {
  color: #ffffff;
}

.form-footer .submit-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    text-wrap: nowrap;
    line-height: 1.57em;
    background: #033631;
    color: #fff;
    border: 0;
    outline: 0;
    padding: 9px 24px;
    border: 1px solid #1D1D1D;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.58, 0, 0.88, 1);
    max-height: fit-content;
    border-radius: 10px;
}

.flatpickr-calendar.static {
  position: absolute;
  z-index: 999;
}

.text span{
    font-size:14px;
}

.slide-bg.mobile-view {
    display:none;
}

.terms-conditions p{
    font-family: 'Cabin';
}

.terms-conditions .sec-big-title{
    font-size:30px;
}

.information{
    padding:1rem 0;
}

.terms-conditions{
    padding:3rem 0;
}

.perfect-occation-sec .sec-big-title {
        font-size: 25px;
    font-weight: 500;
    margin: 0 0 10px;
}


.frequentlu-main-sec .rooms-typeee {
    margin-top:20px;
}

.error-pp-sec .error-btn{
   display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    text-wrap: nowrap;
    line-height: 1.57em;
    background: #033631;
    color: #fff;
    border: 0;
    outline: 0;
    padding: 9px 24px;
    border: 1px solid #1D1D1D;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.58, 0, 0.88, 1);
    max-height: fit-content;
    border-radius: 10px;
}