@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-primary: #10b981; /* Emerald-500 */
    --color-primary-hover: #34d399; /* Emerald-400 */
    --color-dark-bg: #020617; /* Slate-950 */
    --color-card-bg: rgba(15, 23, 42, 0.6); /* Semi-transparent Slate-900 */
    --font-sans: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-dark-bg);
    color: #f8fafc;
    overflow-x: hidden;
    position: relative;
}

/* Custom premium background gradient */
.premium-bg {
    background: radial-gradient(circle at 50% 0%, #064e3b 0%, #020617 60%);
    min-height: 100vh;
}

/* Fine tech grid overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Neon glow spheres for extra depth */
.neon-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.neon-glow-1 {
    top: 15%;
    left: -100px;
    background-color: #10b981;
}

.neon-glow-2 {
    top: 55%;
    right: -100px;
    background-color: #0d9488;
    animation-delay: -6s;
}

.neon-glow-3 {
    bottom: 10%;
    left: 10%;
    background-color: #047857;
    width: 250px;
    height: 250px;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(40px) scale(1.1);
    }
}

/* Custom premium glassmorphic cards */
.glass-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 40px 0 rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
}

/* VSL Video Player styling */
.vsl-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(16, 185, 129, 0.2);
    aspect-ratio: 16/9;
}

.vsl-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.vsl-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.4);
    transition: opacity 0.5s ease;
    z-index: 10;
}

.vsl-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

/* Glassmorphism Play Button */
.vsl-play-btn {
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(16, 185, 129, 0.6);
    color: #ffffff;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vsl-play-btn:hover {
    transform: scale(1.15);
    background: rgba(16, 185, 129, 0.45);
    border-color: rgba(52, 211, 153, 0.9);
    box-shadow: 0 0 45px rgba(16, 185, 129, 0.7);
}

/* Glow button */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-glow:hover::after {
    left: 100%;
}

/* Modern inputs */
.premium-input {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.premium-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    outline: none;
    background: rgba(15, 23, 42, 0.95);
}

/* Testimonial rating stars */
.star-rating {
    color: #fbbf24; /* Amber-400 */
}

/* Order Form styling */
.order-form-container {
    position: relative;
    z-index: 10;
}
