@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #d4a398;
    --secondary-color: #fceceb;
    --text-color: #4a4a4a;
    --heading-font: 'Great Vibes', cursive;
    --body-font: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-toggle {
    display: none;
}

.logo {
    cursor: pointer;
    line-height: 0;
    /* Remove extra space below image */
}

.logo img {
    height: 60px;
    /* Adjust height directly */
    width: auto;
    display: block;
    margin: 0 auto;
    /* Ensure centering in footer */
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #888;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    color: #888;
}

.header-icons i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-icons i:hover {
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    /* Slower fade */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1);
    transition: transform 10s linear;
    /* Slower zoom */
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Animate background when active */
.slide.active .slide-bg {
    transform: scale(1.15);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-slider h1 {
    font-family: var(--heading-font);
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.hero-slider p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
}

.slide.active h1,
.slide.active p {
    opacity: 1;
    transform: translateY(0);
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 3;
    opacity: 0.5;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}


/* Services Carousel */
.services-carousel-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 0 50px;
    width: max-content;
    animation: scroll 20s linear infinite;
    /* CSS Auto Scroll */
}

/* Pause on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Adjust based on duplicated content width */
}

.service-card.slide-card {
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.slide-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.slide-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-card.slide-card h3 {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

/* About Us Section */
.about-us-section {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 50px;
    align-items: center;
    gap: 80px;
    background: #fff;
    overflow: hidden;
}

.about-image-container {
    flex: 1.2;
    min-width: 350px;
    position: relative;
    height: 600px;
}

/* Back Image */
.about-img-back {
    position: absolute;
    top: 0;
    right: 20px;
    width: 65%;
    height: auto;
    border: 15px solid #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Front Image */
.about-img-front {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 55%;
    height: auto;
    border: 15px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.about-content {
    flex: 1;
    min-width: 350px;
    padding-left: 20px;
}

/* Decorative Title with Line */
.section-title {
    font-family: var(--heading-font);
    font-size: 4rem;
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #b0b0b0;
}

.about-content h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
    color: #777;
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-us-section {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .about-image-container {
        height: 400px;
        width: 100%;
    }

    .about-img-back {
        width: 60%;
        right: 0;
    }

    .about-img-front {
        width: 55%;
        left: 0;
        bottom: 0;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* Inquiry Section Redesign */
.inquiry-section {
    position: relative;
    padding: 100px 50px;
    background: #fff;
    overflow: hidden;
}

.inquiry-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.inquiry-visual {
    flex: 1;
    background: #d4a398;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 600px;
}

.visual-content {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
    color: white;
}

.visual-content h3 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    line-height: 1;
}

.visual-content p {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 10px;
}

.inquiry-img-wrapper {
    width: 80%;
    height: 80%;
    transform: rotate(-5deg);
    border: 10px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.inquiry-visual:hover .inquiry-img-wrapper {
    transform: rotate(0deg) scale(1.05);
}

.inquiry-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-form-wrapper {
    flex: 1;
    padding: 60px;
    background: #fff;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.script-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-color);
}

.form-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    font-weight: 300;
}

/* Modern Inputs with Floating Animation Effect (Simulated via Focus Border) */
.styled-form .input-group {
    position: relative;
    margin-bottom: 35px;
}

.styled-form input,
.styled-form select {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    transition: 0.3s;
}

.styled-form label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
}

.styled-form input:focus~label,
.styled-form input:valid~label {
    top: -20px;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.4s;
}

.styled-form input:focus~.focus-border,
.styled-form select:focus~.focus-border {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex: 1;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #c08e84;
}

.btn-submit svg {
    stroke: white;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {
    .inquiry-container {
        flex-direction: column;
    }

    .inquiry-visual {
        min-height: 300px;
    }

    .inquiry-img-wrapper {
        width: 100%;
        height: 100%;
        border: none;
        transform: none;
    }
}

/* Footer & Utils */
footer {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    /* Subtle shadow for white circle - Removing shadow to match flat look if needed, but white on white needs shadow or border. The image shows subtle definition. */
    /* Let's make it very subtle borderless. */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: 0.3s;
    border: none;
    /* Removed border */
    /* filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.05)); */
    align-items: center;
    justify-content: center;
    color: #888;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.copyright-text {
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo img {
        height: 45px;
        /* Smaller logo on mobile */
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: var(--text-color);
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Nav Menu Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        /* Or below header if preferred, but top:0 with padding is standard full screen */
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        /* Full screen menu */
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        /* Larger text for mobile touch */
    }

    .header-icons {
        display: none;
        /* Often hidden on mobile menu or moved inside */
    }

    .hero-slider h1 {
        font-size: 3.5rem;
    }

    /* Mobile adjustments for new sections */
    .services-section,
    .about-us-section {
        padding: 60px 20px;
        /* Reduced side padding */
        gap: 30px;
    }

    .about-us-section {
        flex-direction: column-reverse;
        /* Text first on mobile? Or Image? Let's keep standard stacking */
        text-align: center;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .inquiry-section {
        flex-direction: column;
    }
}


/* ========================
   Gallery Page Styles
   ======================== */
.gallery-header {
    text-align: center;
    padding: 80px 20px;
    background: #fceceb;
    margin-bottom: 40px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: column-count;
    column-count: 3;
    column-gap: 20px;
    padding: 0 50px 80px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

/* Hover Overlay */
.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '\f00e';
    /* FontAwesome Zoom Icon or similar unicode */
    font-family: "Font Awesome 5 Free";
    /* Assuming FA is loaded, otherwise use simple text or SVG */
    font-weight: 900;
    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;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Let click pass through to img */
    border-radius: 10px;
}

/* Fallback if FA not loaded */
.gallery-item::after {
    content: '👁';
    /* Unicode Eye */
    font-size: 3rem;
    /* override font family if needed */
    font-family: sans-serif;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
/* Lightbox (Professional Polish) */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    /* Modern blur effect */
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#lightbox.active {
    display: flex;
    opacity: 1;
}

/* Services Page Grid (Text Only) */
.services-page-section {
    padding: 80px 20px;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-item-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.service-item-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-item-card h3 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    transition: 0.3s;
}

.service-item-card:hover h3 {
    color: var(--primary-color);
}


/* Testimonials Page Styles */
.testimonials-section {
    padding: 80px 20px;
    background: #fcfcfc;
    /* Very light background */
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 20px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.03); */
    border-radius: 10px;
}

.testimonial-card.reverse {
    flex-direction: row-reverse;
}

.testimonial-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image-wrapper img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Decorative Bars */
.decorative-bars {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100px;
    height: 100%;
    z-index: 1;
    display: flex;
    gap: 15px;
}

.decorative-bars::before,
.decorative-bars::after {
    content: '';
    display: block;
    width: 20px;
    height: 100%;
    border-radius: 20px;
}

.decorative-bars::before {
    background-color: #40e0d0;
    /* Teal Color */
    transform: translateY(-20px);
}

.decorative-bars::after {
    background-color: #ff7f7f;
    /* Peach Color */
    transform: translateY(20px);
}

/* Adjust bars for reverse layout if needed, or keep same side */
.testimonial-card.reverse .decorative-bars {
    left: auto;
    right: 0;
    justify-content: flex-end;
}

.testimonial-content {
    flex: 1;
    position: relative;
    padding: 20px;
}

.quote-icon-start,
.quote-icon-end {
    font-size: 3rem;
    color: #e0f7fa;
    /* Very light teal */
    position: absolute;
}

.quote-icon-start {
    top: -20px;
    left: -20px;
}

.quote-icon-end {
    bottom: -20px;
    right: -20px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 2;
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff7f7f;
    /* Peach match */
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {

    .testimonial-card,
    .testimonial-card.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .decorative-bars {
        display: none;
        /* Hide complex bars on mobile simplicity */
    }
}

.service-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.close-lightbox {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 1;
        padding: 0 20px 80px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    text-decoration: none !important;
    animation: floatUp 1s ease-out;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-text {
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInSlide 0.5s ease-out 1s forwards;
    /* Delay text appearance */
    white-space: nowrap;
}

/* Arrow for text bubble */
.whatsapp-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes floatUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-text {
        display: none;
        /* Hide text on mobile to save space, or keep if preferred */
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}