:root {
    --primary: #37a049;
    /* Green from logo */
    --accent: #32b2c9;
    /* Teal from logo */
    --secondary: #1e3050;
    /* Navy from logo */
    --tertiary: #aed957;
    /* Lighter Green for gradients */
    --bg-dark: #0b1421;
    /* Deep Navy Background */
    --text-main: #f0f7ff;
    --text-muted: #8b9bb4;
    --glass-bg: rgba(30, 48, 80, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(at 10% 10%, rgba(50, 178, 201, 0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(55, 160, 73, 0.08) 0px, transparent 50%);
}

/* Background Ambience */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary), transparent);
    animation: float 25s infinite alternate;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent), transparent);
    /* Changed to Accent (Teal) */
    animation: float 30s infinite alternate-reverse;
}

.orb-3 {
    top: 50%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--tertiary), transparent);
    animation: pulse 20s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 40px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 23, 0.75);
    backdrop-filter: blur(12px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.logo-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent));
}

.accent-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s;
    box-shadow: 0 0 5px var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.btn-primary {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50px;
    color: #0a0e17;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(79, 172, 254, 0.5);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    flex: 1.2;
    padding-right: 3rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--tertiary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-muted);
    max-width: 90%;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-glow {
    background: #fff;
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.stats-row {
    display: flex;
    gap: 4rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.main-visual-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05), transparent 60%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.inner-circle {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    position: absolute;
    animation: rotateReverse 30s linear infinite;
}

@keyframes rotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

.hero-logo-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(55, 160, 73, 0.4));
    animation: floatingLogo 6s ease-in-out infinite;
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.molecule-structure {
    width: 250px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s linear infinite;
    display: none;
    /* Hide old structure if present */
}

.atom {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    box-shadow: inset -8px -8px 15px rgba(0, 0, 0, 0.6), 0 0 25px currentColor;
}

.a1 {
    background: var(--primary);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
}

.a2 {
    background: var(--secondary);
    bottom: 15px;
    left: 15px;
    color: var(--secondary);
}

.a3 {
    background: var(--tertiary);
    bottom: 15px;
    right: 15px;
    color: var(--tertiary);
}

.bond {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    width: 100px;
    /* Adjust based on calculation usually, approximated here */
    top: 50%;
    left: 50%;
    transform-origin: 0% 50%;
}

/* Simplified Bonds for CSS only */
.b1 {
    width: 110px;
    transform: rotate(120deg) translateX(-10px);
}

.b2 {
    width: 110px;
    transform: rotate(60deg) translateX(-10px);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) rotateX(20deg);
    }

    100% {
        transform: rotate(360deg) rotateX(20deg);
    }
}

.floating-card {
    position: absolute;
    background: rgba(20, 25, 35, 0.7);
    backdrop-filter: blur(20px);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: transform 0.3s;
}

.floating-card i {
    font-size: 1.8rem;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.c1 {
    top: 10%;
    right: 5%;
    animation: loatCard 8s infinite ease-in-out 1s reverse;
}

.c2 {
    bottom: 65%;
    left: -8%;
    animation: floatCard 6s infinite ease-in-out;
}

.c3 {
    bottom: 12%;
    right: 0%;
    animation: floatCard 8s infinite ease-in-out 1s reverse;
}

.c4 {
    bottom: 17%;
    left: -10%;
    animation: floatCard 6s infinite ease-in-out;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Products Section */
.section {
    padding: 8rem 8%;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.highlight {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(240, 147, 251, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-bg {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: 0;
    transition: opacity 0.4s;
}

.product-card:hover .card-bg {
    opacity: 0.4;
}

.bg-blue {
    background: var(--accent);
    /* Teal */
}

.bg-purple {
    background: var(--secondary);
    /* Navy */
}

.bg-green {
    background: var(--primary);
    /* Green */
}

.card-content {
    position: relative;
    z-index: 1;
}

.p-icon {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.card-link::after {
    content: '→';
    font-size: 1.2rem;
}

.card-link:hover {
    gap: 12px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 8%;
    display: flex;
    justify-content: center;
}

.cta-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    width: 100%;
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

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

.newsletter-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    width: 300px;
    outline: none;
    transition: border-color 0.3s;
}

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

/* Footer */
.main-footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 8%;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons a {
    color: #fff;
    margin-left: 1.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .navbar .nav-links-container,
    .navbar .nav-actions {
        display: none;
    }

    .navbar.mobile-open .nav-links-container {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 20, 33, 0.98);
        backdrop-filter: blur(15px);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .navbar.mobile-open .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    /* We will move the contact button into the menu using JS,
       so we target it here assuming it's appended to nav-links-container or similar */
    .navbar.mobile-open .nav-actions {
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
        width: 100%;
        align-items: center;
    }

    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .hero-visual {
        width: 100%;
        margin-top: 4rem;
        height: 400px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .main-visual-circle {
        width: 300px;
        height: 300px;
    }

    .molecule-structure {
        width: 180px;
        height: 180px;
        display: none;
        /* Ensure hidden if not used */
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: #fff;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Location Section */
.location-section {
    padding: 0 8% 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.location-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Optional dark mode filter for map */
    filter: invert(90%) hue-rotate(180deg);
}

.contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #ce8dfd;
    background: rgba(138, 43, 226, 0.15);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.contact-text p {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
    }


    .contact-item {
        width: 100%;
    }
}

/* Working Hours Section */
.working-hours {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1.05rem;
}

.hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day {
    font-weight: 500;
    color: var(--text-muted);
}

.time {
    font-weight: 600;
}

.hour-item.closed .time {
    color: #ff6b6b;
}

.hour-item.today {
    background: rgba(50, 178, 201, 0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    border-bottom: none;
    margin: -0.5rem -1rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-msg {
    position: fixed;
    bottom: 40px;
    right: 100px;
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 2000;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    animation: msgPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 1.5s;
    pointer-events: none;
}

@keyframes msgPopIn {
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .whatsapp-msg {
        bottom: 28px;
        right: 80px;
        font-size: 0.85rem;
    }
}