/* ------------ GOOGLE FONT (SINGLE SOURCE) ------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ------------ RESET ------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* POPUP */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    width: 90%;
    max-width: 400px;
    background: #018508;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
}

.popup-box h2 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}


/* ------------ NAVBAR ------------ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    background-color: #fff;
}

/* Main Nav Menu */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove bullets from nav items */
.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav Links */
.nav-link {
    font-size: 18px;
    color: #12447a;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover */
.nav-link:hover {
    color: #78bf43;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown indicator arrow – modern chevron */
.has-dropdown::after {
    content: " ▾";
    font-size: 22px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Rotate chevron on hover */
.dropdown:hover .has-dropdown::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 220px;
    margin: 0;
    padding: 0;
    background: #e4e2e2;
    list-style: none;
    z-index: 1000;
}

/* Dropdown items */
.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Dropdown links */
.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hover effects */
.dropdown-menu li:hover {
    background-color: #78bf43;
}

.dropdown-menu li:hover .dropdown-item {
    color: #fff;
}

/* Final safety: remove browser bullets */
.nav-menu li::marker,
.dropdown-menu li::marker {
    content: none;
}


/* CONTACT BUTTON */
.my-btn {
    padding: 12px 25px;   /* Increased size */
    background-color: #78bf43;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;      /* Bigger text */
}

.my-btn:hover {
    background-color: #12447a;
}

/* ------------ MOBILE MENU ------------ */

.menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #1E93AB;
}

/* Mobile View */
@media(max-width: 768px) {

    .menu-icon {
        display: block;
    }

    .desktop-btn {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        display: none;
        box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        padding: 10px 0;
        text-align: center;
    }

    /* Dropdown inside mobile */
    .dropdown-menu {
        position: relative;
        width: 100%;
        display: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}


/* ------------ COVER BANNER ------------ */
.cover-banner {
    width: 100%;
    min-height: 600px;
    padding: 0px;
    
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.603), rgba(0, 0, 0, 0.7)),
        url('images/cover.bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ------------ BANNER CONTENT ------------ */
.banner-content h1 {
    font-size: 48px;
    color: #00e0ff;
    line-height: 1.3;
}
.banner-content h3{
    font-size: 20px;
    color: white;
    margin-top: 20px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 40px;

}
.banner-content h2 {
    color: #ffffff;
    font-size: 35px;
    margin-top: 10px;
}

/* ------------ BOOKING FORM ------------ */
.booking-form {
    display: flex;
    gap: 15px;
    margin-top: 45px;
    flex-wrap: wrap;
    justify-content: center;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    width: 250px;
}

/* ICON */
.icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #78bf43;
    font-size: 18px;
    pointer-events: none;
}

/* TEXT INPUT */
.input-field {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    background-color: #fff;
}

.input-field:focus {
    border-color: #78bf43;
    box-shadow: 0 0 6px rgba(120,191,67,0.4);
}

/* INPUT GROUP WRAPPER */
.input-group {
    position: relative;
    width: 250px;   /* same width as custom-select */
}

/* ICON STYLE */
.input-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #78bf43;
    font-size: 16px;
    z-index: 1000;
}
/* ------------ CUSTOM SELECT ------------ */
.custom-select {
    position: relative;
    width: 100%;   /* IMPORTANT */
    font-size: 16px;
}

/* Selected Box */
.select-selected {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}

.select-selected:hover {
    border-color: #78bf43;
    color: #78bf43;
}

/* Dropdown List */
.select-options {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 2px solid #78bf43;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: none;
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
}

