/* Mavro Pro Custom Styles - Updated */
:root {
    /* Primary Brand Colors */
    --primary-purple: #8B5CF6;
    --secondary-purple: #A78BFA;
    --accent-purple: #DDD6FE;
    
    /* Supporting Colors */
    --mavro-gold: #EAB308;
    --mavro-green: #059669;
    --error-red: #EF4444;
    --info-blue: #3B82F6;
    
    /* UI Foundation */
    --background: #FAFAFA;
    --surface-white: #FFFFFF;
    --text-primary: #1F2937;
    --gray-accent: #64748B;
    --dark: #2D3748;
    
    /* Legacy colors for gradual transition */
    --navy: var(--dark);
    --sunset-gold: var(--mavro-gold);
    --accent-yellow: var(--mavro-gold);
    --soft-white: var(--background);
    --light-gray: var(--gray-accent);
}

/* Font Family */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Mavro Pro Colors */
.bg-primary-purple { background-color: var(--primary-purple) !important; }
.bg-secondary-purple { background-color: var(--secondary-purple) !important; }
.bg-accent-purple { background-color: var(--accent-purple) !important; }
.bg-mavro-gold { background-color: var(--mavro-gold) !important; }
.bg-mavro-green { background-color: var(--mavro-green) !important; }
.bg-info-blue { background-color: var(--info-blue) !important; }
.bg-surface-white { background-color: var(--surface-white) !important; }
.bg-background { background-color: var(--background) !important; }

.text-primary-purple { color: var(--primary-purple) !important; }
.text-secondary-purple { color: var(--secondary-purple) !important; }
.text-accent-purple { color: var(--accent-purple) !important; }
.text-mavro-gold { color: var(--mavro-gold) !important; }
.text-mavro-green { color: var(--mavro-green) !important; }
.text-info-blue { color: var(--info-blue) !important; }
.text-primary { color: var(--text-primary) !important; }
.text-gray-accent { color: var(--gray-accent) !important; }
.text-dark { color: var(--dark) !important; }

.border-primary-purple { border-color: var(--primary-purple) !important; }
.border-mavro-gold { border-color: var(--mavro-gold) !important; }
.border-accent-purple { border-color: var(--accent-purple) !important; }

/* Legacy color classes for backward compatibility */
.bg-navy { background-color: var(--primary-purple) !important; }
.bg-sunset-gold { background-color: var(--mavro-gold) !important; }
.bg-accent-yellow { background-color: var(--mavro-gold) !important; }
.bg-soft-white { background-color: var(--background) !important; }

.text-navy { color: var(--primary-purple) !important; }
.text-sunset-gold { color: var(--mavro-gold) !important; }
.text-accent-yellow { color: var(--mavro-gold) !important; }
.text-soft-white { color: var(--background) !important; }

.border-navy { border-color: var(--primary-purple) !important; }
.border-sunset-gold { border-color: var(--mavro-gold) !important; }

/* Pre-Sale Banner Styles */
.presale-banner {
    position: relative;
    overflow: hidden;
    animation: pulse-glow-gold 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--mavro-gold), #F59E0B, #D97706) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.presale-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-gold 2s infinite;
    pointer-events: none;
}

@keyframes pulse-glow-gold {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(234, 179, 8, 0.7);
        transform: scale(1.02);
    }
}

@keyframes shimmer-gold {
    0% { left: -100%; }
    100% { left: 100%; }
}

.presale-banner .fs-4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Section Heading Styles */
#contact h2 span.d-block {
    line-height: 1.2;
}

#contact h2 span.ms-4 {
    margin-left: 2rem !important;
    color: var(--primary-purple);
}

/* Hero Title Styling */
.hero-title-container {
    margin-bottom: 2rem;
}

