   :root {
       --primary: #228B22;
       --primary-dark: #1c741c;
       --text-dark: #333;
       --text-light: #fff;
       --text-grey: #666;
       --bg-light: #f8f9fa;
       --pink: #e91e63;
   }

   body {
       font-family: 'Poppins', sans-serif;
       color: var(--text-dark);
       overflow-x: hidden;
       padding-top: 76px;
   }

   /* Utility */
   .text-primary-custom {
       color: var(--primary) !important;
   }

   .section-padding {
       padding: 80px 0;
   }

   .section-title {
       margin-bottom: 50px;
       font-weight: 700;
       position: relative;
       display: inline-block;
   }

   .section-title::after {
       content: '';
       display: block;
       width: 60px;
       height: 3px;
       background: var(--primary);
       margin: 10px auto 0;
   }

   /* Navbar */
   .navbar {
       background-color: #fff;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
       padding: 10px 0;
   }

   .navbar-brand {
       font-weight: 700;
       color: var(--primary);
       line-height: 1.2;
       font-size: 1.25rem;
   }

   .nav-link {
       font-weight: 500;
       color: var(--text-dark);
       padding: 10px 15px !important;
   }

   .nav-link:hover,
   .nav-link.active {
       color: var(--primary);
   }

   .navbar-toggler {
       border: none;
       padding: 0;
       font-size: 1.5rem;
   }

   .navbar-toggler:focus {
       box-shadow: none;
   }

   /* Hero (LCP Optimized) */
   .hero-section {
       height: 70vh;
       min-height: 500px;
       background-color: #333;
       /* Relative path fixed and strictly defined */
       background-image: linear-gradient(to bottom, rgba(34, 139, 34, 0.3), rgba(0, 0, 0, 0.8)), url('./Images/Gallery\ 6.avif');
       background-size: cover;
       background-position: center;
       background-attachment: fixed;
       /* Parallax effect */
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       color: var(--text-light);
       padding: 0 15px;
       position: relative;
   }

   .hero-title {
       font-size: clamp(2.5rem, 6vw, 4rem);
       font-weight: 800;
       margin-bottom: 10px;
       text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
       letter-spacing: -1px;
   }

   .hero-subtitle {
       font-size: clamp(1.1rem, 3vw, 1.5rem);
       margin-bottom: 30px;
       font-weight: 400;
       text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.6);
       color: rgba(255, 255, 255, 0.9);
   }

   /* Animations */
   .reveal-section {
       opacity: 0;
       transform: translateY(30px);
       transition: opacity 0.8s ease-out, transform 0.8s ease-out;
       will-change: opacity, transform;
   }

   .reveal-section.visible {
       opacity: 1;
       transform: translateY(0);
   }

   /* Buttons & Components */
   .btn-custom {
       padding: 12px 30px;
       border-radius: 50px;
       font-weight: 600;
       text-decoration: none;
       display: inline-block;
       margin: 8px;
       border: 2px solid var(--primary);
       transition: all 0.3s ease;
   }

   .btn-filled {
       background-color: var(--primary);
       color: white;
   }

   .btn-filled:hover {
       background-color: var(--primary-dark);
       border-color: var(--primary-dark);
       transform: translateY(-3px);
       color: white;
   }

   .btn-outline {
       background-color: transparent;
       color: white;
       border-color: white;
   }

   .btn-outline:hover {
       background-color: white;
       color: var(--primary);
       transform: translateY(-3px);
   }

   .btn-gradient {
       background: linear-gradient(45deg, var(--primary), #3CB371);
       color: white;
       border: none;
       padding: 10px;
       width: 100%;
       font-weight: 600;
       border-radius: 0 0 15px 15px;
       display: block;
       text-align: center;
       text-decoration: none;
       transition: 0.3s;
   }

   .btn-gradient:hover {
       opacity: 0.9;
       color: white;
   }

   .service-card {
       border: none;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       transition: 0.3s;
       height: 100%;
   }

   .service-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

   .service-img {
       height: 200px;
       object-fit: cover;
       width: 100%;
   }

   .amenity-box {
       text-align: center;
       padding: 20px;
       background: #fff;
       border-radius: 10px;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
       margin-bottom: 20px;
       transition: 0.3s;
   }

   .amenity-box:hover {
       transform: translateY(-5px);
   }

   .amenity-icon {
       font-size: 2.5rem;
       color: var(--primary);
       margin-bottom: 15px;
   }

   .gallery-item {
       position: relative;
       overflow: hidden;
       border-radius: 10px;
       height: 250px;
       cursor: pointer;
       width: 100%;
   }

   .gallery-item img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .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: 0.3s;
       color: white;
       font-size: 2rem;
   }

   .gallery-item:hover img {
       transform: scale(1.1);
   }

   .gallery-item:hover .gallery-overlay {
       opacity: 1;
   }

   .testimonial-card {
       background: #fff;
       padding: 30px;
       border-radius: 15px;
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
       text-align: center;
       margin: 10px;
       height: 100%;
   }

   .t-img {
       width: 70px;
       height: 70px;
       border-radius: 50%;
       object-fit: cover;
       margin-bottom: 15px;
       border: 3px solid var(--primary);
   }

   .testimonial-carousel-btn {
       width: 50px;
       height: 50px;
       background: var(--primary);
       border-radius: 50%;
       opacity: 1;
       top: 50%;
       transform: translateY(-50%);
       display: flex;
       align-items: center;
       justify-content: center;
       box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
       border: none;
       z-index: 5;
   }

   .testimonial-carousel-btn i {
       color: white;
       font-size: 1.2rem;
   }

   .carousel-control-prev.testimonial-carousel-btn {
       left: -20px;
   }

   .carousel-control-next.testimonial-carousel-btn {
       right: -20px;
   }

   .accordion-button:not(.collapsed) {
       color: var(--primary);
       background-color: rgba(34, 139, 34, 0.1);
   }

   .accordion-button:focus {
       box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.25);
       border-color: var(--primary);
   }

   .map-container {
       width: 100%;
       height: 350px;
       background: #eee;
   }

   .map-container iframe {
       width: 100%;
       height: 100%;
       border: 0;
   }

   .nap-section {
       background: #fff;
       padding: 60px 0;
   }

   .nap-item {
       display: flex;
       align-items: center;
       margin-bottom: 30px;
   }

   .nap-icon-wrapper {
       flex-shrink: 0;
       width: 60px;
       height: 60px;
       background-color: var(--primary);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-right: 20px;
       color: #fff;
       font-size: 24px;
   }

   .nap-content h5 {
       font-weight: 700;
       margin-bottom: 5px;
       font-size: 1.1rem;
   }

   .nap-content p,
   .nap-content a {
       margin: 0;
       color: var(--text-grey);
       text-decoration: none;
       font-size: 1rem;
   }

   .site-footer {
       background-color: #f1f1f1;
       color: var(--text-dark);
       padding: 20px 0;
       font-size: 0.9rem;
   }

   /* Floating Buttons */
   @keyframes radiation {
       0% {
           box-shadow: 0 0 0 0 rgba(34, 139, 34, 0.7);
           transform: scale(1);
       }

       70% {
           box-shadow: 0 0 0 15px rgba(34, 139, 34, 0);
           transform: scale(1.05);
       }

       100% {
           box-shadow: 0 0 0 0 rgba(34, 139, 34, 0);
           transform: scale(1);
       }
   }

   @keyframes radiation-green {
       0% {
           box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
           transform: scale(1);
       }

       70% {
           box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
           transform: scale(1.05);
       }

       100% {
           box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
           transform: scale(1);
       }
   }

   .float-btn {
       position: fixed;
       bottom: 25px;
       width: 60px;
       height: 60px;
       border-radius: 50%;
       color: #fff;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 28px;
       z-index: 9999;
       text-decoration: none;
   }

   .float-btn:hover {
       color: #fff;
   }

   .float-wa {
       background-color: #25D366;
       right: 20px;
       animation: radiation-green 2s infinite;
   }

   .float-call {
       background-color: var(--primary);
       left: 20px;
       display: none;
       animation: radiation 2s infinite;
   }

   @media (max-width: 992px) {
       .testimonial-carousel-btn {
           width: 40px;
           height: 40px;
       }

       .carousel-control-prev.testimonial-carousel-btn {
           left: 0;
       }

       .carousel-control-next.testimonial-carousel-btn {
           right: 0;
       }
   }

   @media (max-width: 768px) {
       .float-call {
           display: flex;
       }

       .section-padding {
           padding: 50px 0;
       }
   }

   @media (max-width: 576px) {
       .hero-title {
           font-size: 2rem;
       }

       .btn-custom {
           width: 100%;
           margin: 5px 0;
       }

       .nap-item {
           flex-direction: row;
       }
   }

/* Floating CTA Buttons */
.floating-cta-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    color: #fff;
    transform: scale(1.15) translateY(-5px);
}

.cta-call {
    background: linear-gradient(135deg, #005ce6, #0044b3);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.cta-location {
    background: linear-gradient(135deg, #EA4335, #C5221F);
}

@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .cta-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