/* Dropdown Items */
.select-options div {
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* GREEN HOVER */
.select-options div:hover {
    background: #78bf43;
    color: #fff;
}

.select-options div {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* ------------ BUTTON ------------ */
.book-btn {
    width: 250px;
    height: 50px;
    background-color: #78bf43;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.book-btn:hover {
    background-color: #12447a;
}


/* ======================================= */
/* RESPONSIVE DESIGN */
/* ======================================= */

/* -------- TABLETS & MOBILE (Below 768px) -------- */
@media (max-width: 768px) {

    .booking-form {
        flex-direction: column;
        width: 100%;
        gap: 18px;
        padding: 0 10px;
    }

    .input-group,
    .custom-select,
    .book-btn {
        width: 100%;
    }
}

/* -------- SMALL MOBILE (Below 480px) -------- */
@media (max-width: 480px) {

    .booking-form {
        gap: 15px;
    }
}


/* ===== SLIDER =====*/
.slider {
  width: 100%;
  background-color: #1E93AB;
  padding-top: 40px;
  padding-bottom: 20px;
}

.slider-inner {
  width: 90%;              /* 🔥 Fixed left-right space */
  margin: 0 auto;          /* Center */
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: calc(100% / 3);
  padding: 0 10px;   /* 20px total gap */
  box-sizing: border-box;
  border-radius: 20px;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dots span {
  height: 8px;
  width: 8px;
  margin: 5px;
  background: #000b1b;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.4;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
  background: #78bf43;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .slider-inner {
    width: 95%;
  }

  .slides img {
    width: 100%;        /* 🔥 Show only 1 image */
    padding: 0 5px;
  }

}



/* ------------- r4s-kitchen-search-section ------------- */

.r4s-kitchen-search-section{
padding:60px 20px;
background:#f6f8fb;
}

.r4s-kitchen-search-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
}

/* LEFT */

.r4s-kitchen-search-left{
flex:55%;
}

.r4s-kitchen-search-title{
font-size:34px;
margin-bottom:15px;
line-height:1.3;
}

.r4s-kitchen-search-stars{
color: #00ff0d;
font-size:22px;
margin-bottom:20px;
}

.r4s-kitchen-search-desc{
font-size:16px;
margin-bottom:25px;
color:#555;
line-height:1.7;
}

/* GRID */

.r4s-kitchen-search-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
margin-bottom:30px;
}

/* LIST CARD */

.r4s-kitchen-search-card{
background: #00e0ff;
padding:25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
list-style:disc;
padding-left:35px;
line-height:2;
transition:all .35s ease;
}

/* CARD HOVER */

.r4s-kitchen-search-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* BUTTON */

.r4s-kitchen-search-btn{
display:inline-block;
padding:14px 35px;
background: #00ff0d;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:all .3s ease;
}

.r4s-kitchen-search-btn:hover{
background: #00e0ff;
transform:translateY(-3px);
}

/* RIGHT IMAGES */

.r4s-kitchen-search-right{
flex:45%;
display:flex;
flex-direction:column;
gap:25px;
}

/* IMAGE BOX */

.r4s-kitchen-circle-img{
border-radius:8px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
transition:all .4s ease;
background:transparent;
}

/* IMAGE */

.r4s-kitchen-circle-img img{
width:100%;
height:300px;
object-fit:cover;
display:block; /* removes white gap */
transition:transform .4s ease;
}

/* IMAGE HOVER */

.r4s-kitchen-circle-img:hover{
transform:translateY(-8px);
box-shadow:0 25px 45px rgba(0,0,0,0.2);
}

.r4s-kitchen-circle-img:hover img{
transform:scale(1.05);
}

/* MOBILE */

@media(max-width:900px){

.r4s-kitchen-search-container{
flex-direction:column;
gap:40px;
}

.r4s-kitchen-search-grid{
grid-template-columns:1fr;
}

.r4s-kitchen-circle-img img{
height:220px;
}

}


/* ------------- r4s-kitchen-clean-section ------------- */


.r4s-kitchen-highlight-section{
padding:60px 30px;
background:url("images/cover.bg-1.jpg") center/cover no-repeat;
position:relative;
}

/* FULL OVERLAY */

.r4s-kitchen-highlight-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:1;
}

/* WRAPPER */

.r4s-kitchen-highlight-wrapper{
max-width:1200px;
margin:auto;
position:relative;
z-index:2;
}

/* MAIN TITLE */

.r4s-kitchen-highlight-title{
text-align:center;
font-size:38px;
margin-bottom:40px;
font-weight:600;
color:#fdfdfd;
letter-spacing:1px;
text-transform:uppercase;
}

/* GRID */

.r4s-kitchen-highlight-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
align-items:stretch;
}

/* IMAGE BOX */

.r4s-kitchen-highlight-img{
height:100%;
border-radius:12px;
overflow:hidden;
transition:all .4s ease;
}

.r4s-kitchen-highlight-img img{
width:100%;
height:100%;
object-fit:cover;
border-radius:12px;
transition:transform .5s ease;
}

