/* ===================================
   CSS Variables & Reset - Clean SNES Style
   =================================== */
:root {
    /* Colors - Light Theme */
    --primary-blue: #4A90E2;
    --accent-blue: #5BA3F5;
    --white-bg: #f5f5f7;
    /* Light gray background */
    --light-bg: #ffffff;
    /* pure white for cards */
    --lighter-bg: #f9fafb;
    --black-text: #1a1a1a;
    --gray-text: #555555;
    --light-gray-text: #888888;
    --border-color: rgba(0, 0, 0, 0.08);
    /* Dark subtle border */
    --success-green: #22C55E;
    --card-bg: #ffffff;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 5%;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--black-text);
    background-color: var(--white-bg);
    /* Clean background - removed global dots */
    overflow-x: hidden;
    line-height: 1.6;
}

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

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

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

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black-text);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    display: none;
    /* Remove underline for cleaner look */
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 650px;
    margin: 20px auto 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Scroll Progress Indicator */
.scroll-progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 10000;
    transform-origin: left;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-blue);
    width: 0%;
    transition: width 0.1s ease;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition-smooth);
    /* Hidden by default if we are using the new hero-header, but useful for other pages */
    display: none;
}

/* Navbar styles compatible with new theme */
.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black-text);
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.logo-gradient {
    color: #000;
}

.logo-studio {
    color: #666;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

.nav-link::after {
    display: none;
}

.cta-btn {
    padding: 10px 24px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.hamburger {
    display: none;
    /* Add mobile logic later if needed */
}

/* ===================================
   Hero Section - kree8.studio Style
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 40px 80px;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 0%, transparent 100%);
}

.sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 70%;
    left: 80%;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 20%;
    left: 60%;
    animation-delay: 1.5s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

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

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #4A90E2, #8B5CF6);
    opacity: 0.3;
    z-index: -1;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #ffffff;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.hero-cta-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Feature Pills */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: #FFFFFF;
    border-color: #4A90E2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.pill-icon {
    font-size: 1.1rem;
}

/* Floating Particles Animation */
.hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 0, 0, 0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 0, 0, 0.08), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 0, 0, 0.06), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 0, 0, 0.05), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(0, 0, 0, 0.08), transparent);
    background-size: 200% 200%, 180% 180%, 150% 150%, 220% 220%, 190% 190%;
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translate(20px, 30px) rotate(270deg);
        opacity: 0.7;
    }
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ===================================
   Premium Hero Decorations
   =================================== */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

/* Hero Grid */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

/* Radial Glow */
.radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Hero Eyebrow */
.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Title Lines */
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -2px;
}

.title-gradient {
    background: linear-gradient(135deg, #4A90E2, #8B5CF6, #4A90E2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientText 5s ease-in-out infinite;
    font-size: 5.5rem;
    font-weight: 800;
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.subtitle-accent {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Badge Pulse */
.badge-pulse {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.trust-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

/* Premium Scroll Indicator */
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

/* Button Arrow */
.btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta-btn.primary:hover .btn-arrow {
    transform: translateX(5px);
}

@keyframes gradientShift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* Hero Social Icons in Background */
.hero-social-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-social-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-bg);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    pointer-events: all;
    opacity: 0.7;
    animation: heroIconFloat 4s ease-in-out infinite;
}

.hero-social-icon:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Position icons elegantly */
.hero-social-icon.gmail {
    top: 20%;
    left: 8%;
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    animation-delay: 0s;
}

.hero-social-icon.whatsapp {
    top: 45%;
    left: 5%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0.5s;
}

.hero-social-icon.instagram {
    top: 70%;
    left: 10%;
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    animation-delay: 1s;
}

.hero-social-icon.linkedin {
    top: 25%;
    right: 10%;
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
    animation-delay: 1.5s;
}

.hero-social-icon.twitter {
    top: 60%;
    right: 7%;
    background: linear-gradient(135deg, #1DA1F2 0%, #0C85D0 100%);
    animation-delay: 2s;
}

@keyframes heroIconFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(8px, -10px);
    }

    50% {
        transform: translate(-5px, -15px);
    }

    75% {
        transform: translate(10px, -8px);
    }
}

/* Floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: heroContentFadeIn 1.2s ease-out;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Availability Badge (kree8.studio style) */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 40px;
    animation: badgeSlideDown 0.8s ease-out;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: visible;
}

@keyframes nebulaFloat {

    0%,
    100% {
        background-position: 0% 50%, 100% 50%, 50% 0%, 0% 0%;
    }

    50% {
        background-position: 100% 50%, 0% 50%, 50% 100%, 0% 0%;
    }
}

@keyframes nebulaPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

@keyframes badgeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-text {
    margin-bottom: 50px;
    text-align: center;
}

@keyframes woodShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

