


/* ===========================
   GLOBAL VARIABLES
=========================== */
:root {
  --primary-color: #fcb500;     /* Logo orange-yellow */
  --secondary-color: #2d9d46;   /* Leaf green */
  --accent-color: #007b83;      /* Blue-teal */
  --dark-color: #1b4332;        /* Deep forest green */
  --light-bg: #f8f9fa;          /* Light background */
  --text-color: #333;
  --transition: all 0.3s ease;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}


/* Headings & brand name */
h1, h2, h3, h4, h5, h6,
.navbar-brand span,
.section-title {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  color: var(--dark-color);
}

/* Buttons and navbar links */
.navbar-nav .nav-link,
.btn,
p, a, li {
  font-family: var(--font-body);
}

/* Extra style for smoothness */
h1, h2 {
  font-weight: 700;
}
p {
  line-height: 1.7;
  font-weight: 400;
}




/* ===========================
   BASE STYLES
=========================== */
body {
   font-family: var(--font-body);
  color: var(--text-color);
  background-color: #fff;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  color: var(--dark-color);
  font-weight: 600;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

/* ===========================
   NAVBAR STYLES
=========================== */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.navbar-brand img {
  width: 250px;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0 0.8rem;
  transition: var(--transition);
}

.nav-item a{
  align-content: center;
  align-items: center;
  display: flow-root;
}
/* ===========================
   UNDERLINE ANIMATION EFFECT
=========================== */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Hover & Active States */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Hover & Active Text Color */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

/* ===========================
   BUTTON STYLES
=========================== */
.btn-success {
  background-color: var(--secondary-color);
  border: none;
  transition: var(--transition);
}

.btn-success:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ===========================
   RESPONSIVE NAVBAR
=========================== */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }
  .navbar-nav .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===========================
   REACH US SECTION
=========================== */
#reach-us {
  background: var(--light-bg);
}

#reach-us .card {
  border-radius: 12px;
  transition: var(--transition);
}

#reach-us .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#reach-us i {
  color: var(--secondary-color);
}

#reach-us h2 {
  color: var(--dark-color);
}

#reach-us h5 {
  color: var(--primary-color);
}

/* ===========================
   BUTTONS & LINKS
=========================== */
.btn-custom {
  background: var(--primary-color);
  color: #080808;
  font-weight: 800;
  border: none;
  transition: var(--transition);
  padding: 10px 25px;
  border-radius: 50px;
}

.btn-custom:hover {
  background: var(--secondary-color);
  color: #fff;
}

.btn-custom.active{
  background-color: var(--secondary-color);
  color: #fff;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: var(--primary-color);
}

footer a:hover {
  color: var(--secondary-color);
}

/* ===========================
   RESPONSIVE STYLES
=========================== */
@media (max-width: 768px) {
  .navbar-brand span {
    font-size: 1.2rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}


/* ===========================
   HERO CAROUSEL STYLES
=========================== */
#hero {
  position: relative;
  overflow: hidden;
}

.hero-img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(65%);
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease;
}

.carousel-caption h1 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  text-transform: capitalize;
}

.carousel-caption p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #fff;
  max-width: 700px;
}

/* Carousel Buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 15px;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--secondary-color);
}

/* Fade Animation */
.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-img {
    height: 70vh;
  }
  .carousel-caption h1 {
    font-size: 1.5rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}