/* IMAGE HOVER */

.r4s-kitchen-highlight-img:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.r4s-kitchen-highlight-img:hover img{
transform:scale(1.08);
}

/* GLASS TEXT BOX */

.r4s-kitchen-highlight-text{
padding:25px;
border-radius:12px;
transition:all .4s ease;

/* glass effect */

background:rgba(255,255,255,0.15);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.25);

display:flex;
flex-direction:column;
justify-content:center;
}

/* TEXT */

.r4s-kitchen-highlight-text h3{
font-size:20px;
margin-bottom:12px;
color: #00ff0d;
}

.r4s-kitchen-highlight-text p{
font-size:15px;
line-height:1.7;
color:#f1f1f1;
}

/* TEXT BOX HOVER */

.r4s-kitchen-highlight-text:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
background:rgba(255,255,255,0.25);
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

.r4s-kitchen-highlight-grid{
grid-template-columns:1fr;
}

.r4s-kitchen-highlight-title{
font-size:26px;
}

.r4s-kitchen-highlight-img img{
height:220px;
}

}



/* ------------- r4s-kdc-section ------------- */

/* SECTION */

.r4s-kdc-section{
padding:50px 20px;
background:#ffffff;
font-family: 'Poppins', sans-serif;
}

.r4s-kdc-container{
max-width:1200px;
margin:auto;
}

/* TITLE */

.r4s-kdc-main-title{
font-size:34px;
text-align:center;
margin-bottom:20px;
font-weight:700;
color:#222;
}

.r4s-kdc-intro{
text-align:center;
max-width:900px;
margin:auto;
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:50px;
}

/* BOX */

.r4s-kdc-box{
display:flex;
gap:40px;
align-items:center;
background:#91fa68a9;
padding:35px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.r4s-kdc-box:hover{
transform: translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */

.r4s-kdc-image{
flex:40%;
overflow:hidden;
border-radius:12px;
}

.r4s-kdc-image img{
width:100%;
height:280px;
object-fit:cover;
border-radius:12px;
transition: transform 0.5s ease, filter 0.5s ease;
}

/* HOVER EFFECT */

.r4s-kdc-image:hover img{
transform: scale(1.08);
filter: brightness(1.05);

}

/* CONTENT */

.r4s-kdc-content{
flex:60%;
}

.r4s-kdc-content h3{
font-size:24px;
margin-bottom:15px;
color:#111;
}

.r4s-kdc-content p{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:12px;
}

/* MOBILE */

@media (max-width:768px){

.r4s-kdc-box{
flex-direction:column;
padding:25px;
}

.r4s-kdc-image img{
height:220px;
}

.r4s-kdc-main-title{
font-size:26px;
}

}

/* ------------- r4s-prem-section ------------- */

/* SECTION */

.r4s-prem-section{
padding:90px 20px;
background:url("images/cover.bg-2.jpg") center/cover no-repeat;
position:relative;
overflow:hidden;
animation:r4sBgZoom 20s infinite alternate;
}

/* GRADIENT OVERLAY */

.r4s-prem-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(120deg,rgba(0,0,0,0.75),rgba(0,0,0,0.45));
z-index:1;
}

/* BACKGROUND ZOOM */

@keyframes r4sBgZoom{
from{background-size:100%;}
to{background-size:110%;}
}

/* CONTAINER */

.r4s-prem-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
position:relative;
z-index:2;
}

/* GLASS CARD */

.r4s-prem-card{
flex:60%;
padding:40px;
border-radius:20px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,0.18);
color:#fff;
animation:r4sFadeUp 1s ease;
transition:transform .3s ease, box-shadow .3s ease;
}

.r4s-prem-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* TITLE */

.r4s-prem-title{
font-size:34px;
margin-bottom:20px;
position:relative;
}

/* ANIMATED UNDERLINE */

.r4s-prem-underline{
display:block;
width:0;
height:4px;
background:#2dd4bf;
margin-top:10px;
border-radius:4px;
animation:r4sLine 1.5s ease forwards;
}

@keyframes r4sLine{
from{width:0;}
to{width:590px;}
}

/* TEXT */

.r4s-prem-card p{
line-height:1.8;
margin-bottom:15px;
color:#e0e0e0;
font-size:16px;
}

