/* ==============================================================================
   WealthProfusion LLC Multi-Transportation Design System
   Graceful Executive Light-Greyish Gradient Theme (Darker than Ash White)
   Palette: Base (#DCE3EC -> #CCD6E2 -> #BCC8D6), Cards (#E4EBF2), Borders (#B4C2D2)
   Accents: Executive Amber Gold (#D97706, #B45309), Deep Midnight Slate (#0F172A)
   ============================================================================== */

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

:root {
    --color-bg-base: #dce3ec;
    --color-bg-alt: #ccd6e2;
    --color-bg-card: #e4ebf2;
    --color-bg-card-hover: #ebf1f7;
    --color-bg-elevated: #d6e0eb;
    --color-text-main: #0f172a;
    --color-text-body: #1e293b;
    --color-text-muted: #475569;
    --color-border: #b4c2d2;
    --color-border-subtle: #cbd5e1;
    --color-gold-600: #b45309;
    --color-gold-500: #d97706;
    --color-gold-400: #f59e0b;
    --color-gold-light: #fde68a;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #dce3ec 0%, #ccd6e2 40%, #bcc8d6 100%);
    background-attachment: fixed;
    color: var(--color-text-body);
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-main);
}

/* Graceful Light-Greyish Glassmorphism Panels (Darker than Ash White) */
.glass-panel {
    background: rgba(228, 235, 242, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(180, 194, 210, 0.85);
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.05);
}

.glass-panel-light {
    background: rgba(214, 224, 235, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(180, 194, 210, 0.75);
}

.glass-capsule {
    background: rgba(228, 235, 242, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(180, 194, 210, 0.85);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-capsule:hover {
    background: #ebf1f7;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(217, 119, 6, 0.22);
}

/* Gold Gradient Text & Accents */
.text-gold-gradient {
    background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
}

.bg-gold-gradient:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.border-gold-glow {
    border-color: rgba(217, 119, 6, 0.45);
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.2);
}

/* Ken Burns Hero Effect */
.kenburns-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    transform: scale(1);
}

.kenburns-slide.active {
    opacity: 1;
    visibility: visible;
    animation: kenburnsAnimation 14s infinite alternate ease-in-out;
}

@keyframes kenburnsAnimation {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.10) translate(-0.5%, -0.5%);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #ccd6e2;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

/* Quote Tabs active state */
.quote-tab.active {
    background: #d97706;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

/* Pulse Animation */
.dot-pulse {
    position: relative;
}
.dot-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: inherit;
    animation: pulseGlow 2s infinite ease-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