@keyframes smokeGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
        filter: blur(30px);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
        filter: blur(40px);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: #FFFFFF;
}

/* Bracket Text Decoration - Premium Style */
.bracket-text {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(135deg, #4A90E2, #5BA3F5);
    font-weight: 800;
}

@keyframes bracketPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(74, 144, 226, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.1);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 10px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #E0E0E0;
    max-width: 700px;
    margin: 32px auto 0;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    animation: subtitleReveal 1.4s ease-out 0.3s both;
    opacity: 0;
}

@keyframes subtitleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats - Premium Modern Style */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    margin: 60px 0;
    padding: 40px 56px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: visible;
    animation: statsSlideUp 1.6s ease-out 0.5s both;
    opacity: 0;
}

@keyframes statsSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    border-radius: 24px;
    pointer-events: none;
}

.hero-stats::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stats:hover::after {
    opacity: 1;
}

.hero-stats:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 72px rgba(0, 0, 0, 0.12),
        0 12px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@keyframes statsRotate {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0deg;
    }

    100% {
        background-position: 100% 100%, 100% 100%, 100% 100%, 360deg;
    }
}

@keyframes statsGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes starsTwinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black-text);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #FFFFFF, #DDDDDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberCountUp 1s ease-out;
}

@keyframes numberCountUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-label {
    font-size: 0.85rem;
    color: #AAAAAA;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

/* Hero CTA Button */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn.primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.hero-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-btn.secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.vibea-highlight {
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
    padding: 0 8px;
}

.vibea-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 12px;
    background: rgba(74, 144, 226, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* ===================================
   Vibea AI Card
   =================================== */
/* ===================================
   Vibea AI Glass Dashboard - Premium Redesign
   =================================== */

.vibea-feature {
    padding: var(--section-padding);
    background: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.vibea-showcase-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px;
}

/* --- Aurora Background Effects --- */
.vibea-aurora-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.aurora-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.7;
    animation: auroraFloat 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, rgba(74, 144, 226, 0) 70%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.3) 0%, rgba(155, 89, 182, 0) 70%);
    animation-delay: -3s;
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0) 70%);
    animation-delay: -5s;
}