/* IMAGE AREA */

.r4s-prem-image-wrap{
flex:40%;
position:relative;
display:flex;
justify-content:center;
align-items:center;
animation:r4sFloat 6s ease-in-out infinite;
}

/* FLOATING BACKGROUND CIRCLE */

.r4s-prem-circle-bg{
position:absolute;
width:380px;
height:380px;
background:linear-gradient(135deg,#016b0f,#00ff5e);
border-radius:50%;
filter:blur(50px);
opacity:0.35;
}

/* IMAGE */

.r4s-prem-image-wrap img{
width:320px;
height:320px;
border-radius:50%;
object-fit:cover;
border:8px solid rgba(255,255,255,0.15);
position:relative;
z-index:2;
transition:transform .4s ease;
}

.r4s-prem-image-wrap img:hover{
transform:scale(1.08);
}

/* FLOAT ANIMATION */

@keyframes r4sFloat{
0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}
}

/* SCROLL ANIMATION */

@keyframes r4sFadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* ================= TABLET ================= */

@media(max-width:1024px){

.r4s-prem-container{
gap:40px;
}

.r4s-prem-title{
font-size:30px;
}

.r4s-prem-image-wrap img{
width:280px;
height:280px;
}

}


/* ================= MOBILE ================= */

@media(max-width:768px){

.r4s-prem-section{
padding:70px 20px;
}

.r4s-prem-container{
flex-direction:column;
text-align:center;
gap:40px;
}

.r4s-prem-card{
padding:30px;
}

.r4s-prem-title{
font-size:26px;
}

.r4s-prem-card p{
font-size:15px;
}

.r4s-prem-image-wrap img{
width:230px;
height:230px;
}

.r4s-prem-circle-bg{
width:260px;
height:260px;
}

.r4s-prem-underline{
margin-left:auto;
margin-right:auto;
}

}


/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

.r4s-prem-title{
font-size:22px;
}

.r4s-prem-card{
padding:25px;
}

.r4s-prem-card p{
font-size:14px;
line-height:1.7;
}

.r4s-prem-image-wrap img{
width:200px;
height:200px;
}

}

/* ------------- r4s-kds-section ------------- */

/* SECTION */

.r4s-kdw-section{
padding:80px 20px;
background:#f7f9fc;
}

/* CONTAINER */

.r4s-kdw-container{
max-width:1200px;
margin:auto;
display:flex;
flex-direction:column;
gap:70px;
}

/* ROW */

.r4s-kdw-row{
display:flex;
align-items:center;
gap:60px;
}

/* REVERSE ROW */

.r4s-kdw-reverse{
flex-direction:row-reverse;
}

/* IMAGE */

.r4s-kdw-image{
flex:40%;
overflow:hidden;
border-radius:12px;
}

.r4s-kdw-image img{
width:100%;
height:320px;
object-fit:cover;
border-radius:12px;
transition:transform .5s ease;
}

.r4s-kdw-image:hover img{
transform:scale(1.07);
}

/* CONTENT */

.r4s-kdw-content{
flex:60%;
}

.r4s-kdw-content h3{
font-size:26px;
margin-bottom:15px;
color:#222;
}

.r4s-kdw-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

.r4s-kdw-row{
flex-direction:column;
gap:25px;
}

.r4s-kdw-reverse{
flex-direction:column;
}

.r4s-kdw-image img{
height:230px;
}

.r4s-kdw-content h3{
font-size:22px;
}

}

/* ------------- r4s-kci-section ------------- */

/* SECTION */

.r4s-kci-section{
padding:60px 20px;
background:url("images/cover.bg-3.jpg") center/cover no-repeat;
position:relative;
}

.r4s-kci-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(120deg,rgba(0, 0, 0, 0.836),rgba(0, 0, 0, 0.377));
}

/* CONTAINER */

.r4s-kci-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
position:relative;
z-index:2;
}

/* CONTENT */

.r4s-kci-content{
flex:60%;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
padding:40px;
border-radius:16px;
border:1px solid rgba(255,255,255,0.15);
transition: all 0.35s ease;
}

/* HOVER EFFECT */

