
/* --- Chat Widget Styling --- */

/* Floating Chat Button */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    font-family: sans-serif;
}

.chat-btn {
  background: linear-gradient(45deg, #0015ff, #00c3ff);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
   
    
}

@keyframes sweep {
    0% { left: -75%; }
    100% { left: 125%; }
}

.chat-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 195, 255, 0.6);
}

/* Chat Box */
.chat-box {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-header {
    background: #00c3ff;
    color: #000;
    font-weight: 700;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

#chatForm {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

#chatForm input, #chatForm textarea {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
}

#chatForm button {
    background: #00ffe1;
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

#chatForm button:hover {
    background: #00c3ff;
}

.chat-success {
    display: none;
    padding: 10px;
    color: green;
    text-align: center;
    font-weight: 700;
}







/* Slider images */

 
        .carousel-item {
            height: 100vh;
            min-height: 500px;
            background: no-repeat center center scroll;
            background-size: cover;
            position: relative;
        }

        .carousel-caption {
            bottom: 0px;
            background: rgba(0, 0, 0, 0.30);
            padding: 20px;
            border-radius: 10px;
        }

        .carousel-caption h5 {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .carousel-caption p {
            font-size: 1rem;
            margin: 0;
        }
  

/* Slider images end */





/* Hero Section Parallax */
 
        
      
        /* Dark overlay */
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 20px;
            animation: fadeUp 1.5s ease;
        }

        .hero h1 {
            font-family: "Playfair Display", serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero p {
            font-family: "Poppins", sans-serif;
            font-size: 1.3rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        /* Animation */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
              .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 20px;
            animation: fadeUp 1.5s ease;
        }

        .hero h1 {
            font-family: "Playfair Display", serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero p {
            font-family: "Poppins", sans-serif;
            font-size: 1.3rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        /* Animation */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
    
    @media (max-width: 768px) {
    
     .hero h1 {
            font-family: "Playfair Display", serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero p {
            font-family: "Poppins", sans-serif;
            font-size: 0.5rem;
            line-height: 1.7;
            opacity: 0.95;
        }
}
    

/* Hero Section Parallax End */




/* About Section */
  
        .about-section {
            background-color: #f1f1f1;
            margin-top: 0px;
        }

        .about-text p {
            font-family: "Poppins", sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }

        .btn-gradient {
            background: black;
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-gradient:hover {
            background: #5f5f5f;
            color: rgb(255, 255, 255);
        }

        .about-image img {
            border-radius: 12px;
            transition: transform 0.4s ease;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }
   
/* About Section End */




  /* Attraction Section  */
   
.attraction-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.attraction-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.attraction-card .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  transition: background 0.4s ease;
}

.attraction-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
}

.attraction-card h5 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.attraction-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* Hover Effect */
.attraction-card:hover img {
  transform: scale(1.1);
}
.attraction-card:hover .overlay {
  background: rgba(0,0,0,0);
}
.attraction-card:hover .card-content {
  transform: translateY(0);
}
    
  /* Attraction Section End */






  


/* Amenities Section */

  .amenities-neo {
    background: #f9f9f9;
    padding: 70px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }

  /* Section Title */
  .amenities-neo .section-title h2 {
    color: #222;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  .amenities-neo .section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #000000;
    margin: 12px auto 0;
    border-radius: 2px;
  }

  /* Group Container */
  .amenities-neo .amenity-group {
    margin-bottom: 35px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  .amenities-neo .amenity-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  /* Group Title */
  .amenities-neo .amenity-group h5 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #222;
    font-weight: 600;
    border-left: 4px solid #2ecc71;
    padding-left: 12px;
  }

  /* List Styling */
  .amenities-neo .amenity-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
  }
  .amenities-neo .amenity-list li {
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
  }
  .amenities-neo .amenity-list li i {
    color: #2ecc71;
    font-size: 1rem;
  }
  .amenities-neo .amenity-list li:hover {
    color: #000;
  }

  /* Hidden Groups */
  .amenities-hidden {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
  }
  .amenities-hidden.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  /* Button */
  .amenities-btn-wrap {
    text-align: center;
    margin-top: 40px;
  }
  .amenities-btn {
    background: #000000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
   
  }
  .amenities-btn:hover {
       background: #494949;
    color: white;
  }

  @media (max-width: 768px) {
    .amenities-neo .amenity-list {
      grid-template-columns: 1fr;
    }
  }

  /* Amenities Section End  */



    /* Reviews Section */
  
  .reviews-neo {
    background: #f9f9f9;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
  }
  .reviews-neo .section-title h2 {
    color: #313131;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
  }
  .review-card-neo {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
  }
  .review-card-neo:hover {
    transform: translateY(-6px);
  }
  .review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
  .review-text.expanded {
    -webkit-line-clamp: unset;
  }
  .read-toggle {
    color: #0073e6;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
  }
  .review-meta {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
  }
  .view-more-btn {
    display: block;
    text-align: center;
    margin: 40px auto 0;
  }
  .view-more-btn button {
    background: #000000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
  }
  .view-more-btn button:hover {
     background: #5f5f5f;
     color: rgb(255, 255, 255);
  }


/* Reviews hidden by default */
.extra-reviews {
  display: none;
}

/* Button styling */
.view-more-btn button {
  background: #b4975a;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-more-btn button:hover {
  background: #a1864d;
}


  /* Reviews Section End  */




  /* Reservation Section */
  
        .reservation-neo {
            background: linear-gradient(135deg, #f2f2f2, #f2f2f2);
            color: #000000;
            padding: 80px 20px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .reservation-neo .section-title h2 {
            color: #313131;
            font-size: 2.5rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 50px;
        }

        .reservation-form {
            background: #fff;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .reservation-form input,
        .reservation-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
        }

        .reservation-form button {
            background: #000000;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
            font-weight: 500;
        }

        .reservation-form button:hover {
            background: #5f5f5f;
            color: rgb(255, 255, 255);
        }

        .map-frame {
            border: none;
            border-radius: 16px;
            width: 100%;
            height: 100%;
            min-height: 380px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }


         /* Reservation Section End   */