/* ============================================= */
/* ==============  GLOBAL STYLES =============== */
/* ============================================= */
:root {
    --primary-gold: #D4AF37;
    --dark-charcoal: #2c2c2c;
    --soft-cream: #F5F5DC;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --text-color: #555;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--dark-charcoal);
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.content-section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

/* ============================================= */
/* ==============  HEADER / NAVBAR ============== */
/* ============================================= */
.main-header {
    position: fixed;
    top: 20px;
    left: 5%;
    width: 90%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b89a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-charcoal);
    border: 1px solid #ddd;
}

.btn-outline:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-charcoal);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ============================================= */
/* ================ HERO SECTION =============== */
/* ============================================= */
#hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    animation: zoomPan 20s linear infinite;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes zoomPan {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    animation: slideUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    animation: slideUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s backwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}
.particles::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1px;
    background: transparent;
    border-radius: 50%;
    color: white;
    box-shadow: 
        10vw 20vh 1px, 90vw 80vh 1px, 
        25vw 50vh 0px, 75vw 30vh 1px,
        5vw 90vh 1px, 95vw 10vh 0px,
        50vw 50vh 1px;
    animation: particle-wave 15s linear infinite;
}
@keyframes particle-wave {
    0% { transform: translate(0, 0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translate(-50px, -100px); opacity: 0; }
}

/* ============================================= */
/* ============== BOOKING SECTION ============== */
/* ============================================= */
#booking-section {
    width: 90%;
    max-width: 900px;
    margin: -70px auto 0 auto;
    position: relative;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.booking-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.form-group input {
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    padding: 5px 0;
    font-family: var(--body-font);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-gold);
}

.btn-book {
    padding: 15px 30px;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #b89a2e;
    transform: scale(1.05);
}


/* ============================================= */
/* ============ IMAGE SHOWCASE SECTION ========== */
/* ============================================= */
.showcase-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}

.showcase-block.reverse {
    flex-direction: row-reverse;
}

.showcase-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-text {
    flex: 1;
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.4s ease;
}

.btn-link:hover::after {
    width: 100%;
}

/* ============================================= */
/* ============ SLIDING FRAME SECTION ========== */
/* ============================================= */
#slider-section {
    background-color: var(--light-gray);
}
.slider-frame-container {
    max-width: 1200px; /* Changed from 800px */
    height: 600px;  /* Changed from 800px */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px var(--primary-gold);
    color: var(--primary-gold);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* ============================================= */
/* =========== TESTIMONIAL SECTION ============= */
/* ============================================= */
#testimonial-section {
    background-color: var(--white);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-gold);
}

.testimonial-card blockquote {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark-charcoal);
    max-width: 600px;
    margin-bottom: 1rem;
    border: none;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-color);
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-gold);
}

/* ============================================= */
/* ========== SPECIAL EXPERIENCE SECTION ======= */
/* ============================================= */
#experience-section {
    background: var(--light-gray);
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    perspective: 1500px;
}