/* ===========================
   ABOUT SECTION STYLES
=========================== */
.about-section {
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.about-section h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.about-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

.about-section .btn-custom {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

.about-section .btn-custom:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}
/* ===========================
   ABOUT IMAGE HOVER EFFECT
=========================== */
.about-section img {
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  border-radius: 20px;
}

.about-section img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* ===========================
   PLACES CARD VIEW STYLES
=========================== */
.places-section {
  position: relative; /* Needed for overlay */
  background: url('img/download.jpeg') no-repeat center center;
  background-size: cover; /* Full-size image */
  font-family: 'Poppins', sans-serif;
  color: #fff; /* Default text color */
  padding: 60px 0; /* Add some spacing for content */
  overflow: hidden;
}

/* Black overlay */
.places-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

/* Content inside the section */
.places-section .container {
  position: relative;
  z-index: 2; /* So content appears above overlay */
}

/* Place card styling remains the same */
.place-card {
  background: #fff;
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.place-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.place-card h5 {
  color: var(--primary-color);
}

.place-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-section {
  font-family: 'Poppins', sans-serif;
  background: #f9fdf9;
  position: relative;
}

.feature-section h2 {
  font-size: 2.5rem;
}

.feature-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-section .btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.feature-section .btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Image hover effect */
.feature-img img.hover-effect {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.feature-img img.hover-effect:hover {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.1);
}

.highlights-section {
  background: var(--accent-color);
  font-family: 'Poppins', sans-serif;
}

.highlight-card {
  background: #fff;
  transition: all 0.4s ease;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.highlight-card h5 {
  color: var(--primary-color);
}

.highlight-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.highlight-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}


/* ===========================
   TESTIMONIALS SECTION
=========================== */
.testimonials-section {
  background: var(--light-bg);
  padding: 5rem 0;
  font-family: var(--font-body);
}

.testimonials-section h2 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.testimonials-section p {
  color: var(--dark-color);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  color: var(--dark-color);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.testimonial-card h6 {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 1rem;
}

/* Hover Animation */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Carousel Controls Custom */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 0.5rem;
  height: 3rem;
  width: 3rem;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--accent-color);
  transform: scale(1.1);
  transition: var(--transition);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .testimonials-section h2 {
    font-size: 2rem;
  }

  .testimonials-section p {
    font-size: 0.95rem;
  }
}


/* Footer Base */
.footer {
  background: var(--dark-color);
  font-family: var(--font-body);
  color: #fff;
  border-top: 3px solid var(--primary-color);
}

/* Footer Titles */
.footer-title {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Footer Text */
.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ffffff;
}

/* Links */
.footer-links ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 4px;
}

/* Contact Icons */
.footer-contact i {
  color: var(--primary-color);
}

/* Bottom Bar */
.footer-bottom {
  background: var(--dark-color);
  border-color: rgba(0,0,0,0.08);
  font-size: 0.9rem;
}
.footer-bottom .sitename {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom .credits a {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}
.footer-bottom .credits a:hover {
  color: var(--secondary-color);
}

/* Responsive Alignment */
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer-about img {
    margin: 0 auto;
  }
  .footer-links ul li {
    justify-content: center;
  }
  .footer-contact ul {
    padding-left: 0;
  }

  .footer-title{
    text-align: center !important;
  }

  .footer-contact ul{
    text-align: center !important;
    align-items: center !important;
  }
}


.highlights-section {
  position: relative;
  background: url('./img/bg2.jpg') center center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.highlights-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* Make content visible above overlay */
.highlights-section .container {
  position: relative;
  z-index: 1;
}

/* Card design with glassmorphism effect */
.highlight-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Icon circle styling */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}
.highlight-card:hover .icon-circle {
  background: var(--accent-color);
  transform: rotate(10deg) scale(1.05);
}

/* Text */
.highlight-card p {
  font-size: 0.95rem;
  color: #eaeaea;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .highlight-card {
    margin-bottom: 1.5rem;
  }
}


.about-header {
  position: relative;
  height: 60vh;
  color: #fff;
  overflow: hidden;
  font-family: var(--font-primary);
}

/* Overlay */
.about-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Content */
.about-header .container {
  position: relative;
  z-index: 1;
}

.about-header h1 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-header p {
  color: #f1f1f1;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  margin-top: 10px;
}
.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb-item a:hover {
  color: var(--accent-color);
}
.breadcrumb-item.active {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-header {
    height: 45vh;
    text-align: center;
  }
  .about-header h1 {
    font-size: 2rem;
  }
  .about-header p {
    font-size: 1rem;
    padding: 0 15px;
  }
}

.mv-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 320px; /* equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.mv-card:hover .icon-circle {
  transform: scale(1.1) rotate(10deg);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .mv-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .row.justify-content-center {
    flex-direction: column;
    align-items: center;
  }
  .mv-card {
    min-height: auto;
    width: 100%;
    margin-bottom: 1.5rem;
  }
}


/* Centered carousel indicators over the image */
#cottageCarousel .carousel-indicators {
  position: absolute;
  bottom: 15px !important;          /* distance from bottom */
  left: 40% !important;             /* center horizontally */
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

#cottageCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  transition: all 0.3s ease;
}

#cottageCarousel .carousel-indicators .active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

#cottage2Carousel .carousel-indicators {
  bottom: 15px !important;          /* distance from bottom */
  left: 40% !important; 
}


#cottage2Carousel .carousel-indicators button {
  width: 12px;
  height: 12px; 
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  transition: all 0.3s ease;
}

