/* ==========================================================================
   Luma Creative - Soft Classic Modern Stylesheet (Light Theme)
   Framework: Bootstrap 5 Customization
   ========================================================================== */

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

:root {
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.98);
    --border-glass: rgba(226, 232, 240, 0.8);
    --border-glow: rgba(99, 102, 241, 0.3);
    
    --primary-indigo: #4f46e5;
    --primary-cyan: #0ea5e9;
    --primary-purple: #8b5cf6;
    --primary-slate: #1e293b;

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-subtle: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- Global Reset & Soft Classic Background --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.text-muted {
    color: var(--text-muted) !important;
}

.fs-7 {
    font-size: 0.825rem;
}

.tracking-wide {
    letter-spacing: 1px;
}

.tracking-wider {
    letter-spacing: 2px;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Soft Ambient Glowing Orbs */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
    animation: floatGlow 16s ease-in-out infinite alternate;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(255,255,255,0) 70%);
}

.glow-2 {
    bottom: -15%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(255,255,255,0) 70%);
    animation-delay: -8s;
}

.glow-3 {
    top: 40%;
    left: 35%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.35;
    animation-duration: 22s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(4%, 8%) scale(1.08);
    }
    100% {
        transform: translate(-4%, -4%) scale(0.96);
    }
}

/* --- Layout Wrappers --- */
.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, #0f172a 0%, #334155 50%, var(--primary-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-accent {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.825rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-indigo);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(79, 70, 229, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

/* Glassmorphism Soft Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.06),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(203, 213, 225, 1);
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
}

/* Brand Logo */
.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.08));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.06) rotate(2deg);
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.form-control-custom {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    border-radius: 50px;
    padding: 16px 24px;
    padding-right: 170px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: #ffffff;
    border-color: var(--primary-indigo);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12), 0 4px 12px rgba(15, 23, 42, 0.05);
    color: #0f172a;
    outline: none;
}

.form-control-custom::placeholder {
    color: #94a3b8;
}

.btn-gradient {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-cyan) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 50px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
    cursor: pointer;
}

.btn-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.38);
    background: linear-gradient(135deg, #4338ca 0%, #0284c7 100%);
    color: #ffffff;
}

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

.btn-gradient:hover i {
    transform: translateX(4px);
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 24px 20px;
    height: 100%;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.07);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-indigo);
    margin-bottom: 16px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .newsletter-form {
        max-width: 100%;
    }
    
    .form-control-custom {
        padding-right: 20px;
        border-radius: 16px;
        margin-bottom: 12px;
    }
    
    .btn-gradient {
        position: static;
        width: 100%;
        height: 52px;
        justify-content: center;
        border-radius: 16px;
    }
}