.hero-title-container h1:first-child {
    line-height: 1.2;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.hero-main-title {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Responsive Hero Title */
@media (max-width: 991.98px) {
    .hero-title-container h1:first-child {
        font-size: 2rem;
    }
    
    .hero-main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title-container h1:first-child {
        font-size: 1.6rem;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title-container h1:first-child {
        font-size: 1.3rem;
    }
    
    .hero-main-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title-container h1:first-child {
        font-size: 1.1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
}

/* Enhanced Contact Form Styles */
.contact-form .form-control {
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 16px 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

/* Mobile Button Improvements */
@media (max-width: 575.98px) {
    .hero-buttons .btn {
        width: 100%;
        min-height: 56px;
        font-size: 16px;
        padding: 16px 24px !important;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        max-width: 100%;
    }
    
    .hero-buttons .btn-lg {
        padding: 16px 24px !important;
        font-size: 16px !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-buttons .btn {
        min-width: 180px;
        flex: 1;
    }
}

/* Mavro Pro Button Styles */
.btn-primary-purple {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-purple:hover {
    background-color: #7C3AED;
    border-color: #7C3AED;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-mavro-gold {
    background-color: var(--mavro-gold);
    border-color: var(--mavro-gold);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-mavro-gold:hover {
    background-color: #CA8A04;
    border-color: #CA8A04;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.btn-outline-primary-purple {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary-purple:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline-mavro-gold {
    border-color: var(--mavro-gold);
    color: var(--mavro-gold);
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-mavro-gold:hover {
    background-color: var(--mavro-gold);
    border-color: var(--mavro-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.3);
}

/* Legacy button styles for backward compatibility */
.btn-sunset-gold {
    background-color: var(--mavro-gold);
    border-color: var(--mavro-gold);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sunset-gold:hover {
    background-color: #CA8A04;
    border-color: #CA8A04;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.btn-outline-navy {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-navy:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--mavro-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--mavro-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section - Modern Light Design */
.hero-section {
    background: linear-gradient(135deg, var(--surface-white) 0%, var(--background) 50%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    z-index: 1;
}

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

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.dashboard-mockup {
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--secondary-purple) 100%);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-benefit {
    display: block !important;
    animation: fadeIn 0.3s ease;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* ViVi Section */
/* Enhanced ViVi Section Styling */
.vivi-character {
    animation: float-gentle 6s ease-in-out infinite;
}

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

@keyframes pulse-glow-vivi {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.6; 
    }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.chat-bubble-modern {
    animation: slideInUp 1s ease-out;
    transition: all 0.3s ease;
}

.chat-bubble-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2) !important;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-step {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.journey-step:hover {
    background: rgba(234, 179, 8, 0.2) !important;
    transform: translateY(-2px);
}

.vivi-badge {
    animation: pulse-badge 2s ease-in-out infinite;
}

.ai-particles {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(234, 179, 8, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(234, 179, 8, 0.08) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
    0% { background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 100% 100%, -100% 100%, 100% -100%; }
}

/* Enhanced Countdown Timer Styles */
.countdown-container {
    z-index: 2;
}

.countdown-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.countdown-box:hover::before {
    left: 100%;
}

.countdown-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.countdown-timer .countdown-box .display-4 {
    font-family: 'Inter', 'Arial', monospace;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-timer .countdown-box small {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Pulsing animation for urgency */
@keyframes countdown-urgency {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(234, 179, 8, 0);
    }
}

.countdown-container .btn-mavro-gold {
    animation: countdown-urgency 2s infinite;
    position: relative;
    z-index: 3;
}

.countdown-container .btn-mavro-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .countdown-timer .countdown-box .display-4 {
        font-size: 2rem;
    }
    
    .countdown-box {
        padding: 1rem !important;
    }
    
    .countdown-container h2 {
        font-size: 1.8rem;
    }
}

/* Thank You Modal Styles */
.thank-you-modal {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px !important;
}

.success-icon-container {
    position: relative;
    display: inline-block;
}

.success-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.success-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--mavro-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: success-pulse 2s infinite;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes success-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.step-item {
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.next-steps {
    border: 2px solid rgba(139, 92, 246, 0.1);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Demo Tabs */
#demoTabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0 !important;
}

#demoTabs .nav-item {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
}

#demoTabs .nav-link {
    background-color: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.nav-pills .nav-link:hover {
    background-color: var(--primary-purple);
    color: white;
}

.nav-pills .nav-link.active {
    background-color: var(--mavro-gold);
    border-color: var(--mavro-gold);
    color: white;
}

.demo-mockup {
    transition: all 0.3s ease;
}

.demo-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Pricing Features Inline Display */
.pricing-card .list-unstyled {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.pricing-card .list-unstyled li {
    display: inline-block !important;
    margin: 0.25rem 0.5rem !important;
    white-space: nowrap !important;
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
}

/* Responsive adjustments for pricing features */
@media (max-width: 768px) {
    .pricing-card .list-unstyled {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-card .list-unstyled li {
        margin: 0.5rem 0;
        white-space: normal;
    }
}

.popular-badge {
    z-index: 10;
}

/* Billing Toggle */
.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* FAQ Section */
.accordion-button {
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-purple);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Background utility classes */
.bg-rgba-white-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Tech card hover effects */
.tech-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
}

/* Premium badges */
.premium-badge {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Section enhancements */
.section-badge {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.highlight-box {
    border: 2px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

/* Trademark badges animation */
.trademark-highlight .badge {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.6); }
}

/* Premium Technology Showcase Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(2deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.premium-tech-showcase {
    position: relative;
    min-height: 500px;
}

.premium-tech-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.premium-stat-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.premium-badge-large {
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-mavro-gold {
    background: linear-gradient(135deg, #EAB308, #F59E0B);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-mavro-gold:hover {
    background: linear-gradient(135deg, #F59E0B, #EAB308);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(234, 179, 8, 0.4) !important;
    color: white;
}

.min-vh-30 {
    min-height: 30vh;
}

/* Result highlight styling */
.result-highlight h4 {
    text-shadow: none;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
}

.form-control {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

/* Footer */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white !important;
}

/* Flash Messages */
.flash-messages {
    max-width: 600px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 150px;
    }
    
    .dashboard-mockup {
        margin-top: 3rem;
    }
    
    .vivi-avatar .avatar-container {
        width: 200px !important;
        height: 200px !important;
    }
    
    .vivi-avatar .avatar-container i {
        font-size: 4rem !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .feature-icon i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 2rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-pills .nav-link {
        padding: 0.5rem 1rem;
        margin: 0.25rem;
        font-size: 0.9rem;
    }
    
    .demo-mockup {
        padding: 1rem !important;
    }
    
    .pricing-card .card-body {
        padding: 2rem 1.5rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--soft-white);
}

::-webkit-scrollbar-thumb {
    background: var(--sunset-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e69d2e;
}

/* Loading states and transitions */
.btn {
    transition: all 0.3s ease;
}

.card {
    transition: all 0.3s ease;
}

/* Utility classes */
.bg-gradient-to-br {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--secondary-purple) 100%);
}

.bg-light-gradient {
    background: linear-gradient(135deg, var(--surface-white) 0%, var(--background) 100%);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--mavro-gold) 0%, #F59E0B 100%);
}
