/* Modern Tech Agency Theme (LM Digital Solutions) */
:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-blue: #00e676; /* WhatsApp bright neon green */
    --neon-purple: #08aa80; /* WhatsApp corporate premium green */
    --neon-green: #08aa80;
    --modern-gradient: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-blue) 100%);
    --card-shadow: 0 10px 30px -10px rgba(8, 170, 128, 0.08);
    --card-shadow-hover: 0 20px 40px -10px rgba(8, 170, 128, 0.18);
}

[data-theme="dark"] :root, body {
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Gradients */
.text-gradient {
    background: var(--modern-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-gradient-modern {
    background: var(--modern-gradient) !important;
    color: #fff !important;
    border: none;
}

.bg-gradient-modern:hover {
    box-shadow: 0 10px 20px -10px var(--neon-blue);
    transform: translateY(-2px);
}

/* Animated Hero Image */
.floating-hero {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(8, 170, 128, 0.3));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Button enhancements */
.btn {
    border-radius: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn--base-two.btn {
    background: var(--modern-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(8, 170, 128, 0.4);
}

.btn--base-two.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(8, 170, 128, 0.6);
}

/* Feature Cards */
.feature-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--modern-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-item__icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 170, 128, 0.1);
    color: var(--neon-purple);
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item__icon {
    background: var(--modern-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-item__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item__desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Banner specific adjustments */
.banner-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: #f8faff;
}

.banner-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--modern-gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    top: -200px;
    right: -100px;
    z-index: 0;
}

.banner-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content__title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.banner-content__desc {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
}

.banner-thumb {
    position: relative;
    z-index: 2;
}

/* Mobile optimizations */
@media (max-width: 991px) {
    .banner-content__title {
        font-size: 2.5rem;
    }
    .banner-section {
        padding: 80px 0 60px;
    }
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--modern-gradient);
    border-radius: 2px;
}

.section-heading__desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------
   HOMEPAGE REDESIGN (botbiz.io-inspired styles)
-------------------------------------------------------- */

/* Modern Grid & Layout Utilities */
.landing-hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: #fcfdfe;
    overflow: hidden;
}

/* Glassmorphic Navigation Menu */
.header-glass {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

/* Tech Badges */
.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(8, 170, 128, 0.08);
    color: var(--neon-purple);
    border: 1px solid rgba(8, 170, 128, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.tech-badge i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Interactive Tabs / Showcase Styles */
.showcase-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.showcase-tab-btn {
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    color: #4a5568;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.showcase-tab-btn:hover {
    transform: translateY(-2px);
    color: var(--neon-purple);
    border-color: rgba(8, 170, 128, 0.3);
}

.showcase-tab-btn.active {
    background: var(--modern-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(8, 170, 128, 0.3);
}

/* Browser/Dashboard Mockup Window Frame */
.mockup-window {
    background: #111827;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.mockup-header {
    background: #1f2937;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 20px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-address {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    flex-grow: 1;
    max-width: 400px;
    height: 20px;
    margin: 0 auto;
}

.mockup-content {
    background: #0b0f19;
    padding: 25px;
    min-height: 360px;
    position: relative;
    color: #fff;
}

/* Chat Builder Mockup Graphic */
.flow-builder-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    align-items: center;
    padding: 20px 0;
}

.flow-node {
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    width: 280px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.flow-node:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
    transform: scale(1.02);
}

.flow-node-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.flow-node-header.trigger { color: #10b981; }
.flow-node-header.message { color: #3b82f6; }
.flow-node-header.condition { color: #f59e0b; }

.flow-node-body {
    font-size: 0.85rem;
    color: #9ca3af;
}

.flow-connector {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.flow-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 4px 0 4px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2) transparent transparent transparent;
}

.flow-node:hover + .flow-connector, 
.flow-connector:hover {
    background: var(--neon-blue);
}

/* Shared Inbox Mockup Graphic */
.inbox-mockup {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
}

.inbox-sidebar {
    background: #1e293b;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 10px;
}

.inbox-chat-item {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.inbox-chat-item.active {
    background: rgba(8, 170, 128, 0.15);
    border-left: 3px solid var(--neon-blue);
}

.inbox-chat-item-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--modern-gradient);
}

.inbox-chat-item-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inbox-chat-area {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
}

.inbox-bubble {
    padding: 10px 14px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.85rem;
    line-height: 1.4;
}

.inbox-bubble.received {
    background: #334155;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.inbox-bubble.sent {
    background: #08aa80;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.inbox-typing-status {
    font-size: 0.75rem;
    color: #64748b;
    align-self: flex-start;
    margin-left: 5px;
    animation: pulse 1.5s infinite;
}

/* Statistics Campaigns Mockup Graphic */
.stats-mockup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.stat-card-glass {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 170, 128, 0.3);
    background: rgba(255,255,255,0.05);
}

.stat-card-val {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: var(--modern-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card-lbl {
    font-size: 0.85rem;
    color: #94a3b8;
}

.stat-progress-bar {
    width: 100%;
    height: 6px;
    background: #334155;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.stat-progress-bar-fill {
    height: 100%;
    background: var(--modern-gradient);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

/* Glow Border Keyframe */
@keyframes border-glow {
    0%, 100% { border-color: rgba(8, 170, 128, 0.3); }
    50% { border-color: rgba(0, 230, 118, 0.8); }
}

.glowing-pricing-card {
    border: 1px solid rgba(8, 170, 128, 0.3) !important;
    animation: border-glow 4s infinite ease-in-out;
    position: relative;
}

.glowing-pricing-card::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--modern-gradient);
    color: #fff;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(8, 170, 128, 0.4);
}

/* Glassmorphism pricing card style */
.pricing-card {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 24px !important;
    padding: 35px 28px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(8, 170, 128, 0.3) !important;
}

/* Sleek dark/neon style for popular pricing cards */
.pricing-card.popular {
    background: #0f172a !important; /* Slate-900 */
    border: 1px solid rgba(0, 230, 118, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 230, 118, 0.15) !important;
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 45px rgba(0, 230, 118, 0.25) !important;
    border-color: rgba(0, 230, 118, 0.8) !important;
    background: #0b0f19 !important;
}

.pricing-card.popular .pricing-card__title,
.pricing-card.popular .pricing-card__desc,
.pricing-card.popular .pricing-card__number,
.pricing-card.popular .monthly_price,
.pricing-card.popular .yearly_price {
    color: #ffffff !important;
}

.pricing-card.popular .pricing-list__item {
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.pricing-card.popular .pricing-list__item span {
    color: rgba(255, 255, 255, 0.85) !important;
}

.pricing-card.popular .pricing-list {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px;
    padding: 15px !important;
}

.pricing-card.popular .pricing-list__item-icon {
    color: var(--neon-blue) !important;
}

/* How It Works step connector and icon animations */
.how-work-item {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 24px !important;
    padding: 35px 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
}

.how-work-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(8, 170, 128, 0.2) !important;
}

.how-work-item__icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: rgba(8, 170, 128, 0.08) !important;
    border: 1px solid rgba(8, 170, 128, 0.2) !important;
    box-shadow: 0 8px 16px rgba(8, 170, 128, 0.05) !important;
    color: var(--neon-purple) !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 auto;
}

.how-work-item:hover .how-work-item__icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--modern-gradient) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(8, 170, 128, 0.3) !important;
    border-color: transparent !important;
}

.how-work-item__shape img {
    display: none !important;
}

.how-work-item__shape {
    position: absolute !important;
    top: 67px !important; /* Center vertical align with the icon */
    right: -45% !important;
    width: 50% !important;
    height: 2px !important;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue)) !important;
    background-size: 200% 100% !important;
    animation: pulseGlow 3s infinite linear !important;
    z-index: -1 !important;
}

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

@media screen and (max-width: 991px) {
    .how-work-item__shape {
        display: none !important;
    }
}

/* Premium sticky header overrides */
.header {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
    padding: 20px 0 !important;
    transition: all 0.3s ease !important;
}

.header.fixed-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(8, 170, 128, 0.1) !important;
    box-shadow: 0 10px 30px rgba(8, 170, 128, 0.05) !important;
    padding: 12px 0 !important;
}

.nav-link {
    font-weight: 600 !important;
    color: #4a5568 !important;
    transition: color 0.3s ease !important;
    font-size: 0.95rem !important;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--neon-purple) !important;
}

/* Active FAQ Accordion Styles (Inspired by botbiz.io) */
.custom--accordion .accordion-button:not(.collapsed) {
    background-color: var(--neon-purple) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(8, 170, 128, 0.2) !important;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
}

