/* SantaCalls.ai - Festive Landing Page Styles */

/* CSS Variables */
:root {
    --color-red: #C41E3A;
    --color-red-dark: #8B0000;
    --color-green: #228B22;
    --color-green-dark: #006400;
    --color-gold: #FFD700;
    --color-cream: #FFFEF0;
    --color-white: #FFFFFF;
    --color-dark: #1a1a2e;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;

    --font-display: 'Mountains of Christmas', cursive;
    --font-body: 'Open Sans', sans-serif;

    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-cream);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--color-green-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-tertiary {
    background: var(--color-gold);
    color: var(--color-dark);
}

.btn-tertiary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* Header */
.header {
    background: var(--color-red);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-white);
    font-weight: 700;
}

.naughty-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.naughty-tagline a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
}

.naughty-tagline a:hover {
    text-decoration: underline;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin: 20px 0;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero with Chat Layout */
.hero-with-chat {
    min-height: 600px; /* Fixed height to prevent layout shift during calls */
    padding: 100px 0 60px;
}

.hero-chat-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.hero-chat-content {
    flex: 1;
    max-width: 450px;
    text-align: left;
}

.hero-chat-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero-chat-content .hero-subtitle {
    font-size: 1.3rem;
    margin: 10px 0;
}

.hero-chat-content .hero-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.hero-form .form-group {
    margin-bottom: 15px;
}

.hero-form label {
    color: var(--color-white);
    font-size: 0.9rem;
}

.hero-form input[type="text"],
.hero-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1rem;
}

.hero-form .consent-group label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-form .consent-group span {
    color: rgba(255, 255, 255, 0.9);
}

.hero-alt-options {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.hero-alt-options a {
    color: var(--color-gold);
    text-decoration: none;
}

.hero-alt-options a:hover {
    text-decoration: underline;
}

.hero-snowglobe {
    flex: 0 0 auto;
    display: block;
    min-width: 320px;
}

.hero-snowglobe .snowglobe {
    display: block;
}

/* Mobile: Stack vertically */
@media (max-width: 900px) {
    .hero-chat-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .hero-chat-content {
        text-align: center;
        max-width: 100%;
        align-items: center;
    }

    .hero-chat-content h1 {
        font-size: 2.2rem;
    }

    .hero-form {
        margin: 0 auto;
        max-width: 350px;
    }

    .hero-snowglobe .snowglobe {
        transform: scale(0.8);
    }
}

/* Snowflakes Animation - Page Background */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    transition: opacity 1s ease-out;
}

/* Hide page snowflakes during active call */
.snowflakes.hidden {
    opacity: 0;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: fall linear infinite, sway ease-in-out infinite;
}

/* 12 snowflakes with varied sizes, positions, and timings */
.snowflake:nth-child(1)  { left: 5%;  font-size: 1.2rem; animation: fall 12s linear infinite, sway 3s ease-in-out infinite; animation-delay: 0s; }
.snowflake:nth-child(2)  { left: 15%; font-size: 0.8rem; animation: fall 18s linear infinite, sway 4s ease-in-out infinite; animation-delay: -2s; }
.snowflake:nth-child(3)  { left: 25%; font-size: 1.5rem; animation: fall 10s linear infinite, sway 2.5s ease-in-out infinite; animation-delay: -4s; }
.snowflake:nth-child(4)  { left: 35%; font-size: 0.6rem; animation: fall 20s linear infinite, sway 5s ease-in-out infinite; animation-delay: -1s; }
.snowflake:nth-child(5)  { left: 45%; font-size: 1.8rem; animation: fall 14s linear infinite, sway 3.5s ease-in-out infinite; animation-delay: -5s; }
.snowflake:nth-child(6)  { left: 55%; font-size: 1rem;   animation: fall 16s linear infinite, sway 2.8s ease-in-out infinite; animation-delay: -3s; }
.snowflake:nth-child(7)  { left: 65%; font-size: 0.7rem; animation: fall 22s linear infinite, sway 4.5s ease-in-out infinite; animation-delay: -6s; }
.snowflake:nth-child(8)  { left: 75%; font-size: 1.3rem; animation: fall 11s linear infinite, sway 3.2s ease-in-out infinite; animation-delay: -2.5s; }
.snowflake:nth-child(9)  { left: 82%; font-size: 0.9rem; animation: fall 15s linear infinite, sway 2.6s ease-in-out infinite; animation-delay: -4.5s; }
.snowflake:nth-child(10) { left: 88%; font-size: 1.6rem; animation: fall 13s linear infinite, sway 3.8s ease-in-out infinite; animation-delay: -1.5s; }
.snowflake:nth-child(11) { left: 92%; font-size: 0.5rem; animation: fall 24s linear infinite, sway 5.5s ease-in-out infinite; animation-delay: -7s; }
.snowflake:nth-child(12) { left: 97%; font-size: 1.1rem; animation: fall 17s linear infinite, sway 4.2s ease-in-out infinite; animation-delay: -3.5s; }