@keyframes auroraFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* --- Glass Dashboard Container --- */
.glass-dashboard-container {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-dashboard-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* --- Dashboard Header --- */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.win-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.win-dot.red {
    background: #ff5f56;
}

.win-dot.yellow {
    background: #ffbd2e;
}

.win-dot.green {
    background: #27c93f;
}

.window-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-title i {
    color: var(--primary-blue);
}

.window-title span {
    background: #000;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.action-icon {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

.action-icon:hover {
    color: #555;
}

/* --- Dashboard Body --- */
.dashboard-body {
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-interaction-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ai-greeting {
    text-align: center;
    margin-bottom: 30px;
}

.ai-greeting h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.ai-greeting p {
    color: #666;
    font-size: 1.1rem;
}

/* --- Input Area --- */
.prompt-input-container {
    width: 100%;
    max-width: 700px;
    position: relative;
}

.input-glass-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.input-glass-wrapper:focus-within {
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 2px var(--primary-blue);
    transform: translateY(-2px);
}

.input-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 15px;
}

.premium-input {
    flex: 1;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    background: transparent;
    outline: none;
    resize: none;
    min-height: 24px;
    padding: 16px 0;
    line-height: 1.5;
}

.premium-input::placeholder {
    color: #aaa;
}

.premium-generate-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-generate-btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.suggestion-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 16px;
    border-radius: 100px;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chip:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.chip i {
    color: #888;
    font-size: 0.8rem;
}

.chip:hover i {
    color: var(--primary-blue);
}

/* --- Dashboard Footer --- */
.dashboard-footer {
    padding: 12px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #888;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-item i {
    font-size: 0.8rem;
    color: #ccc;
}

.status-item:first-child i {
    color: #22C55E;
}

/* Generate Button - The "Action" Button */
.vibea-generate-btn {
    margin-left: auto;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    /* Squircle */
    background: #1a1a1a;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vibea-generate-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: #000;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.vibea-generate-btn i {
    font-size: 1.2rem;
}

/* Output Section */
.vibea-output-section {
    margin: 0 40px 40px;
    padding: 30px;
    background: #f5f5f7;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.output-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #4A90E2;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.vibea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 163, 245, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.vibea-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    padding: 32px 40px 28px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.vibea-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(91, 163, 245, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.vibea-icon img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(74, 144, 226, 0.2));
}

.vibea-title {
    flex: 1;
}

.vibea-title h3 {
    font-size: 1.75rem;
    margin-bottom: 6px;
    color: var(--black-text);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.vibea-title p {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.vibea-input-section {
    margin: 0;
    padding: 32px 40px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.vibea-input-wrapper {
    position: relative;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ff6432 0%, #ff8c42 25%, #6b46ff 75%, #4a90e2 100%);
    border-radius: 18px;
    padding: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.vibea-input-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff6432 0%, #ff8c42 25%, #6b46ff 75%, #4a90e2 100%);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.vibea-input-wrapper:focus-within {
    opacity: 1;
    box-shadow:
        0 0 24px rgba(255, 100, 50, 0.25),
        0 0 48px rgba(107, 70, 255, 0.25);
}

.vibea-input-wrapper:focus-within::before {
    opacity: 0.4;
}

.vibea-input {
    width: 100%;
    padding: 20px 24px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--black-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    resize: none;
    transition: all 0.3s ease;
    min-height: 72px;
    line-height: 1.6;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 2px rgba(0, 0, 0, 0.02);
    position: relative;
}

.vibea-input::placeholder {
    color: var(--light-gray-text);
    font-weight: 400;
}

.vibea-input:focus {
    outline: none;
    background: var(--lighter-bg);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.vibea-controls-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vibea-control-btn {
    padding: 10px 18px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--black-text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.vibea-control-btn:hover {
    background: var(--white-bg);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.12);
}

.vibea-control-btn i {
    font-size: 0.9rem;
}

.vibea-control-btn.add-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    min-width: 36px;
}

.vibea-generate-btn {
    margin-left: auto;
    padding: 12px 28px;
    background: linear-gradient(135deg, #6b46ff 0%, #8b5cf6 50%, #4a90e2 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 16px rgba(107, 70, 255, 0.35),
        0 2px 4px rgba(107, 70, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 48px;
    height: 48px;
}

.vibea-generate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.vibea-generate-btn:hover::before {
    width: 250px;
    height: 250px;
}

.vibea-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 24px rgba(107, 70, 255, 0.5),
        0 0 0 3px rgba(107, 70, 255, 0.15);
}

.vibea-generate-btn:active {
    transform: translateY(0);
}

.vibea-generate-btn i {
    font-size: 1rem;
}

.vibea-output-section {
    margin-top: 20px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.output-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.vibea-output {
    color: var(--black-text);
    line-height: 1.8;
    max-height: 300px;
    overflow-y: auto;
    font-size: 1rem;
}

.vibea-loading {
    text-align: center;
    padding: 40px;
    color: var(--gray-text);
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff6432 0%, #6b46ff 100%);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
    box-shadow: 0 0 10px rgba(107, 70, 255, 0.5);
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.floating-bot {
    display: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Scroll Indicator
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===================================
   Vibea AI Feature Section
   =================================== */
.vibea-feature {
    padding: var(--section-padding);
    background: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.vibea-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(91, 163, 245, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vibea-feature-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vibea-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(91, 163, 245, 0.1));
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 25px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.vibea-badge i {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.vibea-feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-text);
    margin-bottom: 15px;
}

.vibea-feature-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Services Section (kree8.studio style)
   =================================== */
.services {
    padding: var(--section-padding);
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(74, 144, 226, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(91, 163, 245, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.service-tip {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Service Preview Image */
.service-preview {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--lighter-bg);
}

.service-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%);
}

.service-card:hover .service-preview-img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* Mosaic overlay on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background:
        linear-gradient(45deg, transparent 30%, rgba(74, 144, 226, 0.08) 30%, rgba(74, 144, 226, 0.08) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(91, 163, 245, 0.08) 30%, rgba(91, 163, 245, 0.08) 70%, transparent 70%);
    background-size: 40px 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
    animation: mosaicMove 15s linear infinite;
}

@keyframes mosaicMove {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 40px 40px, -40px 40px;
    }
}

.service-card-inner {
    padding: 32px 28px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--black-text);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--gray-text);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Shimmer effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.7s ease;
    z-index: 3;
    pointer-events: none;
}

.service-card:hover::after {
    left: 100%;
}

/* Service CTA Button */
.service-cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    background: var(--black-text);
    color: var(--white-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-blue);
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.service-cta-btn:hover::before {
    width: 250px;
    height: 250px;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Pricing Section (Premium kree8 style)
   =================================== */
/* ===================================
   Pricing Section (Premium Clean Style)
   =================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 100px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Clean 1px border */
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Featured / Popular Card Styling */
.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
    background: #fff;
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 60px rgba(74, 144, 226, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: #555;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: #1a1a1a;
    color: #fff;
    transform: rotateY(180deg);
}

.pricing-icon.featured {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-blue);
}

.pricing-card.popular:hover .pricing-icon.featured {
    background: var(--primary-blue);
    color: #fff;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.plan-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 40px;
    /* Alignment */
}

/* Price Tag */
.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.period {
    align-self: flex-end;
    margin-bottom: 8px;
    color: #888;
    font-size: 1rem;
    font-weight: 500;
}

/* Features List */
.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #555;
    font-size: 0.95rem;
}

.pricing-features li i {
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-features li.included i {
    color: var(--success-green);
}

.pricing-features li.not-included {
    color: #bbb;
    text-decoration: line-through;
}

.pricing-features li.not-included i {
    color: #ddd;
}

/* Buttons */
.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    border-radius: 100px;
    background: #f5f5f7;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pricing-btn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.pricing-card.popular .pricing-btn {
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular .pricing-btn:hover {
    background: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -5px;
    left: 70%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white-bg);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    text-align: center;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(74, 144, 226, 0.6);
    }
}

.popular-badge i {
    font-size: 0.8rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(91, 163, 245, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.pricing-icon i {
    font-size: 2.2rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.pricing-card.popular .pricing-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
}

.pricing-card.popular .pricing-icon i {
    color: var(--white-bg);
}

.pricing-icon.featured {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pricing-card:hover {
    transform: perspective(2000px) rotateY(-0.5deg) rotateX(0.5deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.3);
    transform: perspective(2000px) rotateY(-0.5deg) rotateX(0.5deg) translateY(-5px) scale(1.03);
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--black-text);
    font-weight: 800;
}

.plan-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.5;
}

.price {
    margin: 25px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 16px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--gray-text);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black-text);
    letter-spacing: -2px;
}

.period {
    color: var(--gray-text);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.pricing-features li.included {
    color: var(--black-text);
}

.pricing-features li.included i {
    color: var(--success-green);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pricing-features li.not-included {
    color: var(--light-gray-text);
    opacity: 0.5;
}

.pricing-features li.not-included i {
    color: #E57373;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pricing-features li.not-included span {
    text-decoration: line-through;
}

.pricing-features li:hover {
    padding-left: 8px;
}

.pricing-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--black-text);
    border: none;
    border-radius: 50px;
    color: var(--white-bg);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-blue);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.pricing-btn:hover::before {
    width: 400px;
    height: 400px;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.pricing-btn i {
    transition: transform 0.3s ease;
}

.pricing-btn:hover i {
    transform: translateX(5px);
}

.pricing-card.popular .pricing-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
}

.pricing-card.popular .pricing-btn:hover {
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.5);
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    margin-top: 50px;
}

.pricing-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 50px;
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-note i {
    color: var(--success-green);
    font-size: 1.1rem;
}

/* ===================================
   Portfolio Section (kree8.studio style)
   =================================== */
.portfolio {
    padding: var(--section-padding);
    background: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    group: hover;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 300px;
    /* Fixed height for consistency */
    overflow: hidden;
    background: #f0f0f0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay i {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.portfolio-info {
    padding: 32px;
    position: relative;
}

.portfolio-category {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f7;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.portfolio-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.portfolio-cta {
    text-align: center;
    margin-top: 80px;
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 30%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(91, 163, 245, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-track {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px 44px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--gray-text);
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--black-text);
}

.testimonial-author p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    background: var(--white-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--black-text);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--black-text);
    color: var(--white-bg);
    border-color: var(--black-text);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 163, 245, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--black-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 16px 22px;
    background: var(--light-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    color: var(--black-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    background: var(--white-bg);
}

.submit-btn {
    padding: 15px 30px;
    background: var(--black-text);
    border: none;
    border-radius: 12px;
    color: var(--white-bg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(74, 144, 226, 0.2);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(91, 163, 245, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-blue);
    border: 1px solid rgba(74, 144, 226, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white-bg);
    transform: scale(1.05);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--black-text);
}

.contact-item p {
    color: var(--gray-text);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-text);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--black-text);
    color: var(--white-bg);
    border-color: var(--black-text);
    transform: translateY(-3px);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--light-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black-text);
}

