/* ==========================================================================
   GLOBAL VARIABLES & TOKENS
   ========================================================================== */
:root {
    /* Brand Colors */
    --clr-blue: #0080F0;
    --clr-blue-hover: #006bca;
    --clr-red: #F05060;
    --clr-yellow: #F0F000;
    --clr-dark: #003050;

    /* WhatsApp Color */
    --clr-whatsapp: #25D366;
    --clr-whatsapp-hover: #1EBE5D;

    /* Neutrals & UI */
    --clr-white: #ffffff;
    --clr-bg-light: #F8FAFC;
    --clr-text-main: #0F172A;
    --clr-text-muted: #64748B;
    --clr-border: #E2E8F0;

    /* Typographic Scale */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing & Layout */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px -10px rgba(0, 128, 240, 0.4);

    /* Radii */
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Increase tap targets on mobile indirectly */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Global Animated Background using strictly brand colors */
.global-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(-45deg, #ffffff, #f0f8ff, #fff0f2, #ffffe0);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.global-animated-bg::before,
.global-animated-bg::after,
.global-animated-bg-extra {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    /* Slightly increased opacity */
    animation: floatBg 20s infinite ease-in-out alternate;
}

.global-animated-bg::before {
    top: -20%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: var(--clr-blue);
}

.global-animated-bg::after {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--clr-red);
    animation-delay: -7s;
}

.global-animated-bg-extra {
    top: 30%;
    left: 40%;
    width: 50vw;
    height: 50vw;
    background: var(--clr-yellow);
    opacity: 0.1;
    animation-delay: -12s;
}

@keyframes floatBg {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(5%, 10%) scale(1.1) rotate(5deg);
    }

    66% {
        transform: translate(-5%, 5%) scale(0.9) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    /* Mobile First Full-width */
    text-align: center;
}

@media (min-width: 480px) {
    .btn {
        width: auto;
        /* Revert on larger screens */
    }
}

/* WhatsApp Primary CTA overrides */
.btn-primary {
    background-color: var(--clr-whatsapp);
    color: var(--clr-white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.btn-primary:hover {
    background-color: var(--clr-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* New blocky WhatsApp Hero button based on user screenshot */
.btn-whatsapp-hero {
    background-color: #2CCC71;
    /* Exact green from screenshot */
    color: white;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    /* Less rounded, more blocky */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(44, 204, 113, 0.3);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Slight inner border effect */
}

.btn-whatsapp-hero:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 204, 113, 0.4);
}

.btn-primary-small {
    background-color: var(--clr-whatsapp);
    color: var(--clr-white);
    padding: 0.75rem 1.25rem;
    /* Larger tap target for mobile */
    font-size: 0.875rem;
    width: auto;
    /* Exception: Header button shouldn't be full width */
}

.btn-primary-small:hover {
    background-color: var(--clr-whatsapp-hover);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--radius-lg);
}

.icon-wa {
    width: 24px;
    height: 24px;
}

.btn-primary-small .icon-wa {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--clr-blue);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: calc(70px + var(--space-2xl));
    padding-bottom: var(--space-2xl);
    overflow: hidden;
    background-color: var(--clr-white);
}

/* Subtle tech gradient background */
.hero-background-glow {
    position: absolute;
    top: -20%;
    left: 10%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 128, 240, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-hook {
    display: inline-block;
    color: var(--clr-red);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    background-color: rgba(240, 80, 96, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 90%;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
}

@media (min-width: 480px) {
    .hero-actions {
        width: auto;
    }
}

.hero-microcopy {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    text-align: center;
    font-weight: 500;
}

@media (min-width: 480px) {
    .hero-microcopy {
        text-align: left;
        padding-left: 0.5rem;
    }
}

/* UI Mockup Frame */
.mockup-frame {
    background-color: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    border: 1px solid var(--clr-border);
}

/* ==========================================================================
   UTILITY & SECTION STYLES
   ========================================================================== */
.section-tag {
    display: inline-block;
    color: var(--clr-blue);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
    background-color: rgba(0, 128, 240, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    line-height: 1.6;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-blue {
    color: var(--clr-blue);
}

.bg-light-alt {
    background-color: #F1F5F9;
}

.full-width {
    width: 100%;
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-dark);
    border: 1px solid var(--clr-border);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline:hover {
    border-color: var(--clr-dark);
    background-color: rgba(0, 48, 80, 0.05);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: var(--space-xl) 0;
    background-color: var(--clr-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-card {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--clr-blue);
    box-shadow: var(--shadow-lg), 0 0 20px -5px rgba(0, 128, 240, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--clr-blue);
    color: var(--clr-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 1rem;
    border-radius: 20px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-xs);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -1px;
}

.plan-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.plan-desc {
    color: var(--clr-text-muted);
    margin-bottom: var(--space-md);
    min-height: 48px;
}

.divider {
    height: 1px;
    background-color: var(--clr-border);
    margin: var(--space-md) 0;
}

.plan-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--clr-text-main);
    font-weight: 500;
}

.icon-check {
    width: 20px;
    height: 20px;
    color: var(--clr-whatsapp);
    flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
    padding: var(--space-2xl) 0;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    background-color: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

@media (min-width: 992px) {
    .testimonial-container {
        grid-template-columns: 1fr 2fr;
        padding: var(--space-2xl);
    }
}

.testimonial-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 1/1;
}

@media (min-width: 992px) {
    .testimonial-img {
        aspect-ratio: 3/4;
    }
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 1.5rem;
    }
}

.author-name {
    font-weight: 700;
    color: var(--clr-dark);
    font-size: 1.125rem;
}

.author-role {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   CARRIER INTEGRATION LOGOS
   ========================================================================== */
.integration-logos {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--clr-border);
    background-color: var(--clr-white);
}

.integration-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.integration-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logos-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
}

.logos-track::-webkit-scrollbar {
    height: 4px;
}

.logos-track::-webkit-scrollbar-thumb {
    background-color: var(--clr-border);
    border-radius: 4px;
}

.carrier-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.carrier-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ==========================================================================
   VIDEO DEMO SECTION
   ========================================================================== */
.video-section {
    padding: var(--space-2xl) 0;
    background-color: var(--clr-white);
}

.video-wrapper {
    margin-top: var(--space-xl);
    max-width: 900px;
    width: 100%;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
}

.video-responsive iframe,
.video-responsive video,
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ==========================================================================
   FINTECH / PAYOUTS SECTION
   ========================================================================== */
.fintech-section {
    padding: var(--space-2xl) 0;
}

.fintech-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .fintech-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.fintech-content {
    max-width: 500px;
}

.fintech-visual {
    position: relative;
}

/* Glowing accent specifically for the fintech component */
.fintech-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(240, 240, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}


/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    padding: var(--space-2xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--clr-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 128, 240, 0.1) 0%, rgba(0, 128, 240, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--clr-blue);
}

.benefit-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: var(--space-2xl) 0;
    background-color: var(--clr-white);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .features-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.features-header {
    max-width: 500px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: var(--space-lg);
}

.feature-check {
    width: 24px;
    height: 24px;
    color: var(--clr-whatsapp);
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.cta-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--clr-white) 0%, var(--clr-bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    background-color: var(--clr-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add a glowing effect inside the CTA box */
.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 240, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.cta-microcopy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-desc {
    color: var(--clr-text-muted);
    margin-top: var(--space-sm);
    max-width: 300px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--clr-blue);
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: var(--space-md);
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    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);
    }
}

.floating-wa {
    animation: pulse-wa 2s infinite;
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 50px;
        height: 50px;
    }

    .floating-wa svg {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================================================
   FLOATING CALENDLY (CAPACITACIÓN)
   ========================================================================== */
.floating-calendly {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(0, 48, 80, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-calendly svg {
    width: 20px;
    height: 20px;
}

.floating-calendly:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 48, 80, 0.6);
    color: var(--clr-white);
}

@media (max-width: 768px) {
    .floating-calendly {
        bottom: var(--space-lg);
        left: var(--space-lg);
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .floating-calendly span {
        display: none;
        /* Only show icon on very small screens to save space */
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS (ITERATION 8)
   ========================================================================== */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ANIMATED INFOGRAPHIC KEYFRAMES (ITERATION 14)
   ========================================================================== */
@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes bar-fill {
    from {
        width: 0%;
    }

    to {
        width: 95%;
    }
}

/* Service Carousel hover on dots */
.svc-dot:hover {
    opacity: 1 !important;
    transform: scale(1.3);
}

/* Slide menu item hover */
.slide-menu-item:hover {
    background: rgba(0, 128, 240, 0.05) !important;
}