@keyframes fall {
    0% {
        top: -10%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 110%;
        opacity: 0;
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(20px) rotate(10deg);
    }
    50% {
        transform: translateX(-5px) rotate(-5deg);
    }
    75% {
        transform: translateX(-20px) rotate(-10deg);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* How It Works */
.how-it-works {
    background: var(--color-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--font-display);
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--color-gray);
}

/* Features */
.features {
    background: var(--color-light-gray);
}

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

.feature {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

.feature p {
    color: var(--color-gray);
}

/* Powered By (subtle attribution) */
.powered-by {
    background: var(--color-cream);
    text-align: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.powered-by p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

.powered-by a {
    color: var(--color-green-dark);
    text-decoration: none;
    font-weight: 600;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* CTA Form Section */
.cta-form {
    background: var(--color-red);
    color: var(--color-white);
}

.cta-form h2 {
    color: var(--color-white);
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.santa-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: var(--font-body);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 6px;
}

.consent-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--color-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-red);
    text-decoration: underline;
}

.santa-form .btn {
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 18px;
}

.santa-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 1rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Alternative CTA Form (green) */
.cta-form-alt {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
}

.cta-form-alt .santa-form .btn {
    background: var(--color-green);
}

.cta-form-alt .santa-form .btn:hover {
    background: var(--color-green-dark);
}

/* Santa Phone Reveal */
.santa-phone-reveal {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.phone-reveal-content {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.phone-reveal-content h3 {
    color: var(--color-red);
    font-size: 2rem;
    margin-bottom: 20px;
}

.phone-reveal-content p {
    color: var(--color-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.santa-phone-number {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    padding: 30px;
    border-radius: var(--radius);
    margin: 25px 0;
}

.santa-phone-number .phone-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.santa-phone-number .phone-link {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-decoration: none;
    display: block;
}

.santa-phone-number .phone-link:hover {
    color: var(--color-gold);
}

.phone-hint {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-top: 15px;
}

/* About Section */
.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-story, .about-free {
    padding: 20px;
}

.about h3 {
    color: var(--color-red);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about p {
    color: var(--color-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about a {
    color: var(--color-green-dark);
    text-decoration: none;
    font-weight: 600;
}

.about a:hover {
    text-decoration: underline;
}

.about strong {
    color: var(--color-red);
}

/* Footer elves attribution */
.footer-elves {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-elves a {
    color: var(--color-gold);
}

/* Safety */
.safety {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    color: var(--color-white);
}

.safety h2 {
    color: var(--color-white);
}

.safety .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.safety-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
}

.safety-item h4 {
    color: var(--color-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.safety-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.badge {
    background: var(--color-white);
    color: var(--color-green-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: var(--color-red);
    text-align: center;
    color: var(--color-white);
}

.cta h2 {
    color: var(--color-white);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta .btn-primary {
    background: var(--color-white);
    color: var(--color-red);
}

.cta .btn-primary:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-phone {
    font-size: 1.5rem;
    margin: 20px 0;
    font-weight: 700;
}

.phone-link {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 1.8rem;
    display: block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--color-white);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta .phone-link {
    color: var(--color-white);
    background: var(--color-green);
    padding: 15px 30px;
    border-radius: var(--radius);
    display: inline-block;
}

.cta .phone-link:hover {
    background: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact p,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--color-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-tech {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Show hamburger, hide nav by default */
    .nav-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-red-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .header .container {
        position: relative;
    }

    .naughty-tagline {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

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

    .hero-chat-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .santa-form {
        padding: 25px;
    }

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

    .about h3 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

    .btn {
        padding: 10px 25px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .santa-form {
        padding: 20px;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* ============================================
   SNOWGLOBE WEB VOICE AGENT
   ============================================ */

.web-call-section {
    background: linear-gradient(180deg, #1a472a 0%, #0d2818 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.web-call-section h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.web-call-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Desktop layout: Form left, Snowglobe right */
.web-call-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.web-call-form-container {
    flex: 1;
    max-width: 400px;
}

/* Snowglobe Container */
.snowglobe-container {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .web-call-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .web-call-form-container {
        width: 100%;
    }
}

.snowglobe {
    position: relative;
    width: 320px;
}

/* Main snowglobe image */
.snowglobe-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

/* Snowflakes overlay - positioned over the dome area */
.snowglobe-flakes {
    position: absolute;
    top: 2%;
    left: 8%;
    width: 84%;
    height: 62%;
    overflow: hidden;
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
}

.snowglobe-flakes span {
    position: absolute;
    color: #ffffff;
    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.9),
        0 0 8px rgba(200, 220, 255, 0.6);
    animation: snowShake 8s ease-out infinite;
}

/* Realistic snowglobe shake animation - swirl then settle */
@keyframes snowShake {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.9;
    }
    /* Initial shake - chaotic swirl */
    5% { transform: translate(30px, -20px) rotate(45deg); }
    10% { transform: translate(-25px, 15px) rotate(-30deg); }
    15% { transform: translate(20px, 30px) rotate(60deg); }
    20% { transform: translate(-30px, -10px) rotate(-45deg); }
    /* Settling phase - circular drift */
    30% { transform: translate(15px, 40px) rotate(30deg); }
    40% { transform: translate(-10px, 55px) rotate(-20deg); }
    50% { transform: translate(8px, 70px) rotate(15deg); }
    /* Gentle fall to bottom */
    65% { transform: translate(-5px, 82px) rotate(-10deg); opacity: 0.7; }
    80% { transform: translate(3px, 90px) rotate(5deg); opacity: 0.5; }
    95% { transform: translate(0, 95px) rotate(0deg); opacity: 0.2; }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 0.9; }
}

/* 60 snowflakes with varied positions, sizes, and staggered animation timing */
.snowglobe-flakes span:nth-child(1) { left: 10%; top: 8%; font-size: 0.9rem; opacity: 0.9; animation-delay: 0s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(2) { left: 25%; top: 5%; font-size: 0.5rem; opacity: 0.7; animation-delay: -0.5s; animation-duration: 9s; }
.snowglobe-flakes span:nth-child(3) { left: 40%; top: 12%; font-size: 1.1rem; opacity: 0.95; animation-delay: -1s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(4) { left: 55%; top: 6%; font-size: 0.6rem; opacity: 0.65; animation-delay: -1.5s; animation-duration: 10s; }
.snowglobe-flakes span:nth-child(5) { left: 70%; top: 10%; font-size: 0.8rem; opacity: 0.8; animation-delay: -2s; animation-duration: 7.5s; }
.snowglobe-flakes span:nth-child(6) { left: 85%; top: 8%; font-size: 0.45rem; opacity: 0.6; animation-delay: -2.5s; animation-duration: 11s; }
.snowglobe-flakes span:nth-child(7) { left: 15%; top: 18%; font-size: 0.7rem; opacity: 0.75; animation-delay: -3s; animation-duration: 8.5s; }
.snowglobe-flakes span:nth-child(8) { left: 30%; top: 15%; font-size: 1rem; opacity: 0.85; animation-delay: -3.5s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(9) { left: 45%; top: 20%; font-size: 0.55rem; opacity: 0.6; animation-delay: -4s; animation-duration: 10.5s; }
.snowglobe-flakes span:nth-child(10) { left: 60%; top: 16%; font-size: 0.85rem; opacity: 0.8; animation-delay: -4.5s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(11) { left: 75%; top: 22%; font-size: 0.5rem; opacity: 0.55; animation-delay: -5s; animation-duration: 11.5s; }
.snowglobe-flakes span:nth-child(12) { left: 90%; top: 18%; font-size: 0.65rem; opacity: 0.65; animation-delay: -5.5s; animation-duration: 9s; }
.snowglobe-flakes span:nth-child(13) { left: 8%; top: 28%; font-size: 0.95rem; opacity: 0.9; animation-delay: -0.3s; animation-duration: 7.5s; }
.snowglobe-flakes span:nth-child(14) { left: 22%; top: 25%; font-size: 0.4rem; opacity: 0.5; animation-delay: -0.8s; animation-duration: 12s; }
.snowglobe-flakes span:nth-child(15) { left: 38%; top: 30%; font-size: 0.75rem; opacity: 0.7; animation-delay: -1.3s; animation-duration: 8.5s; }
.snowglobe-flakes span:nth-child(16) { left: 52%; top: 26%; font-size: 1.05rem; opacity: 0.88; animation-delay: -1.8s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(17) { left: 68%; top: 32%; font-size: 0.5rem; opacity: 0.55; animation-delay: -2.3s; animation-duration: 10s; }
.snowglobe-flakes span:nth-child(18) { left: 82%; top: 28%; font-size: 0.8rem; opacity: 0.75; animation-delay: -2.8s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(19) { left: 12%; top: 38%; font-size: 0.6rem; opacity: 0.6; animation-delay: -3.3s; animation-duration: 9.5s; }
.snowglobe-flakes span:nth-child(20) { left: 28%; top: 35%; font-size: 0.9rem; opacity: 0.82; animation-delay: -3.8s; animation-duration: 7.5s; }
.snowglobe-flakes span:nth-child(21) { left: 42%; top: 40%; font-size: 0.45rem; opacity: 0.5; animation-delay: -4.3s; animation-duration: 11s; }
.snowglobe-flakes span:nth-child(22) { left: 58%; top: 36%; font-size: 1rem; opacity: 0.9; animation-delay: -4.8s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(23) { left: 72%; top: 42%; font-size: 0.55rem; opacity: 0.58; animation-delay: -5.3s; animation-duration: 10.5s; }
.snowglobe-flakes span:nth-child(24) { left: 88%; top: 38%; font-size: 0.7rem; opacity: 0.68; animation-delay: -5.8s; animation-duration: 8.5s; }
.snowglobe-flakes span:nth-child(25) { left: 5%; top: 48%; font-size: 0.85rem; opacity: 0.78; animation-delay: -0.2s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(26) { left: 18%; top: 45%; font-size: 0.5rem; opacity: 0.52; animation-delay: -0.7s; animation-duration: 11.5s; }
.snowglobe-flakes span:nth-child(27) { left: 35%; top: 50%; font-size: 1.1rem; opacity: 0.92; animation-delay: -1.2s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(28) { left: 48%; top: 46%; font-size: 0.6rem; opacity: 0.62; animation-delay: -1.7s; animation-duration: 9.5s; }
.snowglobe-flakes span:nth-child(29) { left: 65%; top: 52%; font-size: 0.8rem; opacity: 0.75; animation-delay: -2.2s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(30) { left: 78%; top: 48%; font-size: 0.4rem; opacity: 0.48; animation-delay: -2.7s; animation-duration: 12s; }
.snowglobe-flakes span:nth-child(31) { left: 92%; top: 50%; font-size: 0.65rem; opacity: 0.6; animation-delay: -3.2s; animation-duration: 9s; }
.snowglobe-flakes span:nth-child(32) { left: 10%; top: 58%; font-size: 0.95rem; opacity: 0.85; animation-delay: -3.7s; animation-duration: 7.5s; }
.snowglobe-flakes span:nth-child(33) { left: 25%; top: 55%; font-size: 0.5rem; opacity: 0.55; animation-delay: -4.2s; animation-duration: 10.5s; }
.snowglobe-flakes span:nth-child(34) { left: 40%; top: 60%; font-size: 0.75rem; opacity: 0.7; animation-delay: -4.7s; animation-duration: 8.5s; }
.snowglobe-flakes span:nth-child(35) { left: 55%; top: 56%; font-size: 1rem; opacity: 0.88; animation-delay: -5.2s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(36) { left: 70%; top: 62%; font-size: 0.55rem; opacity: 0.58; animation-delay: -5.7s; animation-duration: 11s; }
.snowglobe-flakes span:nth-child(37) { left: 85%; top: 58%; font-size: 0.7rem; opacity: 0.65; animation-delay: -0.4s; animation-duration: 9s; }
.snowglobe-flakes span:nth-child(38) { left: 15%; top: 68%; font-size: 0.85rem; opacity: 0.8; animation-delay: -0.9s; animation-duration: 7.5s; }
.snowglobe-flakes span:nth-child(39) { left: 32%; top: 65%; font-size: 0.45rem; opacity: 0.5; animation-delay: -1.4s; animation-duration: 11.5s; }
.snowglobe-flakes span:nth-child(40) { left: 48%; top: 70%; font-size: 0.9rem; opacity: 0.85; animation-delay: -1.9s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(41) { left: 62%; top: 66%; font-size: 0.5rem; opacity: 0.52; animation-delay: -2.4s; animation-duration: 10s; }
.snowglobe-flakes span:nth-child(42) { left: 78%; top: 72%; font-size: 0.75rem; opacity: 0.7; animation-delay: -2.9s; animation-duration: 8.5s; }
.snowglobe-flakes span:nth-child(43) { left: 8%; top: 78%; font-size: 1rem; opacity: 0.9; animation-delay: -3.4s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(44) { left: 22%; top: 75%; font-size: 0.55rem; opacity: 0.58; animation-delay: -3.9s; animation-duration: 9.5s; }
.snowglobe-flakes span:nth-child(45) { left: 38%; top: 80%; font-size: 0.8rem; opacity: 0.75; animation-delay: -4.4s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(46) { left: 52%; top: 76%; font-size: 0.4rem; opacity: 0.45; animation-delay: -4.9s; animation-duration: 12s; }
.snowglobe-flakes span:nth-child(47) { left: 68%; top: 82%; font-size: 0.65rem; opacity: 0.62; animation-delay: -5.4s; animation-duration: 9s; }
.snowglobe-flakes span:nth-child(48) { left: 82%; top: 78%; font-size: 0.9rem; opacity: 0.82; animation-delay: -5.9s; animation-duration: 7.5s; }
.snowglobe-flakes span:nth-child(49) { left: 18%; top: 85%; font-size: 0.5rem; opacity: 0.5; animation-delay: -0.6s; animation-duration: 10.5s; }
.snowglobe-flakes span:nth-child(50) { left: 35%; top: 88%; font-size: 0.7rem; opacity: 0.68; animation-delay: -1.1s; animation-duration: 8.5s; }
.snowglobe-flakes span:nth-child(51) { left: 50%; top: 84%; font-size: 0.95rem; opacity: 0.88; animation-delay: -1.6s; animation-duration: 7s; }
.snowglobe-flakes span:nth-child(52) { left: 65%; top: 90%; font-size: 0.45rem; opacity: 0.48; animation-delay: -2.1s; animation-duration: 11s; }
.snowglobe-flakes span:nth-child(53) { left: 80%; top: 86%; font-size: 0.6rem; opacity: 0.6; animation-delay: -2.6s; animation-duration: 9.5s; }
.snowglobe-flakes span:nth-child(54) { left: 5%; top: 92%; font-size: 0.8rem; opacity: 0.75; animation-delay: -3.1s; animation-duration: 8s; }
.snowglobe-flakes span:nth-child(55) { left: 28%; top: 95%; font-size: 0.5rem; opacity: 0.52; animation-delay: -3.6s; animation-duration: 10s; }
.snowglobe-flakes span:nth-child(56) { left: 45%; top: 92%; font-size: 0.65rem; opacity: 0.62; animation-delay: -4.1s; animation-duration: 9s; }
.snowglobe-flakes span:nth-child(57) { left: 58%; top: 96%; font-size: 0.85rem; opacity: 0.8; animation-delay: -4.6s; animation-duration: 7.5s; }
.snowglobe-flakes span:nth-child(58) { left: 72%; top: 94%; font-size: 0.4rem; opacity: 0.45; animation-delay: -5.1s; animation-duration: 11.5s; }
.snowglobe-flakes span:nth-child(59) { left: 88%; top: 92%; font-size: 0.55rem; opacity: 0.55; animation-delay: -5.6s; animation-duration: 10s; }
.snowglobe-flakes span:nth-child(60) { left: 95%; top: 88%; font-size: 0.7rem; opacity: 0.65; animation-delay: -6s; animation-duration: 8.5s; }

/* Active state - very slow gentle floating when waiting for user */
.snowglobe.active .snowglobe-flakes span {
    animation: snowGentleFloat 12s linear infinite;
}

.snowglobe.active .snowglobe-flakes span:nth-child(1) { animation-delay: 0s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(2) { animation-delay: -2s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(4) { animation-delay: -1s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(5) { animation-delay: -3s; animation-duration: 17s; }
.snowglobe.active .snowglobe-flakes span:nth-child(6) { animation-delay: -5s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(7) { animation-delay: -2.5s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(8) { animation-delay: -4.5s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(9) { animation-delay: -1.5s; animation-duration: 18s; }
.snowglobe.active .snowglobe-flakes span:nth-child(10) { animation-delay: -3.5s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(11) { animation-delay: -0.5s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(12) { animation-delay: -5.5s; animation-duration: 17s; }
.snowglobe.active .snowglobe-flakes span:nth-child(13) { animation-delay: -2.2s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(14) { animation-delay: -4.2s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(15) { animation-delay: -1.2s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(16) { animation-delay: -3.2s; animation-duration: 18s; }
.snowglobe.active .snowglobe-flakes span:nth-child(17) { animation-delay: -5.2s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(18) { animation-delay: -0.8s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(19) { animation-delay: -2.8s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(20) { animation-delay: -4.8s; animation-duration: 17s; }
.snowglobe.active .snowglobe-flakes span:nth-child(21) { animation-delay: -1.8s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(22) { animation-delay: -3.8s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(23) { animation-delay: -0.3s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(24) { animation-delay: -5.8s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(25) { animation-delay: -1.3s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(26) { animation-delay: -3.3s; animation-duration: 17s; }
.snowglobe.active .snowglobe-flakes span:nth-child(27) { animation-delay: -5.3s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(28) { animation-delay: -0.6s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(29) { animation-delay: -2.6s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(30) { animation-delay: -4.6s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(31) { animation-delay: -1.6s; animation-duration: 18s; }
.snowglobe.active .snowglobe-flakes span:nth-child(32) { animation-delay: -3.6s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(33) { animation-delay: -0.1s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(34) { animation-delay: -2.1s; animation-duration: 17s; }
.snowglobe.active .snowglobe-flakes span:nth-child(35) { animation-delay: -4.1s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(36) { animation-delay: -6.1s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(37) { animation-delay: -0.4s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(38) { animation-delay: -1.4s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(39) { animation-delay: -2.4s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(40) { animation-delay: -3.4s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(41) { animation-delay: -4.4s; animation-duration: 17s; }
.snowglobe.active .snowglobe-flakes span:nth-child(42) { animation-delay: -5.4s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(43) { animation-delay: -0.7s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(44) { animation-delay: -1.7s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(45) { animation-delay: -2.7s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(46) { animation-delay: -3.7s; animation-duration: 18s; }
.snowglobe.active .snowglobe-flakes span:nth-child(47) { animation-delay: -4.7s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(48) { animation-delay: -5.7s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(49) { animation-delay: -0.9s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(50) { animation-delay: -1.9s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(51) { animation-delay: -2.9s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(52) { animation-delay: -3.9s; animation-duration: 17s; }
.snowglobe.active .snowglobe-flakes span:nth-child(53) { animation-delay: -4.9s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(54) { animation-delay: -5.9s; animation-duration: 14s; }
.snowglobe.active .snowglobe-flakes span:nth-child(55) { animation-delay: -0.2s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(56) { animation-delay: -1.2s; animation-duration: 15s; }
.snowglobe.active .snowglobe-flakes span:nth-child(57) { animation-delay: -2.2s; animation-duration: 13s; }
.snowglobe.active .snowglobe-flakes span:nth-child(58) { animation-delay: -3.2s; animation-duration: 18s; }
.snowglobe.active .snowglobe-flakes span:nth-child(59) { animation-delay: -4.2s; animation-duration: 16s; }
.snowglobe.active .snowglobe-flakes span:nth-child(60) { animation-delay: -5.2s; animation-duration: 14s; }

/* Voice active - faster swirling when Santa is talking */
.snowglobe.voice-active .snowglobe-flakes span {
    animation: snowActiveSwirl 6s linear infinite;
}

.snowglobe.voice-active .snowglobe-flakes span:nth-child(1) { animation-delay: 0s; animation-duration: 5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(2) { animation-delay: -0.5s; animation-duration: 6s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(3) { animation-delay: -1s; animation-duration: 5.5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(4) { animation-delay: -0.3s; animation-duration: 6.5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(5) { animation-delay: -0.8s; animation-duration: 5.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(6) { animation-delay: -1.3s; animation-duration: 6.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(7) { animation-delay: -0.2s; animation-duration: 5.8s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(8) { animation-delay: -0.7s; animation-duration: 5.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(9) { animation-delay: -1.2s; animation-duration: 6.8s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(10) { animation-delay: -0.4s; animation-duration: 5.6s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(11) { animation-delay: -0.9s; animation-duration: 6.4s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(12) { animation-delay: -1.4s; animation-duration: 5.4s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(13) { animation-delay: -0.15s; animation-duration: 6.1s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(14) { animation-delay: -0.65s; animation-duration: 5.7s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(15) { animation-delay: -1.15s; animation-duration: 6.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(16) { animation-delay: -0.35s; animation-duration: 5.1s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(17) { animation-delay: -0.85s; animation-duration: 6.6s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(18) { animation-delay: -1.35s; animation-duration: 5.9s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(19) { animation-delay: -0.25s; animation-duration: 5.4s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(20) { animation-delay: -0.75s; animation-duration: 6.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(21) { animation-delay: -1.25s; animation-duration: 5.7s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(22) { animation-delay: -0.45s; animation-duration: 6.5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(23) { animation-delay: -0.95s; animation-duration: 5.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(24) { animation-delay: -1.45s; animation-duration: 6.1s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(25) { animation-delay: -0.1s; animation-duration: 5.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(26) { animation-delay: -0.55s; animation-duration: 6.4s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(27) { animation-delay: -1.05s; animation-duration: 5.6s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(28) { animation-delay: -0.3s; animation-duration: 6.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(29) { animation-delay: -0.8s; animation-duration: 5.8s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(30) { animation-delay: -1.3s; animation-duration: 5.4s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(31) { animation-delay: -0.2s; animation-duration: 6.6s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(32) { animation-delay: -0.7s; animation-duration: 5.5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(33) { animation-delay: -1.2s; animation-duration: 5.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(34) { animation-delay: -0.4s; animation-duration: 6.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(35) { animation-delay: -0.9s; animation-duration: 6.7s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(36) { animation-delay: -1.4s; animation-duration: 5.9s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(37) { animation-delay: -0.15s; animation-duration: 5.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(38) { animation-delay: -0.35s; animation-duration: 6.1s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(39) { animation-delay: -0.55s; animation-duration: 5.7s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(40) { animation-delay: -0.75s; animation-duration: 6.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(41) { animation-delay: -0.95s; animation-duration: 5.5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(42) { animation-delay: -1.15s; animation-duration: 6.5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(43) { animation-delay: -0.22s; animation-duration: 5.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(44) { animation-delay: -0.42s; animation-duration: 6.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(45) { animation-delay: -0.62s; animation-duration: 5.8s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(46) { animation-delay: -0.82s; animation-duration: 6.6s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(47) { animation-delay: -1.02s; animation-duration: 5.4s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(48) { animation-delay: -1.22s; animation-duration: 5.1s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(49) { animation-delay: -0.28s; animation-duration: 6.4s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(50) { animation-delay: -0.48s; animation-duration: 5.6s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(51) { animation-delay: -0.68s; animation-duration: 5.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(52) { animation-delay: -0.88s; animation-duration: 6.7s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(53) { animation-delay: -1.08s; animation-duration: 5.9s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(54) { animation-delay: -1.28s; animation-duration: 5.5s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(55) { animation-delay: -0.18s; animation-duration: 6.1s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(56) { animation-delay: -0.38s; animation-duration: 5.7s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(57) { animation-delay: -0.58s; animation-duration: 5.2s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(58) { animation-delay: -0.78s; animation-duration: 6.8s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(59) { animation-delay: -0.98s; animation-duration: 6.3s; }
.snowglobe.voice-active .snowglobe-flakes span:nth-child(60) { animation-delay: -1.18s; animation-duration: 5.8s; }

/* Subtle glow effect when active */
.snowglobe.active .snowglobe-image {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
}

.snowglobe.voice-active .snowglobe-image {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
}

/* Gentle floating animation - very slow, peaceful drift */
@keyframes snowGentleFloat {
    0% { transform: translate(0, 0); }
    25% { transform: translate(8px, 15px); }
    50% { transform: translate(-5px, 30px); }
    75% { transform: translate(10px, 45px); }
    100% { transform: translate(0, 60px); opacity: 0.3; }
}

/* Active swirling animation - faster circular motion when Santa speaks */
@keyframes snowActiveSwirl {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, 20px) rotate(90deg); }
    50% { transform: translate(-10px, 45px) rotate(180deg); }
    75% { transform: translate(12px, 70px) rotate(270deg); }
    100% { transform: translate(0, 95px) rotate(360deg); opacity: 0.2; }
}

/* Base is part of the snowglobe.png image - no separate styling needed */

/* Voice indicator (pulsing when active) */
.voice-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.voice-indicator.active {
    opacity: 1;
}

.voice-bar {
    width: 6px;
    height: 20px;
    background: var(--color-gold);
    border-radius: 3px;
    animation: voiceWave 0.5s ease-in-out infinite alternate;
}

.voice-bar:nth-child(1) { animation-delay: 0s; }
.voice-bar:nth-child(2) { animation-delay: 0.1s; }
.voice-bar:nth-child(3) { animation-delay: 0.2s; }
.voice-bar:nth-child(4) { animation-delay: 0.1s; }
.voice-bar:nth-child(5) { animation-delay: 0s; }

@keyframes voiceWave {
    from { height: 8px; }
    to { height: 25px; }
}

/* Web call form */
.web-call-form {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.web-call-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.web-call-form label {
    display: block;
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 600;
}

.web-call-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.web-call-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.web-call-form .consent-group {
    margin-top: 20px;
}

.web-call-form .consent-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.9rem;
}

.web-call-form .consent-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

/* Call status display */
.call-status {
    display: none;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    color: var(--color-white);
}

.call-status.active {
    display: block;
}

.call-status h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.call-status p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.call-timer {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.btn-end-call {
    background: #dc3545;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-end-call:hover {
    background: #c82333;
}

/* Microphone permission message */
.mic-permission {
    display: none;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    color: var(--color-dark);
    text-align: center;
}

.mic-permission.active {
    display: block;
}

.mic-permission h3 {
    color: var(--color-red);
    margin-bottom: 15px;
}

.mic-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Web call benefits */
.web-call-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.web-benefit {
    text-align: center;
    color: var(--color-white);
    max-width: 200px;
}

.web-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.web-benefit h4 {
    color: var(--color-gold);
    margin-bottom: 5px;
    font-size: 1rem;
}

.web-benefit p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .snowglobe {
        width: 260px;
    }

    .web-call-benefits {
        gap: 20px;
    }
}