.footer-tagline {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-description {
    color: var(--gray-text);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--black-text);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--black-text);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: var(--white-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-text);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--black-text);
    color: var(--white-bg);
    border-color: var(--black-text);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
}

/* ===================================
   Floating Vibea AI Button
   =================================== */
.floating-vibea-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: var(--white-bg);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.floating-vibea-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(74, 144, 226, 0.4);
}

/* ===================================
   Floating Social Icons - Random Placement
   =================================== */
.floating-social-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 998;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-bg);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: all;
    animation: floatRandom 4s ease-in-out infinite;
}

/* Positioned icons - 3 on left, 2 on right */
.floating-icon:nth-child(1) {
    top: 25%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 45%;
    left: 8%;
    animation-delay: 0.5s;
}

.floating-icon:nth-child(3) {
    top: 65%;
    left: 6%;
    animation-delay: 1s;
}

.floating-icon:nth-child(4) {
    top: 30%;
    right: 6%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(5) {
    top: 55%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes floatRandom {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }

    50% {
        transform: translate(-5px, -25px) rotate(-3deg);
    }

    75% {
        transform: translate(15px, -10px) rotate(4deg);
    }
}

.gmail-icon {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.instagram-icon {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.twitter-icon {
    background: linear-gradient(135deg, #1DA1F2 0%, #0C85D0 100%);
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ===================================
   AI Chatbot
   =================================== */
/* ===================================
   AI Chatbot - Premium Glass Design
   =================================== */
.ai-chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-height: 600px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.ai-chatbot.active {
    display: flex;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--black-text);
    position: relative;
    z-index: 10;
}

.chatbot-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4A90E2, #8B5CF6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 16px rgba(74, 144, 226, 0.25);
    position: relative;
    overflow: hidden;
}

.chatbot-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
}

.chatbot-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.chatbot-status {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chatbot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite;
}

.chatbot-toggle {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.chatbot-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    transform: rotate(90deg);
}

.chatbot-body {
    display: flex;
    flex-direction: column;
    height: 480px;
    position: relative;
    background: rgba(255, 255, 255, 0.4);
}

.chatbot-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Custom Scrollbar for Chat */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.bot-message,
.user-message {
    display: flex;
    gap: 12px;
    max-width: 90%;
    animation: messageSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #4A90E2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.message-content p {
    padding: 14px 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
}

.bot-message .message-content p {
    background: #fff;
    color: #1a1a1a;
    border-radius: 4px 18px 18px 18px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.user-message .message-content p {
    background: linear-gradient(135deg, #4A90E2, #5BA3F5);
    color: #fff;
    border-radius: 18px 4px 18px 18px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-left: 44px;
    /* Align with text */
}

.quick-reply {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.quick-reply:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #000;
    border-color: #fff;
}

.chatbot-input-area {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 12px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.chatbot-input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.chatbot-send {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chatbot-send:hover {
    transform: scale(1.05);
    background: #000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Chatbot Trigger Button */
.chatbot-trigger {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 65px;
    height: 65px;
    background: #ffffff !important;
    border: 3px solid rgba(139, 111, 71, 0.4) !important;
    border-radius: 50%;
    color: #6B4E2E !important;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(139, 111, 71, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1000 !important;
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.chatbot-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 98px,
            rgba(139, 111, 71, 0.08) 98px,
            rgba(139, 111, 71, 0.08) 100px),
        repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 48px,
            rgba(107, 78, 46, 0.1) 48px,
            rgba(107, 78, 46, 0.1) 50px);
    background-size: 100px 100%, 50px 50px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    border-radius: 50%;
}

.chatbot-trigger::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    animation: woodShine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow:
        0 8px 35px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(139, 111, 71, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.08);
}

.chatbot-trigger:hover::after {
    animation: woodShine 2s ease-in-out infinite;
}

.chatbot-trigger i {
    position: relative;
    z-index: 2;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(255, 255, 255, 0.8);
    color: #6B4E2E !important;
    font-weight: bold;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #6B4E2E !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--white-bg);
    animation: badgePulse 2s infinite;
    box-shadow:
        0 0 10px rgba(107, 78, 46, 0.6),
        0 0 20px rgba(107, 78, 46, 0.3);
    z-index: 3;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: var(--white-bg);
    border-radius: 12px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray-text);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        top: 20px;
        width: calc(100% - 40px);
    }

    .navbar {
        padding: 0;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: calc(100% - 40px);
        max-width: 400px;
        height: calc(100vh - 100px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .nav-menu.active {
        left: 0;
    }

    .cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px 32px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
        background: rgba(0, 0, 0, 0.08);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }




    .stat-label {
        font-size: 0.8rem;
    }

    .vibea-card {
        padding: 25px;
    }





    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .floating-vibea-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .floating-social-icons {
        left: 15px;
        gap: 12px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .ai-chatbot {
        width: 100%;
        max-width: 100%;
        right: 0;
        bottom: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .chatbot-trigger {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .vibea-generate-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .floating-bot {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: -20px;
        right: -20px;
    }
}

/* ===================================
   Bottom Navigation Bar (kree8.studio style)
   =================================== */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    animation: slideUpNav 0.6s ease-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

@keyframes slideUpNav {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.bottom-nav-container {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bottom-nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    border-radius: 50px;
}

.bottom-nav-container:hover::before {
    left: 100%;
}

.bottom-nav-container:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: var(--black-text);
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
    position: relative;
    min-width: 70px;
    z-index: 2;
}

.bottom-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    transition: var(--transition-smooth);
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.bottom-nav-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--black-text);
    transform: translateY(-3px);
}

.bottom-nav-item:hover i {
    animation: bounceIcon 0.6s ease;
}

@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.bottom-nav-item.active {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-blue);
    backdrop-filter: blur(10px);
}

.bottom-nav-item.active span {
    opacity: 1;
}

.bottom-nav-cta {
    padding: 12px 28px;
    background: var(--black-text);
    color: var(--white-bg);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bottom-nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-blue);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.bottom-nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.bottom-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hide bottom nav on mobile */
@media (max-width: 768px) {
    .bottom-nav {
        bottom: 10px;
    }

    .bottom-nav-container {
        padding: 8px 12px;
        gap: 4px;
    }

    .bottom-nav-item {
        padding: 8px 10px;
        min-width: 50px;
    }

    .bottom-nav-item i {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .bottom-nav-item span {
        font-size: 0.6rem;
    }

    .bottom-nav-cta {
        padding: 10px 16px;
        font-size: 0.75rem;
        margin-left: 4px;
    }
}

@media (max-width: 480px) {
    .bottom-nav-item span {
        display: none;
    }

    .bottom-nav-item {
        min-width: 40px;
        padding: 10px;
    }

    .bottom-nav-cta span {
        display: inline;
    }
}

/* ===================================
   Scroll Progress Bar
   =================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* ===================================
   Animations & Effects
   =================================== */

/* Typing Cursor Effect */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--primary-blue);
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Selection Color */
::selection {
    background: var(--primary-blue);
    color: var(--white-bg);
}

::-moz-selection {
    background: var(--primary-blue);
    color: var(--white-bg);
}

/* Custom Cursor Effect */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

/* Hover effects for interactive elements */
a:hover~.cursor-outline,
button:hover~.cursor-outline,
.service-card:hover~.cursor-outline {
    transform: scale(1.5);
    background: rgba(74, 144, 226, 0.1);
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Parallax effect for sections */
.parallax-section {
    transform: translateY(0);
    transition: transform 0.5s ease-out;
}

/* Glowing text effect */
.glow-text {
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(74, 144, 226, 0.8), 0 0 30px rgba(74, 144, 226, 0.6);
    }
}

/* Magnetic button effect */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Ripple effect on click */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Stagger animation for grid items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    animation: staggerFadeIn 0.6s ease forwards;
}

.stagger-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-item:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-item:nth-child(6) {
    animation-delay: 0.6s;
}

.stagger-item:nth-child(7) {
    animation-delay: 0.7s;
}

.stagger-item:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tilt effect on hover */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
}

/* ===================================
   Image Modal
   =================================== */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--white-bg);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.modal-actions {
    padding: 20px;
    background: var(--white-bg);
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-color);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.download-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.download-btn i {
    font-size: 1.1rem;
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-content img {
        max-height: 70vh;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .modal-actions {
        padding: 15px;
    }

    .download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =           A I   C h a t b o t   I n t e r f a c e           = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /     . a i - c h a t b o t    {
                 p o s i t i o n :    f i x e d ;
                 b o t t o m :    1 0 0 p x ;
                 r i g h t :    3 0 p x ;
                 w i d t h :    3 5 0 p x ;
                 h e i g h t :    5 0 0 p x ;
                 b a c k g r o u n d :    # f f f f f f ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 b o x - s h a d o w :    0   1 0 p x   4 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 5 ) ;
                 z - i n d e x :    9 9 9 9 ;
                 o v e r f l o w :    h i d d e n ;
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 t r a n s f o r m :    t r a n s l a t e Y ( 2 0 p x )   s c a l e ( 0 . 9 5 ) ;
                 o p a c i t y :    0 ;
                 p o i n t e r - e v e n t s :    n o n e ;
                 t r a n s i t i o n :    a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,    0 ,    0 . 2 ,    1 ) ;
                 b o r d e r :    1 p x   s o l i d   r g b a ( 0 ,    0 ,    0 ,    0 . 0 5 ) ;
         
}

         . a i - c h a t b o t . a c t i v e    {
                 t r a n s f o r m :    t r a n s l a t e Y ( 0 )   s c a l e ( 1 ) ;
                 o p a c i t y :    1 ;
                 p o i n t e r - e v e n t s :    a l l ;
         
}

         . c h a t b o t - h e a d e r    {
                 b a c k g r o u n d :    l i n e a r - g r a d i e n t ( 1 3 5 d e g ,    v a r ( - - p r i m a r y - b l u e )   0 % ,    v a r ( - - a c c e n t - b l u e )   1 0 0 % ) ;
                 p a d d i n g :    2 0 p x ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    s p a c e - b e t w e e n ;
                 c o l o r :    w h i t e ;
         
}

         . c h a t b o t - a v a t a r    {
                 w i d t h :    4 0 p x ;
                 h e i g h t :    4 0 p x ;
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 2 ) ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 m a r g i n - r i g h t :    1 5 p x ;
                 b a c k d r o p - f i l t e r :    b l u r ( 5 p x ) ;
         
}

         . c h a t b o t - i n f o   h 4    {
                 f o n t - s i z e :    1 r e m ;
                 f o n t - w e i g h t :    6 0 0 ;
                 m a r g i n :    0 ;
         
}

         . c h a t b o t - s t a t u s    {
                 f o n t - s i z e :    0 . 8 r e m ;
                 o p a c i t y :    0 . 9 ;
                 m a r g i n :    0 ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
         
}

         . c h a t b o t - s t a t u s : : b e f o r e    {
                 c o n t e n t :    ' '  ;
                 w i d t h :    8 p x ;
                 h e i g h t :    8 p x ;
                 b a c k g r o u n d :    # 2 2 C 5 5 E ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 m a r g i n - r i g h t :    6 p x ;
                 b o x - s h a d o w :    0   0   5 p x   r g b a ( 3 4 ,    1 9 7 ,    9 4 ,    0 . 5 ) ;
         
}

         . c h a t b o t - t o g g l e    {
                 b a c k g r o u n d :    n o n e ;
                 b o r d e r :    n o n e ;
                 c o l o r :    w h i t e ;
                 f o n t - s i z e :    1 . 2 r e m ;
                 c u r s o r :    p o i n t e r ;
                 o p a c i t y :    0 . 8 ;
                 t r a n s i t i o n :    o p a c i t y   0 . 2 s ;
         
}

         . c h a t b o t - t o g g l e : h o v e r    {
                 o p a c i t y :    1 ;
         
}

         . c h a t b o t - b o d y    {
                 f l e x :    1 ;
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 b a c k g r o u n d :    # f 8 f 9 f a ;
         
}

         . c h a t b o t - m e s s a g e s    {
                 f l e x :    1 ;
                 p a d d i n g :    2 0 p x ;
                 o v e r f l o w - y :    a u t o ;
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 g a p :    1 5 p x ;
         
}

         . b o t - m e s s a g e ,
     . u s e r - m e s s a g e    {
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    f l e x - s t a r t ;
                 m a x - w i d t h :    8 5 % ;
                 a n i m a t i o n :    f a d e I n   0 . 3 s   e a s e ;
         
}

         . u s e r - m e s s a g e    {
                 a l i g n - s e l f :    f l e x - e n d ;
                 f l e x - d i r e c t i o n :    r o w - r e v e r s e ;
         
}

         . m e s s a g e - a v a t a r    {
                 w i d t h :    3 0 p x ;
                 h e i g h t :    3 0 p x ;
                 b a c k g r o u n d :    w h i t e ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 b o x - s h a d o w :    0   2 p x   5 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 0 5 ) ;
                 f l e x - s h r i n k :    0 ;
                 f o n t - s i z e :    0 . 8 r e m ;
                 c o l o r :    v a r ( - - p r i m a r y - b l u e ) ;
         
}

         . u s e r - m e s s a g e   . m e s s a g e - a v a t a r    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y - b l u e ) ;
                 c o l o r :    w h i t e ;
         
}

         . m e s s a g e - c o n t e n t    {
                 b a c k g r o u n d :    w h i t e ;
                 p a d d i n g :    1 2 p x   1 6 p x ;
                 b o r d e r - r a d i u s :    1 2 p x ;
                 b o r d e r - t o p - l e f t - r a d i u s :    2 p x ;
                 b o x - s h a d o w :    0   2 p x   5 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 0 3 ) ;
                 m a r g i n - l e f t :    1 0 p x ;
                 f o n t - s i z e :    0 . 9 5 r e m ;
                 c o l o r :    v a r ( - - g r a y - t e x t ) ;
                 l i n e - h e i g h t :    1 . 5 ;
         
}

         . u s e r - m e s s a g e   . m e s s a g e - c o n t e n t    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y - b l u e ) ;
                 c o l o r :    w h i t e ;
                 m a r g i n - l e f t :    0 ;
                 m a r g i n - r i g h t :    1 0 p x ;
                 b o r d e r - r a d i u s :    1 2 p x ;
                 b o r d e r - t o p - r i g h t - r a d i u s :    2 p x ;
         
}

         . q u i c k - r e p l i e s    {
                 d i s p l a y :    f l e x ;
                 f l e x - w r a p :    w r a p ;
                 g a p :    8 p x ;
                 m a r g i n - t o p :    1 0 p x ;
         
}

         . q u i c k - r e p l y    {
                 b a c k g r o u n d :    r g b a ( 7 4 ,    1 4 4 ,    2 2 6 ,    0 . 1 ) ;
                 c o l o r :    v a r ( - - p r i m a r y - b l u e ) ;
                 b o r d e r :    n o n e ;
                 p a d d i n g :    6 p x   1 2 p x ;
                 b o r d e r - r a d i u s :    1 5 p x ;
                 f o n t - s i z e :    0 . 8 5 r e m ;
                 c u r s o r :    p o i n t e r ;
                 t r a n s i t i o n :    a l l   0 . 2 s ;
         
}

         . q u i c k - r e p l y : h o v e r    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y - b l u e ) ;
                 c o l o r :    w h i t e ;
                 t r a n s f o r m :    t r a n s l a t e Y ( - 2 p x ) ;
         
}

         . c h a t b o t - i n p u t - a r e a    {
                 p a d d i n g :    1 5 p x ;
                 b a c k g r o u n d :    w h i t e ;
                 b o r d e r - t o p :    1 p x   s o l i d   r g b a ( 0 ,    0 ,    0 ,    0 . 0 5 ) ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 g a p :    1 0 p x ;
         
}

         . c h a t b o t - i n p u t    {
                 f l e x :    1 ;
                 b o r d e r :    1 p x   s o l i d   r g b a ( 0 ,    0 ,    0 ,    0 . 1 ) ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 p a d d i n g :    1 0 p x   1 5 p x ;
                 f o n t - s i z e :    0 . 9 5 r e m ;
                 o u t l i n e :    n o n e ;
                 t r a n s i t i o n :    b o r d e r - c o l o r   0 . 2 s ;
         
}

         . c h a t b o t - i n p u t : f o c u s    {
                 b o r d e r - c o l o r :    v a r ( - - p r i m a r y - b l u e ) ;
         
}

         . c h a t b o t - s e n d    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y - b l u e ) ;
                 c o l o r :    w h i t e ;
                 b o r d e r :    n o n e ;
                 w i d t h :    4 0 p x ;
                 h e i g h t :    4 0 p x ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 c u r s o r :    p o i n t e r ;
                 t r a n s i t i o n :    t r a n s f o r m   0 . 2 s ;
         
}

         . c h a t b o t - s e n d : h o v e r    {
                 t r a n s f o r m :    s c a l e ( 1 . 1 ) ;
         
}

         / *   C h a t b o t   T r i g g e r   B u t t o n   * /     . c h a t b o t - t r i g g e r    {
                 p o s i t i o n :    f i x e d ;
                 b o t t o m :    3 0 p x ;
                 r i g h t :    3 0 p x ;
                 w i d t h :    6 0 p x ;
                 h e i g h t :    6 0 p x ;
                 b a c k g r o u n d :    l i n e a r - g r a d i e n t ( 1 3 5 d e g ,    v a r ( - - p r i m a r y - b l u e )   0 % ,    v a r ( - - a c c e n t - b l u e )   1 0 0 % ) ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 b o r d e r :    n o n e ;
                 c o l o r :    w h i t e ;
                 f o n t - s i z e :    1 . 5 r e m ;
                 c u r s o r :    p o i n t e r ;
                 b o x - s h a d o w :    0   5 p x   2 0 p x   r g b a ( 7 4 ,    1 4 4 ,    2 2 6 ,    0 . 4 ) ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 z - i n d e x :    9 9 9 8 ;
                 t r a n s i t i o n :    a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,    0 . 8 8 5 ,    0 . 3 2 ,    1 . 2 7 5 ) ;
         
}

         . c h a t b o t - t r i g g e r : h o v e r    {
                 t r a n s f o r m :    s c a l e ( 1 . 1 )   r o t a t e ( 1 0 d e g ) ;
                 b o x - s h a d o w :    0   8 p x   2 5 p x   r g b a ( 7 4 ,    1 4 4 ,    2 2 6 ,    0 . 5 ) ;
         
}

         . c h a t b o t - b a d g e    {
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    - 5 p x ;
                 r i g h t :    - 5 p x ;
                 b a c k g r o u n d :    # f f 4 7 5 7 ;
                 c o l o r :    w h i t e ;
                 f o n t - s i z e :    0 . 7 5 r e m ;
                 w i d t h :    2 0 p x ;
                 h e i g h t :    2 0 p x ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 f o n t - w e i g h t :    b o l d ;
                 b o r d e r :    2 p x   s o l i d   w h i t e ;
         
}

         / *   M o b i l e   R e s p o n s i v e   * /     @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )    {
                 . a i - c h a t b o t    {
                             r i g h t :    0 ;
                             b o t t o m :    0 ;
                             w i d t h :    1 0 0 % ;
                             h e i g h t :    1 0 0 % ;
                             b o r d e r - r a d i u s :    0 ;
                     
    }

                     . c h a t b o t - t r i g g e r    {
                             b o t t o m :    2 0 p x ;
                             r i g h t :    2 0 p x ;
                             w i d t h :    5 0 p x ;
                             h e i g h t :    5 0 p x ;
                             f o n t - s i z e :    1 . 2 r e m ;
                     
    }

         
}

     