#cottage2Carousel .carousel-indicators .active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

/* Dark overlay */
.dam-section .overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content */
.dam-section .container {
  position: relative;
  z-index: 2;
}

/* Title styling */
.dam-section .dam-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  margin-bottom: 1rem;
}

/* Text styling */
.dam-section .dam-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  max-width: 700px;
}

/* Button styling */
.dam-section .btn-warning {
  background: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
}
.dam-section .btn-warning:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .dam-section {
    min-height: 400px;
    padding: 4rem 1rem;
  }
  .dam-section .dam-title {
    font-size: 2rem;
  }
  .dam-section .dam-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .dam-section {
    min-height: 350px;
    padding: 3rem 1rem;
  }
  .dam-section .dam-title {
    font-size: 1.6rem;
  }
  .dam-section .dam-text {
    font-size: 0.95rem;
  }
}

/* =========================
   Carousel Bullets Over Image
========================= */
#guesthouseCarousel .carousel-indicators {
    bottom: 15px; /* distance from bottom */
    left: 40% !important;
    transform: translateX(-50%);
    justify-content: center;
    gap: 8px; /* space between bullets */
}

#guesthouseCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    transition: all 0.3s;
}

#guesthouseCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.gallery-card { position: relative; }
.gallery-img { 
  overflow: hidden; 
  border-radius: 12px; 
  cursor: pointer; 
  height: 250px; /* Fixed height for all images */
}
.gallery-img img { 
  width: 100%; 
  height: 100%; /* Fill the container */
  object-fit: cover; /* Crop/cover without distortion */
  display: block; 
  transition: transform 0.3s; 
}
.gallery-img:hover img { transform: scale(1.05); }

.gallery-overlay { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  opacity: 0; 
  transition: opacity 0.3s; 
  border-radius: 12px; 
  color: #fff; 
  font-size: 1.5rem;
}
.gallery-img:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox { 
  display: none; 
  position: fixed; 
  top: 0; left: 0; 
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); 
  z-index: 1050; 
  align-items: center; 
  justify-content: center;
}
.lightbox-content { max-width: 90%; max-height: 90%; border-radius: 10px; }
.lightbox .close { 
  position: absolute; 
  top: 20px; right: 30px; 
  font-size: 2rem; 
  color: #fff; 
  cursor: pointer; 
}

  .contact-section .form-control {
    border-radius: 10px;
    padding: 12px 15px;
  }
  .contact-section .btn-warning {
    background-color: #ffb001;
    border: none;
    transition: 0.3s;
  }
  .contact-section .btn-warning:hover {
    background-color: #e09b00;
  }


  .booking-section {
  position: relative;
  background-attachment: fixed;
  font-family: var(--font-primary);
}

.booking-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.booking-form {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.booking-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 8px;
  transition: var(--transition);
}

.booking-form .form-control:focus {
  background: rgba(255,255,255,0.2);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(252,181,0,0.3);
  color: #fff;
}

.booking-form .form-control::placeholder {
  color: #ccc;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000;
  border: none;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: scale(1.05);
}


/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Transparent Floating Button */
.float-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent; /* fully transparent */
  transition: transform 0.3s ease;
}

/* Floating Animation */
@keyframes airFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.float-animate {
  animation: airFloat 3s ease-in-out infinite;
}

.float-animate.delay {
  animation-delay: 1.5s;
}

/* WhatsApp & Call Icons */
.float-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.float-btn:hover .float-icon {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .float-icon {
    width: 55px;
    height: 55px;
  }
}

.review-card {
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 15px;
}
@media (max-width: 768px) {
  #google-reviews .review-card {
    text-align: center;
  }
}

.btn-primary {
  background-color: var(--light-bg);
  border: none;
  transition: all 0.3s ease;
  border-radius: 5px !important;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(252, 181, 0, 0.5);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn-primary {
  animation: pulse 2s infinite;
}

.booking-section .form-control {
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
}

.booking-section .btn-primary {
  background-color: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
}

.booking-section .btn-primary:hover {
  transform: translateY(-2px);
  background-color: #e3a100;
}

.booking-contact a:hover {
  color: var(--primary-color) !important;
}

.more-photos-section {
  background: linear-gradient(135deg, #fff8e1, #fff);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.more-photos-section .btn-primary {
  background-color: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
}

.more-photos-section .btn-primary:hover {
  transform: scale(1.05);
  background-color: #e3a100;
}