.r4s-kci-content:hover{
transform:translateY(-8px) scale(1.01);
box-shadow:0 20px 50px rgba(0,0,0,0.35);
background:rgba(255,255,255,0.12);
border:1px solid rgba(255,255,255,0.25);
}

/* TITLE */

.r4s-kci-title{
font-size:32px;
color:#00e1ff;
margin-bottom:25px;
line-height:1.3;
}

/* LIST */

.r4s-kci-list{
list-style:none;
padding:0;
margin:0;
}

.r4s-kci-list li{
color:#ffffff;
font-size:16px;
margin-bottom:14px;
padding-left:26px;
position:relative;
line-height:1.7;
}

/* CUSTOM BULLET */

.r4s-kci-list li::before{
content:"✔";
position:absolute;
left:0;
top:0;
color: #00e1ff;
font-size:14px;
}

/* IMAGE */

.r4s-kci-image{
flex:40%;
}

.r4s-kci-image img{
width:100%;
height:360px;
object-fit:cover;
border-radius:14px;
box-shadow:0 20px 50px rgba(0,0,0,0.35);
transition:transform .4s ease;
}

.r4s-kci-image img:hover{
transform:scale(1.05);
}

/* MOBILE */

@media(max-width:768px){

.r4s-kci-container{
flex-direction:column;
gap:35px;
}

.r4s-kci-content{
padding:25px;
}

.r4s-kci-title{
font-size:24px;
text-align:center;
}

.r4s-kci-image img{
height:230px;
}

}

/* ------------- r4s-kcta-section ------------- */

/* SECTION */

.r4s-koffer-section{
padding:60px 20px;
background:#ffffff;
}

/* CONTAINER */

.r4s-koffer-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
}

/* IMAGE */

.r4s-koffer-image{
flex:30%;
}

.r4s-koffer-image img{
width:100%;
height:360px;
object-fit:cover;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
transition:transform .4s ease;
}

.r4s-koffer-image img:hover{
transform:scale(1.05);
}

/* CONTENT */

.r4s-koffer-content{
flex:70%;
}

.r4s-koffer-title{
font-size:32px;
margin-bottom:18px;
color:#222;
}

.r4s-koffer-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

/* BUTTON AREA */

.r4s-koffer-buttons{
margin-top:25px;
display:flex;
gap:18px;
flex-wrap:wrap;
}

/* BUTTON */

.r4s-koffer-btn-call{
padding:14px 28px;
background:#00c875;
color:#fff;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.r4s-koffer-btn-call:hover{
background:#00a862;
transform:translateY(-3px);
}

.r4s-koffer-btn-book{
padding:14px 28px;
background:#222;
color:#fff;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.r4s-koffer-btn-book:hover{
background:#444;
transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

.r4s-koffer-container{
flex-direction:column;
gap:30px;
}

.r4s-koffer-image img{
height:230px;
}

.r4s-koffer-title{
font-size:24px;
text-align:center;
}

.r4s-koffer-content{
text-align:center;
}

.r4s-koffer-buttons{
justify-content:center;
}

}

/* ------------- Our Happy Clients ------------- */
.logo-section {
  text-align: center;
  margin: 15px 0;
}

/* H3 */
.logo-heading {
  font-size: 35px;
  margin-bottom: 0px;
}

/* White Box */
.logo-box {
  background: #ffffff;
  padding: 30px 60px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* IMPORTANT FIX */
.logo-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Slider Track */
.logo-slider {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  padding-left: 60px;   /* 👈 Creates initial left space */
  animation: slide 30s linear infinite;
}

/* Logos */
.logo-slider img {
  height: 180px;   /* 200px too big → caused layout push */
  width: auto;
  flex-shrink: 0;
}

/* Smooth Continuous Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on Hover */
.logo-box:hover .logo-slider {
  animation-play-state: paused;
}

/* ===== MOBILE ONE-BY-ONE SLIDER ===== */
@media (max-width: 768px) {

  .logo-box {
    padding: 0px;
  }

  .logo-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .logo-slider {
    display: flex;
    width: 100%;
    gap: 0;
    animation: mobileSlide 15s infinite;
  }

  .logo-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 280px;      /* Bigger logo */
    object-fit: contain;
  }

  @keyframes mobileSlide {
    0%   { transform: translateX(0%); }
    20%  { transform: translateX(0%); }

    25%  { transform: translateX(-100%); }
    45%  { transform: translateX(-100%); }

    50%  { transform: translateX(-200%); }
    70%  { transform: translateX(-200%); }

    75%  { transform: translateX(-300%); }
    95%  { transform: translateX(-300%); }

    100% { transform: translateX(-400%); }
  }

}




