:root {
    /* Enterprise Palette - Antigravity Theme */
    --color-bg: #030305;
    --color-bg-light: #0a0a0f;
    --color-bg-dark: #000000;

    --color-text: #e0e0e0;
    --color-text-light: #888890;
    --color-text-white: #ffffff;

    /* Primary Accent - Glowing Cyan for high-tech */
    --color-primary: #00e6e6;
    --color-primary-hover: #00ffff;

    --font-main: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.narrow {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--color-text-light);
}

.text-white {
    color: var(--color-text-white);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
}

.mt-4 {
    margin-top: var(--spacing-md);
}

/* Components */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-primary {
    background-color: rgba(0, 230, 230, 0.05);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 230, 230, 0.15), inset 0 0 10px rgba(0, 230, 230, 0.05);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 230, 230, 0.6);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    background: rgba(3, 3, 5, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    color: var(--color-text);
}

.nav-links a:not(.btn):hover {
    color: var(--color-text-light);
}

/* Hero */
.hero {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    min-height: 80vh;
    /* Expands the animation area */
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

/* BINS Acronym Interactive Styles */
.bins-acronym {
    display: inline-flex;
    cursor: default;
}

.acro-letter {
    display: inline-flex;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acro-expand {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    color: var(--color-text);
    /* Contrast against the main letter if needed, or keep primary */
    font-size: 1.5rem;
    /* Smaller font for the expansion to fit well */
    line-height: inherit;
    font-weight: 300;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    white-space: nowrap;
    padding-bottom: 0.4rem;
    /* Align text properly */
}

.acro-letter:hover .acro-expand,
.bins-acronym:hover .acro-expand {
    max-width: 250px;
    /* Adjust as needed for the longest word */
    opacity: 1;
    margin-right: 0.2em;
    color: var(--color-primary);
    /* Give it a cool glow when expanded */
    text-shadow: 0 0 10px rgba(0, 230, 230, 0.5);
}

.text-light {
    color: var(--color-text-light);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin-bottom: var(--spacing-md);
}

/* Section General */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2rem;
}

/* Grids */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    /* Space for buttons */
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Determine how many items show at once by adjusting the item flex basis below */
}

.carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    /* Show 3 items, gap compensation */
    margin: 0 10px;
    /* Half gap on each side */
    min-width: 0;
    /* Prevent flex blowout */
    position: relative;
    /* for absolute progress bar */
    overflow: hidden;
    /* clip progress bar to border-radius */
}

/* Progress Bar Styles */
.global-progress {
    position: absolute;
    bottom: -15px;
    /* Sit right below the carousel track */
    left: 40px;
    right: 40px;
    width: auto;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    /* very subtle so it doesn't distract */
    border-radius: 4px;
    overflow: hidden;
    z-index: 5;
}

.progress-bar-fill {
    height: 100%;
    background: var(--color-primary);
    width: 0%;
    opacity: 0.6;
    /* 60% transparency as requested */
    box-shadow: 0 0 10px rgba(0, 230, 230, 0.5);
    /* Glow effect for a more natural tech feel */
}

@keyframes fill-progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.global-progress.animating .progress-bar-fill {
    animation: fill-progress linear forwards;
}

/* Pause animation on hover */
.carousel-container:hover .global-progress.animating .progress-bar-fill {
    animation-play-state: paused;
}

/* Tech Logos Container */
.tech-logos {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 230, 230, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 230, 230, 0.5);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 calc(50% - 20px);
        /* Show 2 items on medium screens */
    }
}

@media (max-width: 600px) {
    .carousel-item {
        flex: 0 0 calc(100% - 20px);
        /* Show 1 item on small screens */
    }

    .carousel-container {
        padding: 0 30px;
    }
}

/* Features List */
.feature-list li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid #eee;
    color: var(--color-text-light);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 230, 230, 0.3);
    box-shadow: 0 15px 35px rgba(0, 230, 230, 0.1);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-white);
}

.card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Package Card Specifics */
.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-features {
    margin: var(--spacing-md) 0;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.package-ideal {
    font-size: 0.85rem;
    font-style: italic;
    color: #888;
    margin-bottom: var(--spacing-sm);
}

.package-price {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
    color: var(--color-primary);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-white);
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 230, 230, 0.1);
}

