:root {
    /* Refined SaaS Palette */
    --primary-color: #3b82f6;
    /* Modern Blue */
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary-color: #fbbf24;
    /* Refined Gold */
    --dark-bg: #0a0a0a;
    /* Deeper Dark */
    --surface-color: #111111;
    --light-text: #f8fafc;
    --dim-text: #94a3b8;

    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: 20px;

    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Background System */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--dark-bg);
}

.bg-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.06;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
}

.globe-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 20s infinite alternate ease-in-out;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float 25s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 80px) scale(1.05);
    }
}

/* Typography */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    font-weight: 700;
}

/* Professional Navbar */
.glass-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-width);
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-hidden {
    transform: translate(-50%, -150%) !important;
}

@media (max-width: 768px) {
    .glass-header {
        top: 0;
        width: 100%;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        background: rgba(10, 10, 10, 0.85);
        padding: 0.75rem 1rem;
        left: 0;
        transform: none;
    }

    .header-hidden {
        transform: translateY(-100%) !important;
    }
}

.header-scrolled {
    top: 0;
    width: 100%;
    max-width: none;
    background: rgba(10, 10, 10, 0.85);
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 1rem 1.5rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo {
    height: 34px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--dim-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a i {
    display: none;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: white;
}

.nav-links a.header-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    background: var(--secondary-color);
    color: black;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.nav-links a.header-cta:hover {
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
    color: black;
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 12rem 0 8rem;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 9vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 40%, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--dim-text);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.primary-btn {
    background: white;
    color: black;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.15);
}

.secondary-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    margin-left: 1rem;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Cards & Sections */
.services-section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Feature Section - Small & Animated */
.feature-small-grid {
    column-count: 3;
    column-gap: 1.5rem;
    margin-top: 2rem;
}

.use-cases-grid {
    column-count: 2;
    column-gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-small-grid>*,
.use-cases-grid>* {
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
}

.feature-mini-card {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-mini-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-mini-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-mini-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.feature-mini-card:hover .icon-wrapper {
    background: var(--secondary-color);
    color: black;
    transform: rotateY(180deg);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: color 0.4s;
}

.feature-mini-card:hover .icon-wrapper i {
    color: black;
    transform: rotateY(-180deg);
}

.feature-mini-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.feature-mini-card p {
    font-size: 0.85rem;
    color: var(--dim-text);
    margin: 0;
    line-height: 1.5;
}

/* Icon Glow Effect */
.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-mini-card:hover .icon-glow {
    opacity: 1;
}

.visual-circle::after {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear reverse infinite;
}

.visual-circle::before {
    content: '\f1e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    padding: 5px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.accent-card {
    border-color: rgba(251, 191, 36, 0.2);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.4s ease;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.05);
}

.icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.glass-card p {
    color: var(--dim-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Corporate Footer */
.glass-footer {
    padding: 80px 0 40px;
    background: linear-gradient(to bottom, transparent, rgba(250, 204, 21, 0.02));
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-brand .logo {
    height: 42px;
    margin-bottom: .5rem;
}

.footer-brand p {
    color: var(--dim-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--dim-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-newsletter h4 {
    margin-bottom: 1.5rem;
}

.newsletter-box {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-box input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: white;
    font-size: 0.9rem;
    flex-grow: 1;
}

.newsletter-box .send-btn {
    background: var(--secondary-color);
    color: black;
    border: none;
    padding: 0 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4b5563;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--dim-text);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Social Media Cards Upgrade */
.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 140px;
}

.social-btn::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.social-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.03);
}

.social-btn:hover::after {
    opacity: 0.2;
}

.social-btn i {
    font-size: 1.8rem;
    z-index: 1;
}

.social-btn span {
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 1;
}

/* Old School Map Filter (Yellow & Black) */
.map-container {
    height: 400px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    background: #000;
}

.map-container iframe {
    filter: grayscale(1) invert(1) sepia(1.5) hue-rotate(-10deg) saturate(3) contrast(1.3) brightness(0.8);
    transition: all 0.5s ease-in-out;
}

.map-container:hover iframe {
    filter: grayscale(1) invert(1) sepia(1.5) hue-rotate(-10deg) saturate(5) contrast(1.4) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yellow Accents Integration */
.highlight {
    color: var(--secondary-color);
}

.badge {
    color: var(--secondary-color);
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
}

.icon-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
    border-color: rgba(251, 191, 36, 0.2);
    color: var(--secondary-color);
}

.primary-btn {
    background: var(--secondary-color);
    color: black;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.primary-btn:hover {
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.3);
    background: #f59e0b;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.pricing-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(10, 10, 10, 0.6));
    border-color: rgba(251, 191, 36, 0.3);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card.highlight:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.price,
.main-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-container {
    display: inline-flex;
    flex-direction: column-reverse;
    /* Old price (last in HTML) goes to top */
    align-items: flex-end;
    /* Align items to the right */
    position: relative;
}

.old-price {
    font-size: 1.7rem;
    /* text-decoration: line-through; */
    /* color: #ef4444; */
    /* Red color */
    font-weight: 700;
    /* Strong text */
    line-height: 1;
    margin-bottom: -2px;
    /* Slight spacing adjustment */
    margin-right: 2px;
}

.strike {
    position: relative;
    display: inline-block;
}

.strike::before {
    content: '';
    border-bottom: 5px solid red;
    width: 100%;
    position: absolute;
    right: 0;
    top: 55%;
}

.cross {
    position: relative;
    display: inline-block;
}

.cross::before,
.cross::after {
    content: '';
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
}

.cross::before {
    border-bottom: 3px solid red;
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
}

.cross::after {
    border-bottom: 3px solid red;
    -webkit-transform: skewY(10deg);
    transform: skewY(10deg);
}


.early-bird-banner {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, #fbbf24, #d97706);
    /*  Gold */
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
    padding: 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    animation: floating 3s ease-in-out infinite;
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.9);
    transform: rotate(15deg);
}

.early-bird-banner strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-8px) rotate(15deg);
    }
}

.period {
    font-size: 1rem;
    color: var(--dim-text);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dim-text);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.pricing-features li.dimmed {
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: black;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: auto;
}

.pricing-btn.outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--light-text);
}