/* ===============================
   CHATBOT BUTTON
================================ */
#chatbot-btn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
  z-index: 10000;
}

#chatbot-btn img {
  width: 70px;
  height: 70px;
  transition: 0.3s ease;
}

#chatbot-btn:hover img {
  transform: scale(1.08);
}


/* ===============================
   CHATBOT BOX
================================ */
#chatbot {
  position: fixed;
  bottom: 140px;
  right: 20px;
  width: 360px;
  max-height: 560px;
  background: #ffffff;
  border-radius: 18px;
  display: none;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  overflow: hidden;
  z-index: 9999;
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(15px);}
  to {opacity:1; transform:translateY(0);}
}


/* ===============================
   HEADER
================================ */
.chat-header {
  background: #018508;
  color: #fff;
  padding: 15px;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}


/* ===============================
   CHAT BODY
================================ */
#chat-body {
  height: 340px;
  padding: 15px;
  overflow-y: auto;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* ===============================
   MESSAGE WRAPPER
================================ */
.msg {
  display: flex;
  align-items: flex-end;
  width: 100%;
}


/* ===============================
   BOT MESSAGE
================================ */
.msg.bot {
  justify-content: flex-start;
  align-items: flex-end;
}

/* ✅ BOT ICON STYLE ADDED */
.bot-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.msg.bot .bubble {
  background: #48d4f0;
  color: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  border-top-left-radius: 5px;
  max-width: 75%;
  font-size: 14px;
}


/* ===============================
   USER MESSAGE (RIGHT SIDE)
================================ */
.msg.user {
  justify-content: flex-end;
}

.msg.user .bubble {
  background: #ffffff;
  color: #000;
  padding: 10px 14px;
  border-radius: 16px;
  border-top-right-radius: 5px;
  max-width: 75%;
  font-size: 14px;
  border: 1px solid #ddd;
}


/* ===============================
   WELCOME BIG STYLE
================================ */
.welcome-box {
  text-align: center;
  width: 100%;
}

.welcome-box .welcome-icon {
  font-size: 42px;
  margin-bottom: 8px;
}

.welcome-box .welcome-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}


/* ===============================
   SERVICE GRID
================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}

/* ✅ TEXT BLACK CONFIRMED */
.service-btn {
  padding: 10px 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  transition: 0.2s ease;
  font-weight: 600;
}

.service-btn:hover {
  background: #018508;
  color: #fff;
  border-color: #018508;
}

.service-btn.active {
  background: #018508;
  color: #fff;
  border-color: #018508;
}


/* ===============================
   DATE INPUT
================================ */
input[type="date"] {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 14px;
}

input[type="date"]:focus {
  border-color: #018508;
  outline: none;
}


/* ===============================
   TIME SLOTS
================================ */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.time-btn {
  padding: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #000;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
}

.time-btn:hover {
  background: #018508;
  color: #fff;
  border-color: #018508;
}

.time-btn.active {
  background: #018508;
  color: #fff;
  border-color: #018508;
}


/* ===============================
   INPUT AREA
================================ */
.chat-input-wrap {
  padding: 10px;
  background: #fff;
  border-top: 1px solid #eee;
}

.chat-input-inner {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 25px;
  padding: 6px 8px;
}

#user-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 14px;
  outline: none;
}

#send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #018508;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

#send-btn:hover {
  background: #018508;
}


/* ===============================
   CONFIRM BUTTON
================================ */
.confirm-booking {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  background: #018508;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s ease;
}

.confirm-booking:hover {
  background: #018508;
}


