/* ============================================================
   Faida360 - Landing Page Stylesheet
   Fonts: Clash Display (headings) + DM Sans (body)
   Palette: Deep Forest #1a7a4a | Gold #f5a623 | Dark #0d1117
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:wght@700;800;900&display=swap');

/* ---- Variables ---- */
:root {
    --green:        #1a7a4a;
    --green-dark:   #145f39;
    --green-light:  #e8f5ee;
    --green-glow:   rgba(26,122,74,0.15);
    --gold:         #f5a623;
    --gold-light:   #fff8ec;
    --dark:         #0d1117;
    --dark-2:       #161b22;
    --dark-3:       #21262d;
    --text:         #1a202c;
    --text-muted:   #6b7280;
    --border:       #e5e7eb;
    --white:        #ffffff;
    --radius-sm:    8px;
    --radius-md:    14px;
    --radius-lg:    24px;
    --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
    --shadow-green: 0 8px 32px rgba(26,122,74,0.25);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   NAVBAR
============================================================ */
.f-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 0;
    transition: all 0.3s ease;
}

.f-nav.scrolled {
    background: rgba(13,17,23,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.f-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.f-logo span { color: var(--gold); }

.f-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.f-nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}
.f-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.f-nav-links a.active { color: var(--white); }

.f-nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    transition: all 0.2s !important;
}
.f-nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-green) !important;
}

.f-nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* ============================================================
   HERO CAROUSEL
============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

/* Carousel */
.hero-carousel {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,17,23,0.82) 0%,
        rgba(13,17,23,0.55) 50%,
        rgba(26,122,74,0.25) 100%
    );
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    padding-top: 80px;
}

.hero-text { max-width: 640px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--gold);
    font-size: 0.775rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title .accent { color: var(--gold); }
.hero-title .green  { color: #6ee7a8; }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-f {
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.925rem;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: var(--shadow-green);
}
.btn-primary-f:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26,122,74,0.35);
    color: var(--white);
}

.btn-outline-f {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.925rem;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-outline-f:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

/* Carousel indicators */
.hero-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(0.6); }
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
    background: var(--dark);
    padding: 28px 0;
    border-bottom: 1px solid var(--dark-3);
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-3);
    flex-shrink: 0;
}

/* ============================================================
   SECTION COMMONS
============================================================ */
section { padding: 88px 0; }

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-title .accent { color: var(--green); }

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 14px;
    max-width: 520px;
    line-height: 1.7;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features-section { background: #f9fafb; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 52px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green);
    margin-bottom: 16px;
}
.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.feature-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   POS SCREENSHOT SECTION
============================================================ */
.pos-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.pos-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,122,74,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pos-text .section-title { color: var(--white); }
.pos-text .section-sub   { color: rgba(255,255,255,0.6); }
.pos-text .section-tag {
    background: rgba(26,122,74,0.2);
    color: #6ee7a8;
}

.pos-checklist {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pos-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}
.pos-checklist li i {
    color: #6ee7a8;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pos-screenshot-wrap {
    position: relative;
}

.pos-screen {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.pos-screen img {
    width: 100%;
    display: block;
}

/* Floating badge on screenshot */
.pos-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.78rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    line-height: 1.3;
}
.pos-badge strong { font-size: 1.3rem; display: block; font-family: 'Playfair Display', serif; }

/* ============================================================
   PRICING SECTION
============================================================ */
.pricing-section { background: var(--white); }

.pricing-card {
    max-width: 520px;
    margin: 52px auto 0;
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-top {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    padding: 40px 40px 32px;
    text-align: center;
    position: relative;
}
.pricing-top::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: var(--dark);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.pricing-badge-top {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.pricing-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}
.pricing-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.pricing-period {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
}

.pricing-annual {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 8px;
}

.pricing-body {
    padding: 40px 40px 36px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.pricing-features li i {
    color: #6ee7a8;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.btn-pricing:hover {
    background: #e09315;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.pricing-note {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: #f9fafb; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--green-light);
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.875rem;
    margin-bottom: 12px;
}
.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
}
.testimonial-role {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a2a 100%);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a7a4a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.cta-title span { color: var(--gold); }
.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-3);
    padding: 56px 0 28px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .f-logo { font-size: 1.4rem; display: block; margin-bottom: 12px; }
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 260px;
}
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--dark-3);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.social-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.footer-col h5 {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.footer-contact-item i {
    color: var(--green);
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--dark-3);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .pos-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-scroll { display: none; }
}

@media (max-width: 767px) {
    section { padding: 60px 0; }
    .f-nav-inner { padding: 14px 20px; }
    .hero-content { padding: 0 20px; padding-top: 80px; }
    .section-inner { padding: 0 20px; }
    .stats-inner { padding: 0 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-inner { padding: 0 20px; }
    .pricing-body { padding: 28px 24px; }
    .pricing-top { padding: 32px 24px 28px; }
    .hero-indicators { bottom: 20px; }

    .f-nav-links { display: none; flex-direction: column; }
    .f-nav-links.open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(13,17,23,0.98);
        padding: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .f-nav-toggle { display: block; }
}

/* ============================================================
   WhatsApp Floating Button
============================================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.25s ease, background 0.25s ease,
                box-shadow 0.25s ease;
    text-decoration: none;
    animation: waBounce 1.8s ease infinite;
}
.wa-float:hover {
    background: #128C7E;
    color: #fff;
    animation: none;
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Bounce animation */
@keyframes waBounce {
    0%, 100% { transform: translateY(0);    }
    20%       { transform: translateY(-10px); }
    40%       { transform: translateY(-4px);  }
    60%       { transform: translateY(-8px);  }
    80%       { transform: translateY(-2px);  }
}

/* Pulse ring */
.wa-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: waPulse 2.2s ease-out infinite;
    z-index: -1;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    70%  { transform: scale(1.6); opacity: 0;   }
    100% { transform: scale(1.6); opacity: 0;   }
}

.wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: #0d1117;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(6px);
    transition: all 0.2s ease;
    pointer-events: none;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #0d1117;
}

@media (max-width: 767px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}