/* Footer */
.footer {
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    background-color: var(--color-bg-dark);
}

/* Mobile */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.scroll-indicator:hover {
    opacity: 1;
}
.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-white);
    border-radius: 12px;
    position: relative;
    margin-bottom: 10px;
}
.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}
.arrow-down {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
    animation: arrowDown 2s infinite;
}
@keyframes arrowDown {
    0% { transform: rotate(45deg) translate(0, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(45deg) translate(8px, 8px); opacity: 0; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-float i {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 5, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }

    #nav-menu.is-active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        display: flex;
        align-items: center;
    }
    
    .nav-links a:not(.btn) {
        font-size: 1.5rem;
    }

    /* Reduce spacing on mobile */
    .hero,
    .section {
        padding: var(--spacing-lg) 0;
    }

    .hero-image,
    .about-image {
        order: -1;
        margin-bottom: var(--spacing-md);
    }

    /* Images first on mobile if desired, or remove to keep text first */
    .reverse .text-block {
        order: 1;
    }
    
    /* Ensure intro text fits on mobile */
    .intro-overlay .bins-acronym {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .intro-title {
        font-size: 2.5rem;
    }
    .acro-expand-intro {
        font-size: 1.5rem;
    }
    .intro-slogan {
        font-size: 1rem;
        padding: 0 20px;
        height: auto;
        min-height: 40px;
    }

    /* Mobile Carousel for Planes & Casos */
    #planes .grid-3,
    #casos .grid-3 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        margin: 0 -20px; /* Bleed to edge */
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }
    
    #planes .grid-3::-webkit-scrollbar,
    #casos .grid-3::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    #planes .package-card,
    #casos .card {
        flex: 0 0 85%; /* Make cards take 85% of screen width */
        scroll-snap-align: center;
        min-height: auto;
    }
}

/* Images & Visuals */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle premium shadow */
    border-radius: var(--radius);
}

.hero-image,
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

/* Antigravity Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-fade-up {
    animation: fadeUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    /* Start invisible */
}

/* Scroll-triggered animation classes */
.has-animation {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(5px);
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.has-animation.animate-in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Staggered delays for grids */
.delay-100 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
    animation-delay: 0.4s;
}

/* Interactive Hover Effects (Legacy removal, managed by cards now) */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Dark Hero & Canvas */
.hero-dark {
    position: relative;
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    padding: 12px 32px;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tech Sphere Animation */
.tech-sphere {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.tech-sphere .core {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #fff, #555);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: pulse-glow 3s infinite alternate;
}

.tech-sphere .orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 120px;
    height: 120px;
    animation: spin 8s linear infinite;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation: spin-reverse 12s linear infinite;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.orbit-3 {
    width: 280px;
    height: 280px;
    animation: spin 20s linear infinite;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* Modern Floating Form */
.floating-form {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.floating-group {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.floating-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 24px 16px 8px 16px !important;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.floating-input:focus {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.floating-label {
    position: absolute;
    top: 18px;
    left: 16px;
    font-size: 1rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s;
    margin: 0 !important;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
    top: 8px;
    font-size: 0.75rem;
    color: #fff;
}

/* Spacing and Utilities */
.pt-5 {
    padding-top: var(--spacing-xl);
}

.pb-5 {
    padding-bottom: var(--spacing-xl);
}

.mb-5 {
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Intro Overlay Styles */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.intro-content {
    text-align: center;
    animation: zoomIn 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform: scale(0.6);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

.intro-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--color-text-white);
}

.acro-expand-intro {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    color: var(--color-primary);
    font-size: 2.25rem;
    font-weight: 300;
    white-space: nowrap;
    padding-bottom: 0.35rem;
    animation: expandAcronymIntro 1s ease 1s forwards;
}

@keyframes expandAcronymIntro {
    to {
        max-width: 350px;
        opacity: 1;
        margin-right: 0.2em;
        text-shadow: 0 0 10px rgba(0, 230, 230, 0.5);
    }
}

.intro-slogan {
    font-size: 1.25rem;
    color: var(--color-text-light);
    height: 30px;
    margin: 0 auto;
    text-align: center;
}

.scramble-dud {
    color: var(--color-primary);
    opacity: 0.8;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-float i {
    margin-top: 2px;
}

@media (max-width: 768px) {
    /* WhatsApp Button adjustments for mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}