/* ===============================
   MOBILE FIX
================================ */
@media (max-width: 480px) {

  html,
  body{
    overflow-x:hidden;
  }

  #chatbot{
    position:fixed;
    left:10px !important;
    right:10px !important;
    bottom:140px;
    width:calc(100% - 20px) !important;
    max-width:calc(100% - 20px) !important;
    min-width:auto !important;
    margin:0 !important;
    box-sizing:border-box;
  }

  #chat-body{
    overflow-x:hidden;
  }

  .chat-input-wrap,
  .chat-input-inner{
    width:100%;
    box-sizing:border-box;
  }

  #user-input{
    width:100%;
    min-width:0;
  }

  .msg{
    width:100%;
  }

  .msg.bot .bubble,
  .msg.user .bubble{
    max-width:85%;
    word-break:break-word;
  }

  .time-grid{
    grid-template-columns:repeat(3,1fr);
  }

  #chatbot-btn{
    right:15px !important;
    bottom:45px !important;
  }

  #chatbot-btn img{
    width:80px;
    height:80px;
  }

}

/*-- left side fixed icon --*/
/* ===== FLOATING CONTACT FULL ISOLATION ===== */

/* ================= FLOATING CONTACT ================= */

#floating-contact {
    position: fixed !important;
    left: 25px !important;
    bottom: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    z-index: 99999 !important;
}

/* ================= MAIN BUTTON ================= */

#floating-contact .fc-main {
    width: 75px !important;
    height: 75px !important;
    background: #4c3cff !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
    overflow: hidden !important;

    transition: transform 0.3s ease !important;   /* Rotation animation */
}

/* ROTATE CLASS */
#floating-contact .fc-main.rotate {
    transform: rotate(45deg);
}

/* IMAGE INSIDE BUTTON */
#floating-contact .fc-main img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
}

/* ================= SUB ICON CONTAINER ================= */

#floating-contact .fc-sub {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* SHOW */
#floating-contact .fc-sub.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================= SMALL ICONS ================= */

#floating-contact .fc-icon {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #fff !important;
    font-size: 22px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}

/* COLORS */
.fc-call { background: #4c3cff !important; }
.fc-whatsapp { background: #25d366 !important; }
.fc-mail { background: #c9b000 !important; }



/*-- Footer section --*/

/* MAIN FOOTER */
.footer {
    background: linear-gradient(135deg, #0a2b00, #018508, #2c6441);
    color: #fff;
    padding-top: 70px;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* 4 COLUMN LAYOUT */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 0;
    text-align: left;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: left;
}

.footer-col h4 {
    margin: 15px 0;
    text-align: left;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 10px;
    text-align: left;
}

.footer-col p + p {
    margin-top: 30px;
}

/* LOGO */
.footer-logo {
    width: 120px;
    margin-bottom: 0px;
}

/* FORM */
.footer-form {
    width: 100%;
}

.footer-form input,
.footer-form .select-selected,
.footer-form button {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    font-size: 13px;
}

/* INPUT & SELECT */
.footer-form input,
.footer-form .select-selected {
    background: #fff;
    color: #666;
}

/* SELECT SERVICE */
.footer-form .input-group {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.footer-form .custom-select {
    width: 100%;
    position: relative;
}

.footer-form .select-selected {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

/* OPTIONS BOX */
.footer-form .select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 180px;
    overflow-y: auto;
    background: #fff;
    border-radius: 4px;
    z-index: 99;
}

/* OPTION ITEMS */
.footer-form .select-options div {
    padding: 10px 15px;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    cursor: pointer;
}

.footer-form .select-options div:hover {
    background: #00e0ff;
    color: #000;
}

/* BUTTON */
.footer-form button {
    background: #00e0ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #fff;
}





/* QUICK LINKS */
.quick-links {
    list-style: none;
    padding: 0;
    text-align: left;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.quick-links a:hover {
    color: #00e0ff;
    padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 20px;
    text-align: left;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00e0ff;
    transform: translateY(-5px);
}


/* BOTTOM BAR */
.footer-bottom {
    width: 100%;
    margin-top: 50px;
    padding: 15px 0;
    text-align: center;
    background: rgb(0, 9, 31);
    font-size: 14px;
    color: #ccc;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {

    .footer {
        padding-top: 50px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h3,
    .footer-col h4,
    .footer-col p,
    .quick-links,
    .social-icons {
        text-align: center;
    }

    .footer-logo {
        display: block;
        margin: 0 auto 15px;
    }

    .quick-links li {
        margin-bottom: 12px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        margin: 0 5px;
    }

    .footer-form input,
    .footer-form .select-selected,
    .footer-form button {
        height: 42px;
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 12px 10px;
    }
}