/*
 * Copyright (c) 2026 PayNnet. All rights reserved.
 * Unauthorized copying, modification, or distribution of this file is strictly prohibited.
 * This software is proprietary and confidential.
 */

/* Hero Section - Premium Dark Redesign */
.hero-section.premium-dark {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 30% 20%, #1a2a40 0%, #0a1118 100%);
    color: #fff;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://cdn.pixabay.com/photo/2020/08/09/14/25/business-5475661_960_720.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    mix-blend-mode: overlay;
}
.hero-section .container { position: relative; z-index: 2; }

.hero-text-col { text-align: left; padding-left: 20px; }

.hero-category {
    display: inline-block;
    font-size: 14px; letter-spacing: 4px; color: var(--accent-color);
    margin-bottom: 20px; font-weight: 600; text-transform: uppercase;
    position: relative; padding-left: 50px;
}
.hero-category::before {
    content: ''; position: absolute; left: 0; top: 50%; width: 40px; height: 1px;
    background: var(--accent-color);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px; font-weight: 700; line-height: 1.1; margin-bottom: 30px;
    color: #fff; letter-spacing: -2px;
}
.hero-title br { display: block; }
.text-gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #f7e7ce 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 20px; color: rgba(255,255,255,0.7); font-weight: 300;
    max-width: 600px; margin-bottom: 60px; line-height: 1.8;
}
.hero-desc strong { color: #fff; font-weight: 600; }

/* Stats Row (Replacing the Card Box) */
.hero-stats {
    display: flex; align-items: center; gap: 40px; margin-bottom: 60px;
    background: rgba(255,255,255,0.05); padding: 30px 40px; border-radius: 100px;
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
    width: fit-content;
}
.stat-item { text-align: left; }
.stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.stat-value { font-family: 'Krona One', sans-serif; font-size: 32px; color: #fff; line-height: 1; }
.stat-value small { font-size: 16px; margin-left: 2px; color: rgba(255,255,255,0.6); }
.stat-value.text-accent { color: var(--accent-color); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Buttons Premium */
.hero-actions { display: flex; align-items: center; gap: 20px; }
.hero-cta-wrap { position: relative; }

/* Floating Message Bubble */
.floating-bubble {
    position: absolute; bottom: calc(100% + 15px); left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff; padding: 8px 16px; border-radius: 12px; font-size: 13px; font-weight: 700;
    white-space: nowrap; box-shadow: 0 10px 20px rgba(0, 70, 184, 0.3);
    animation: bubble-float 3s ease-in-out infinite; z-index: 10;
    display: flex; align-items: center; gap: 6px;
}
.floating-bubble::after {
    content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 8px solid transparent; border-top-color: var(--secondary-color);
}
.floating-bubble i { color: var(--accent-color); font-size: 15px; }

@keyframes bubble-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Modal Specific Bubble */
.bubble-modal {
    bottom: calc(100% + 12px) !important;
    background: linear-gradient(135deg, var(--accent-color), #f39c12) !important;
    font-size: 11px !important;
    padding: 6px 12px !important;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3) !important;
}
.bubble-modal::after {
    border-top-color: #f39c12 !important;
}
.bubble-modal i { color: #fff !important; font-size: 12px; }

/* Hide bubble when input is focused */
.input-wrapper:focus-within .floating-bubble {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

@keyframes bubble-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
