/* Global Fonts */
.font-inter { font-family: 'Inter', sans-serif; }
.font-playfair { font-family: 'Playfair Display', serif; }

/* Modern Gradients */
.bg-gradient-modern { background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%); } /* Berry Red Gradient */
.bg-gradient-warm { background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%); } /* Fire to Gold */
.bg-gradient-soft { background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%); } /* Snow to Ice */
.bg-gradient-ice { background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%); border-top: 1px solid #bfdbfe; border-bottom: 1px solid #bfdbfe; } /* Frosty Blue */

/* Component: Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%); /* bg-gradient-warm */
    color: white;
    padding: 0.5rem 1rem; /* px-4 py-2 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    box-shadow: 0 8px 32px rgba(234, 88, 12, 0.25); /* Fire glow */
}

/* Component: Glass Card */
.glass-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Component: Buttons */
.btn-primary {
    background-color: #264653;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition-property: all;
    transition-duration: 300ms;
    width: 100%;
}
@media (min-width: 640px) {
    .btn-primary { width: auto; }
}
.btn-primary:hover {
    background-color: rgba(38, 70, 83, 0.9);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-hover {
    transition: all 0.3s ease;
}
.btn-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Scroll Animations */
.scroll-animate,
.scroll-animate-scale {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate.visible,
.scroll-animate-scale.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-scale { transform: scale(0.9) translateY(20px); }
.scroll-animate-scale.visible { transform: scale(1) translateY(0); }

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate-left.visible { opacity: 1; transform: translateX(0); }

.scroll-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate-right.visible { opacity: 1; transform: translateX(0); }

.scroll-animate-fade {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate-fade.visible { opacity: 1; }

/* Stagger Animations */
.stagger-animate > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-animate.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animate.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-animate.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-animate.visible > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-animate.visible > * { opacity: 1; transform: translateY(0); }

/* Decorative Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 6s ease-in-out infinite; animation-delay: 3s; }

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

.snowflake {
    color: #fff;
    font-size: 1.2rem;
    font-family: Arial;
    text-shadow: 0 0 1px #000;
    position: absolute;
    top: -10%;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
}

.snowflake:nth-of-type(0) { left: 1%; animation-delay: 0s, 0s; }
.snowflake:nth-of-type(1) { left: 10%; animation-delay: 1s, 1s; }
.snowflake:nth-of-type(2) { left: 20%; animation-delay: 6s, 0.5s; }
.snowflake:nth-of-type(3) { left: 30%; animation-delay: 4s, 2s; }
.snowflake:nth-of-type(4) { left: 40%; animation-delay: 2s, 2s; }
.snowflake:nth-of-type(5) { left: 50%; animation-delay: 8s, 3s; }
.snowflake:nth-of-type(6) { left: 60%; animation-delay: 6s, 2s; }
.snowflake:nth-of-type(7) { left: 70%; animation-delay: 2.5s, 1s; }
.snowflake:nth-of-type(8) { left: 80%; animation-delay: 1s, 0s; }
.snowflake:nth-of-type(9) { left: 90%; animation-delay: 3s, 1.5s; }

@keyframes snowflakes-fall {
    0% { top: -10%; }
    100% { top: 100%; }
}

@keyframes snowflakes-shake {
    0% { transform: translateX(0px); }
    50% { transform: translateX(80px); }
    100% { transform: translateX(0px); }
}

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* Utilities */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Accessibility & Mobile */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate, .scroll-animate-left, .scroll-animate-right, .scroll-animate-scale, .stagger-animate > * {
        transition: none; opacity: 1; transform: none;
    }
}
@media (max-width: 768px) {
    button, a { min-height: 44px; }
    .rotating-review-chip { transition: opacity 0.3s ease-in-out; }
}