.experience-card {
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.experience-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.experience-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.experience-card:hover {
    transform: translateY(-10px) rotateY(5deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-card:hover .experience-image {
    transform: scale(1.05);
}


/* ============================================= */
/* ============= AMENITIES SECTION ============= */
/* ============================================= */
#amenities-section {
    background-color: var(--light-gray);
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.amenity-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.amenity-item:hover i {
    transform: rotateY(360deg) scale(1.1);
}

.amenity-item span {
    font-weight: 500;
    color: var(--dark-charcoal);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================= */
/* ============== MEDIA QUERIES ================ */
/* ============================================= */
@media (max-width: 1200px) {
    .main-header {
        width: 95%;
        left: 2.5%;
    }
}

@media (max-width: 992px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .booking-form {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .form-group {
        flex-basis: 45%;
    }
    .btn-book {
        flex-basis: 100%;
        margin-top: 1rem;
    }

    .showcase-block, .showcase-block.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .slider-frame-container {
        height: 50vw;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 4rem 5%;
    }
    #booking-section {
        margin-top: -100px;
    }
    h2, .section-title {
        font-size: 2rem;
    }

    .booking-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .slider-frame-container {
        height: 56.25vw; /* 16:9 aspect ratio */
        border-radius: 10px;
    }
    
    .testimonial-card blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-header {
        top: 10px;
    }
    .nav-links {
        width: 80%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}



/* footer */

/* ========================================
Base Styles & Variables
========================================
*/
:root {
    --footer-bg: #1a122f; /* Deep indigo for the night sky */
    --footer-text: #e0e0e0;
    --footer-heading: #ffffff;
    --accent-gold: #ffc75f;
    --accent-pink: #ff6b6b;
    /* Using web-safe fonts for performance. No external requests needed. */
    --font-heading: Georgia, 'Times New Roman', Times, serif;
    --font-body: Verdana, Geneva, Tahoma, sans-serif;
}

/* ========================================
The Footer Container
========================================
*/
.site-footer {
    position: relative;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 10rem; /* More padding to show off the waves */
    padding-bottom: 2rem;
    overflow: hidden; /* Crucial for the wave effect */
    text-align: center;
}

/* ========================================
Animated Waves Background
========================================
*/
.waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10rem; /* Height of the wave area */
    overflow: hidden;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* ========================================
Footer Content Layout ("Islands")
========================================
*/
.footer-content {
    position: relative; /* To appear above the waves */
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-island {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-top: 2px solid rgba(255, 199, 95, 0.5);
    backdrop-filter: blur(5px);
}

.footer-logo-section {
    grid-column: 1 / -1; 
    text-align: center;
    background: transparent;
    backdrop-filter: none;
    padding-top: 0;
    border: none;
}

@media (min-width: 1120px) {
    .footer-logo-section {
        grid-column: auto;
        text-align: left;
    }
}

.footer-island h3, .footer-logo h2 {
    font-family: var(--font-heading);
    color: var(--footer-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--accent-pink);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-logo h2 {
    font-size: 2rem;
    border-bottom: none;
    margin-bottom: 0.25rem;
}

.footer-slogan {
    font-size: 1rem;
    color: var(--accent-gold);
    font-style: italic;
}

.footer-island p, .footer-island li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-island ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-island a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-island a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* Styling for the embedded SVG icons */
.footer-icon {
    width: 16px;
    height: 16px;
    fill: var(--accent-gold);
    margin-right: 10px;
    flex-shrink: 0;
}

/* ========================================
Interactive Sun/Moon Element
========================================
*/
.sun-moon-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    z-index: 5;
    cursor: pointer;
}

.sun, .moon {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.7s ease;
}

.sun {
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-gold), 0 0 40px var(--accent-gold);
    transform: scale(1);
    opacity: 1;
}

.moon {
    background: #f0f0f0;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff;
    clip-path: circle(50% at 50% 50%);
    transform: scale(0);
    opacity: 0;
}

.moon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--footer-bg);
    border-radius: 50%;
}

.sun-moon-container:hover .sun {
    transform: scale(0);
    opacity: 0;
}
.sun-moon-container:hover .moon {
    transform: scale(1) rotate(-15deg);
    opacity: 1;
}

/* ========================================
Newsletter & Socials
========================================
*/
.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    border: none;
    padding: 0.8rem;
    border-radius: 5px 0 0 5px;
    background: rgba(0,0,0,0.2);
    color: var(--footer-text);
    font-family: var(--font-body);
}

.newsletter-form button {
    border: none;
    background: var(--accent-pink);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-family: var(--font-body);
}
.newsletter-form button:hover {
    background: #d63447;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--footer-text);
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
    color: var(--accent-pink);
    transform: translateY(-3px);
}
.social-links .social-icon {
    width: 28px;
    height: 28px;
    fill: var(--footer-text);
    transition: fill 0.3s ease;
}
.social-links a:hover .social-icon {
    fill: var(--accent-pink);
}

/* ========================================
Footer Bottom
========================================
*/
.footer-bottom {
    text-align: center;
    padding: 3rem 2rem 0 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .farewell-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
Responsive Design
========================================
*/
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-island h3, .footer-logo h2 {
        display: block;
    }
    .newsletter-form, .social-links, .footer-island p, .footer-island li {
        justify-content: center;
    }
}

/* By default, hide mobile-only buttons (for desktop) */
.mobile-nav-buttons {
  display: none;
}

/* In mobile view, show them */
@media (max-width: 992px) {
  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    align-items: center;
    width: 100%;
  }

  .mobile-nav-buttons .btn {
    width: 80%;
    font-size: 1rem;
  }

  /* Hide desktop version in mobile */
  .nav-buttons {
    display: none;
  }
}

/* whatsapp */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    padding: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: jiggle 1.2s infinite;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
}

@keyframes jiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}