.pricing-btn.outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--light-text);
}

.pricing-btn.primary {
    background: var(--secondary-color);
    color: black;
    border: none;
}

.pricing-btn.primary:hover {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

/* Monitor Mockup */
.monitor-mockup {
    width: 180%;
    max-width: 1000px;
    position: absolute;
    right: -80%;
    top: 50%;
    transform: translateY(-50%) perspective(1000px) rotateY(-20deg);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(-30px 30px 60px rgba(0,0,0,0.6));
}

.monitor-mockup:hover {
    right: -70%;
    transform: translateY(-50%) perspective(1000px) rotateY(-15deg) scale(1.05);
}

.monitor-frame {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 16px;
    border: 2px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.monitor-screen {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
}

.monitor-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Leads Page Styles */
.leads-section {
    padding: 8rem 0 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leads-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.leads-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dim-text);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
    position: relative;
    z-index: 10;
}

.back-link:hover {
    color: white;
}

.leads-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.leads-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.leads-header p {
    color: var(--dim-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Leads Form */
.leads-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-left: 0.25rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--dim-text);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.3s;
    z-index: 2;
}

.leads-form input,
.leads-form textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.leads-form input:focus,
.leads-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.leads-form input:focus+i,
.leads-form textarea:focus+i {
    color: var(--secondary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.leads-form select {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    appearance: none;
    cursor: pointer;
}

.leads-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.leads-form select option {
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

.select-arrow {
    position: absolute;
    right: 1rem !important;
    left: auto !important;
    pointer-events: none;
    font-size: 0.8rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .leads-card {
        padding: 2rem;
        margin: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .leads-header h2 {
        font-size: 2rem;
    }

    .leads-header h2 {
        font-size: 2rem;
    }
}

.submit-btn {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive */
/* Alerts */
.glass-alert {
    padding: 2rem;
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
    color: white;
}

.glass-alert h3 {
    margin: 0.5rem 0;
    font-size: 1.5rem;
}

.w-auto {
    width: auto !important;
    display: inline-block;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

@media (max-width: 1024px) {

    .feature-small-grid,
    .use-cases-grid {
        column-count: 2;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.highlight {
        grid-column: span 2;
        transform: scale(1);
    }

    .pricing-card.highlight:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {

    .feature-small-grid,
    .use-cases-grid {
        column-count: 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.highlight {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .glass-header {
        top: 1rem;
        padding: 0.6rem 1.25rem;
    }

    .nav-links {
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 28px;
        border: 1px solid var(--glass-border);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        z-index: 1000;
    }

    .nav-links.active {
        display: grid;
        animation: bentoMenuIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-links a {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        padding: 1.25rem 1rem !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 0.9rem !important;
        font-weight: 600;
        color: var(--light-text);
        text-align: center;
        width: 100%;
    }

    .nav-links a i {
        display: block;
        font-size: 1.4rem;
        color: var(--secondary-color);
    }

    .nav-links a.header-cta {
        grid-column: span 2;
        margin-left: 0;
        background: var(--secondary-color);
        color: black;
        border: none;
        padding: 1.25rem !important;
        flex-direction: row;
        font-size: 1rem !important;
    }

    .nav-links a.header-cta i {
        color: black;
        font-size: 1.2rem;
    }

    @keyframes bentoMenuIn {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(-20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        z-index: 1001;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-section {
        padding-top: 150px;
        padding-bottom: 4rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .pricing-grid,
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .use-cases-grid {
        column-count: 1 !important;
    }

    .solutions-grid {
        grid-template-columns: 1fr !important;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
        margin-left: 0 !important;
    }
}

/* =========================================
   Demo Page Styles (Mini Webpage)
   ========================================= */
.demo-body {
    background: radial-gradient(circle at 50% 10%, #1a1a1a 0%, #000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
}

.demo-container {
    width: 100%;
    max-width: 420px;
    background: #111;
    border-radius: 40px;
    padding: 40px 25px 5px 25px;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
}

/* Demo Ribbon */
.demo-corner-ribbon {
    position: absolute;
    top: 25px;
    left: -35px;
    background: var(--secondary-color);
    color: #111;
    padding: 6px 45px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-45deg);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* Header */
.demo-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.profile-image {
    width: 80%;
    height: auto;
    max-height: 250px;
    border-radius: 20px;
    object-fit: contain;
    /* border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); */
}

.online-status {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 2px solid #111;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
    vertical-align: middle;
    margin-left: 8px;
    margin-bottom: 4px;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.profile-title {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.profile-bio {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 10px;
}

.profile-bio2 {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0 10px;
}

/* Action Buttons - Compact & Blue Theme */
/* Action Buttons - 2x2 Premium Cards */
.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.action-buttons-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.action-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    /* Stack Icon and text for perfect alignment */
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: auto;
}

.google-btn {
    /* background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-radius: 16px; */
    padding: 5px;
    display: flex;
    flex-direction: column;
    /* Stack Icon and text for perfect alignment */
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: auto;
}

.action-btn:active {
    transform: scale(0.98);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    /* Soft square looks more modern than circle here */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.action-btn span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1;
    /* Always visible */
    transform: none;
    max-height: none;
    line-height: 1.2;
}

/* Button Specific Styles */

/* 1. Save Contact (Blue) */
.action-btn:nth-child(1) {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.action-btn:nth-child(1) .icon-box {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* 2. Call Now (Cyan/Blue) */
.action-btn:nth-child(2) {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.action-btn:nth-child(2) .icon-box {
    background: #06b6d4;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* 3. WhatsApp (Green) */
.action-btn:nth-child(3) {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.action-btn:nth-child(3) .icon-box {
    background: #22c55e;
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* 4. Email (Amber) */
.action-btn:nth-child(4) {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.action-btn:nth-child(4) .icon-box {
    background: #f59e0b;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* 5. Google (Black) */
.action-btn:nth-child(5) {
    background: rgba(27, 27, 26, 0.1);
    border-color: rgba(49, 48, 47, 0.3);
}

.action-btn:nth-child(5) .icon-box {
    background: #f59e0b;
    color: rgb(102, 252, 164);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Hover Effects */
.action-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Sections */
/* =========================================
   Background Decoration (Adapted from QR Stand)
   ========================================= */
.bg-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ensure bg.png exists or use a fallback gradient/pattern */
    background-image: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    opacity: 0.15;
    z-index: 0;
    filter: blur(80px);
}

.dec-1 {
    top: -100px;
    right: -100px;
}

.dec-2 {
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, #fbbf24, transparent 70%);
}

/* Sections */
.demo-section {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
    padding-left: 5px;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.social-tile {
    aspect-ratio: 1;
    background: #1a1a1a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: white;
    transition: all 0.3s;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.social-tile:nth-child(1) {
    animation-delay: 0.4s;
}

.social-tile:nth-child(2) {
    animation-delay: 0.5s;
}

.social-tile:nth-child(3) {
    animation-delay: 0.6s;
}

.social-tile:nth-child(4) {
    animation-delay: 0.7s;
}

.social-tile:nth-child(5) {
    animation-delay: 0.8s;
}

.social-tile:nth-child(6) {
    animation-delay: 0.9s;
}

.social-tile:hover {
    background: #222;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-tile.facebook:hover {
    color: #1877f2;
}

/* .social-tile.tripadvisor:hover {
    color: #10b981;
    border-color: #10b981;
    background: #13b37e3a;
} */

.social-tile.instagram:hover {
    color: #e4405f;
}

.social-tile.linkedin:hover {
    color: #0a66c2;
}

.social-tile.tiktok:hover {
    color: #000;
    background: #fff;
}

.social-tile.youtube:hover {
    color: #ff0000;
}

/* Map */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

.map-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}

.map-btn:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Styled Map (Dark Theme Simulation) */
.styled-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    border-radius: 12px;
}

/* Footer */
.demo-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid #222;
}

.demo-footer p {
    color: #6b7280;
    font-size: 0.8rem;
}

.demo-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    margin-top: 10px;
    font-weight: 600;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #4b5563;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

/* FAB */
.share-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: black;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 100;
}

.share-fab:hover {
    transform: scale(1.1) rotate(15deg);
}

@media (max-width: 600px) {
    .demo-container {
        border-radius: 0;
        min-height: 100vh;
        border: none;
        box-shadow: none;
    }

    .demo-body {
        padding: 0;
    }
}

/* Solutions Page Styles */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 4rem;
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.solution-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.solution-card p {
    color: var(--dim-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.text-link:hover {
    gap: 12px;
}

/* Error Pages */
.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    line-height: 1;
}

.error-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.error-text {
    color: var(--dim-text);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Social Icons */
.social-icon-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--secondary-color);
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

@media (max-width: 768px) {
    .glass-card[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    background: rgba(37, 211, 102, 0.9);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}